Home >Backend Development >PHP Tutorial >PHP automatically generates class attributes based on the table structure

PHP automatically generates class attributes based on the table structure

WBOY
WBOYOriginal
2016-07-25 08:49:24950browse
  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 . '
    ';
复制代码


Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn