Home > php教程 > php手册 > implode,explode的使用

implode,explode的使用

WBOY
Release: 2016-06-13 09:46:10
Original
961 people have browsed it

implode把数组转成字符串的函数,在组合SQL语句时候使用特好使!

比如

$a = array('a','b','c');
$b = implode(',', $a);
echo $b;

返回的字符串就是  a,b,c

 

explode把字符串组成的数组

 

source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Recommendations
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template