Home > Article > Backend Development > PHP automatically generates class attributes based on table structure_PHP tutorial
php automatically generates class attributes based on the table structure
$table = $_GET['table'];
$rs = $db->queryAll("SELECT column_name,column_type,column_comment,data_type
FROM information_schema.`COLUMNS` WHERE `TABLE_NAME` LIKE '$table'");
$output = '';
foreach ($rs as $r) {
// Convert underline to camel case
$r['column_name'] = lcfirst(implode('', array_map('ucfirst', explode('_', $r['column_name']))));
$output .=<< /** * {$r['column_comment']} * @var {$r['data_type']} */ public ${$r['column_name']}; EOF; } echo '' . $output . '
';