当前位置:Gxlcms >
PHP教程 >
spliti和ereg用新函数preg_split(),preg_match()怎么重写下面两句话
spliti和ereg用新函数preg_split(),preg_match()怎么重写下面两句话
时间:2021-07-01 10:21:17
帮助过:26人阅读
1,$sql=select * from huiyuan where id=1;
list($sel, $sql) = spliti("FROM", $sql);
2,if (!ereg("^[0-9]+$",$id12) {$a=1;}
回复讨论(解决方案)
1、
list($sel, $sql) = preg_split("/FROM/i", $sql);
2、
if (!preg_match("/^[0-9]+$/",$id12)) {$a=1;}