谁说的get_magic_quotes_gpc()被废除了?亲,有事没事去查查官网呗
http://php.net/manual/en/function.get-magic-quotes-gpc.php
http://php.net/manual/en/function.get-magic-quotes-gpc.php
2016-06-01
这个我有个疑问,加入是这样的update语句应该会出现问题吧。例如:update table set value = value+1
2016-05-30
现在最新版 $smarty->template_dir 等等,变成了
$smart->setTemplateDir("tpl");
$smart->setCompileDir("template_c");
$smart->setCacheDir("cache");
$smart->setTemplateDir("tpl");
$smart->setCompileDir("template_c");
$smart->setCacheDir("cache");
2016-05-30
这个insert我觉得可以不用foreach取值,可以用
$keys = implode(",", "`".array_keys($arr)."`"); //获取字段名
$values = implode(",", "`".array_values($arr)."'"); //获取值的名称
$sql = "insert into ".$table."("."$keys".") VALUES ($values)";
$keys = implode(",", "`".array_keys($arr)."`"); //获取字段名
$values = implode(",", "`".array_values($arr)."'"); //获取值的名称
$sql = "insert into ".$table."("."$keys".") VALUES ($values)";
2016-05-30