代码第六行有一句多余的:C('test','show');估计是在没写后面的代码时提前测试效果用的,视频里也没提,然后下一个视频也没说删,但实际已经被删了,导致运行的时候会显示两遍hello world。
2016-09-15
foreach ($data as $key => $value) {
array_push($sets, '`' . $key . '`' . '=' . '`' . $value . '`');
}
$sql = "UPDATE {$table} SET " . implode(',', $sets) . " WHERE {$where}";
array_push($sets, '`' . $key . '`' . '=' . '`' . $value . '`');
}
$sql = "UPDATE {$table} SET " . implode(',', $sets) . " WHERE {$where}";
2016-09-14
$keys = '`' . implode('`,`', array_keys($data)) . '`';
$values = '`' . implode('`,`', array_values($data)) . '`';
$sql = "INSERT INTO {$table}( {$keys} )VALUES( {$values} )";
$values = '`' . implode('`,`', array_values($data)) . '`';
$sql = "INSERT INTO {$table}( {$keys} )VALUES( {$values} )";
2016-09-14
$smarty->setLeftDelimiter('{');//左定界符
$smarty->setRightDelimiter('}');//右定界符
$smarty->setTemplateDir('temp/');//模板地址
$smarty->setCompileDir('comp/');//编译文件
$smarty->setCacheDir('cache/');//缓存地址
$smarty->setRightDelimiter('}');//右定界符
$smarty->setTemplateDir('temp/');//模板地址
$smarty->setCompileDir('comp/');//编译文件
$smarty->setCacheDir('cache/');//缓存地址
2016-09-14