Home  >  Article  >  Backend Development  >  How to convert array type to string type data in php?

How to convert array type to string type data in php?

青灯夜游
青灯夜游Original
2020-09-27 15:24:504802browse

In PHP, you can use the implode() function to convert array type to string type data, the syntax is "implode(" ",array)"; this function can return a string composed of array elements.

How to convert array type to string type data in php?

## Recommended: "PHP Video Tutorial"

implode() function returns a string composed of array elements.

Syntax

implode(separator,array)

Parameters:

  • separator Optional. Specifies what is placed between array elements. Default is "" (empty string).

  • array Required. Arrays to be combined into strings.

Note:

  • implode() function accepts two parameter orders. However, due to historical reasons, the separator parameter must be ensured before the string parameter.

  • The separator parameter of the implode() function is optional. However, for backward compatibility, it is recommended that you use two parameters.

Return value: Returns a string composed of array elements.

Example

<?php
$arr = array(&#39;Hello&#39;,&#39;World!&#39;,&#39;Beautiful&#39;,&#39;Day!&#39;);
echo implode(" ",$arr);
?>

Output:


Hello World! Beautiful Day!

The above is the detailed content of How to convert array type to string type data in php?. 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