Answers for "php array as string"

PHP
0

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);
Posted by: Guest on February-17-2021
6

php implode

$colors = array("red","blue","green");
$colorsCSV= "'".implode("','",$colors)."'";
//$colorsCSV: 'red','blue','green'
Posted by: Guest on November-27-2019
1

arry to string php

implode("|",$type);
Posted by: Guest on April-07-2020
0

Convert an Array to a String in PHP

phpCopyjson_encode( $ArrayName );
Posted by: Guest on April-23-2021
-2

Convert an Array to a String in PHP

phpCopyserialize($ArrayName);
Posted by: Guest on April-23-2021

Browse Popular Code Answers by Language