Convert An Array To String Php Code Example


Example 1: php Array to string conversion


Using implode() function in Php
-----------------------
Syntax
implode(separator,array);

Example
<?php
//assigning value to the array
$dummyArr = array("Hello","Greppers,","Ankur","here !");

echo implode(" ",$dummyArr);// Use of implode function
?>


Output:
Hello Greppers, Ankur here !

Example 2: array to string conversion in php


$person = [
'name' => 'Jon',
'age' => 26,
'status' => null,
'friends' => ['Matt', 'Kaci', 'Jess']
];

echo json_encode($person);
// {"name":"Jon","age":26,"status":null,"friends":["Matt","Kaci","Jess"]}

Example 3: php array to string


// for one-dimentional arrays
$str = implode('|', $arr); // "v1|v2|v3"...

// for multi-dimensional/structured arrays, or to keep hierarchy
$str = json_encode($arr);
// or
$str = var_export($arr);

Example 4: arry to string php


implode("|",$type);

Comments

Popular posts from this blog

Converting A String To Int In Groovy

"Cannot Create Cache Directory /home//.composer/cache/repo/https---packagist.org/, Or Directory Is Not Writable. Proceeding Without Cache"

Android How Can I Convert A String To A Editable