Home  >  Article  >  php教程  >  php函数分解SQL语句

php函数分解SQL语句

WBOY
WBOYOriginal
2016-06-06 19:42:181044browse

例如 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';"

}

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

Statement:
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