explode
-
学习php中利用explode函数分割字符串到数组
分割字符串 //利用 explode 函数分割字符串到数组 代码如下:<?php $source = "hello1,hello2,hello3,hello4,hello5";//按逗号分离字符串 $hello = explode(',',$source); for($index=0;$ind…
-
PHP的几个数组函数
Count():获取数组的长度 Is_array():检查某个变量是否是数组 Var_dump():打印输出数组中类型和长度和值 Print_r():打印输出数组中键值对 Implode():通过一个分隔符链接数组成为字符串 Explode():通过个分割符…