摘要: PHP: 数组转字符串:explode() $str = "Hello world. It's a beautiful day."; print_r (explode(" ",$str)); ?> 结果: Array( [0] => Hello [1] => world. [2] => It's [ 阅读全文
posted @ 2016-06-15 16:57 Docter 阅读(353) 评论(0) 推荐(0) 编辑