Heim >Backend-Entwicklung >PHP-Tutorial >php根据表结构自动生成类属性

php根据表结构自动生成类属性

WBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWB
WBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOriginal
2016-07-25 08:49:24997Durchsuche
  1. $schema =$_GET['s'];
  2. $table = $_GET['t'];
  3. $conn = new PDO('mysql:host=localhost;dbname=information_schema', 'root', '', array(PDO::MYSQL_ATTR_INIT_COMMAND => 'SET NAMES \'UTF8\''));
  4. $rs = $conn->query("SELECT column_name,column_type,column_comment,data_type
  5. FROM information_schema.`COLUMNS` WHERE `TABLE_NAME` LIKE '$table' and `TABLE_SCHEMA` like '$schema'");
  6. $output = '';
  7. foreach ($rs as $r) {
  8. $r['column_name'] = $r['column_name'];
  9. // 下划线转驼峰
  10. // $r['column_name'] = lcfirst(implode('', array_map('ucfirst', explode('_', $r['column_name']))));
  11. $output .=\n
  12. /**
  13. * {$r['column_comment']}
  14. * @var {$r['data_type']} {$r['column_type']}
  15. */
  16. public \${$r['column_name']}; \n
  17. EOF;
  18. }
  19. echo '
    ' . $output . '
    ';
复制代码


Stellungnahme:
Der Inhalt dieses Artikels wird freiwillig von Internetnutzern beigesteuert und das Urheberrecht liegt beim ursprünglichen Autor. Diese Website übernimmt keine entsprechende rechtliche Verantwortung. Wenn Sie Inhalte finden, bei denen der Verdacht eines Plagiats oder einer Rechtsverletzung besteht, wenden Sie sich bitte an admin@php.cn