Home > Article > Backend Development > php convert array to string
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.
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!