PHP list,explode的使用
<?php header("Content-type: text/html; charset=utf-8"); echo "explode 使用<br>"; $student = "Zhangsan,Lisi,Wangwu"; $studentArray=explode(",",$student); echo $studentArray[0]."<br>"; echo $studentArray[1]."<br>"; echo "<br>list 使用<br>"; list($stu1,$stu2,$stu3) = explode(",",$student); echo $stu1."<br>"; echo $stu2."<br>"; echo $stu3."<br>"; ?>
1.header("Content-type: text/html; charset=utf-8"); 解决中文乱码问题。
输出结果:
explode 使用
Zhangsan
Lisi
list 使用
Zhangsan
Lisi
Wangwu
作者:Work Hard Work Smart
出处:http://www.cnblogs.com/linlf03/
欢迎任何形式的转载,未经作者同意,请保留此段声明!