Home > php教程 > php手册 > body text

php函数分解SQL语句

WBOY
Release: 2016-06-06 19:42:18
Original
1048 people have browsed it

例如 var_dump( split_sql( " insert into abc values ('asjoha ;ighuasdf;as' ,'urwqur;'); select hahaha from abc where qwe='dk;h';")); 会输出 array(2){ [0]= string(60) " insert into abc values ('asjoha ;ighuasdf;as' ,'urwqur;');" [1]= string(

例如

var_dump( split_sql( "  insert into abc values

('asjoha   ;ighuasdf;as' ,'urwqur;');

select hahaha from abc where qwe='dk;h';"));

 

会输出

array(2){

  [0]=>

  string(60) "  insert into abc values

('asjoha   ;ighuasdf;as' ,'urwqur;');"

  [1]=>

  string(41) "

select hahaha from abc where qwe='dk;h';"

}

要这样分解!不要像一楼!

source:php.cn
Statement of this Website
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
Popular Recommendations
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!