Home > Backend Development > PHP Tutorial > emplode函数的有关问题

emplode函数的有关问题

WBOY
Release: 2016-06-13 12:43:22
Original
1235 people have browsed it

emplode函数的问题
emplode("@",$row)中@是什么意思


------解决方案--------------------
以 @ 分割  
------解决方案--------------------
emplode???是implode才对吧

$row = array(1,2,3);
implode("@",$row);

结果就是 1@2@3

就是将数组已@为连接符,组成字符串
Related labels:
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 Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template