php array tostring code example

Example 1: Array to String Conversion in PHP

$gadget = array( 'computer', 'mobile', 'tablet' );
echo implode($arr);

Example 2: php implode

$colors = array("red","blue","green");
$colorsCSV= "'".implode("','",$colors)."'";
//$colorsCSV: 'red','blue','green'

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);

Example 5: Convert an Array to a String in PHP

phpCopyimplode($string, $arrayName);

Tags:

Php Example