php convert array to string

藏色散人
Release: 2023-03-07 18:38:02
Original
2067 people have browsed it

php method to convert an array into a string: first create a PHP sample file; then use the "implode(',',$arr);" method to convert the array into a string.

php convert array to string

The operating environment of this tutorial: Windows 7 system, PHP version 5.6. This method is suitable for all brands of computers.

Recommended: "PHP Video Tutorial"

php method to convert an array into a string:

The code is as follows:

arr = array(1,2,3,4,5,6,7);
echo implode(',',$arr);
//结果:"1,2,3,4,5,6,7"
echo implode('-',$arr);
//结果:"1-2-3-4-5-6-7"
Copy after login

If you don’t understand it, just read the documentation. If it doesn’t work, just run it.

This method is suitable for all brands of computers.

The above is the detailed content of php convert array to string. For more information, please follow other related articles on the PHP Chinese website!

Related labels:
php
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