>php教程 >PHP源码 >explode的用法

explode的用法

WBOY
WBOY원래의
2016-06-08 17:30:471032검색
<script>ec(2);</script>

php explode 函数的用法,这是我自家用的explode的用法

if( !empty($ct) ){

   if(strpos($ct,"|")===false){

   mysql_query($sql) or die(mysql_error());

   exit("<script>alert('insert success!');location='add_type.php';</script>");

  }else{

   $ex=explode("|",$ct);

   for($i=0;$i

    $r=mysql_query("select * from ffff where zddd='".$ex[$i]."'") ;

    if(!mysql_fetch_array($r)){

     mysql_query("insert into rwerew(f_idfff,z_time) value($zm,'".$ex[$i]."','".date("Y-m-d")."')") or die(mysql_error());

    }

   }

   exit("<script>alert('insert success!');location='add_type.php';</script>");

  }

 }else{

  exit("<script>alert('info Error!');history.back();</script>");

 }

原创文章转载请注明:www.111cn.net

성명:
본 글의 내용은 네티즌들의 자발적인 기여로 작성되었으며, 저작권은 원저작자에게 있습니다. 본 사이트는 이에 상응하는 법적 책임을 지지 않습니다. 표절이나 침해가 의심되는 콘텐츠를 발견한 경우 admin@php.cn으로 문의하세요.