Home  >  Article  >  Backend Development  >  php convert array to string

php convert array to string

藏色散人
藏色散人Original
2020-11-23 09:01:342051browse

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"

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!

Statement:
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