摘要: <?php //1、explode — 使用一个字符串分割另一个字符串,返回一个数组$str = "hello,world,I am,php";$arr = explode(',',$str);//返回array('hello','world',"I am",'php');//2、implode 使 阅读全文
posted @ 2020-06-12 11:26 大尹 阅读(420) 评论(0) 推荐(0) 编辑