array to string conversion in php 7 code example
Example 1: Notice: Array to string conversion php
$stuff = array(1,2,3);
print json_encode($stuff);
Example 2: Notice: Array to string conversion php
$stuff = array(1,2,3);
print_r($stuff);
$stuff = array(3,4,5);
var_dump($stuff);
Example 3: Convert an Array to a String in PHP
phpCopy<?php
$array = ["Lili", "Rose", "Jasmine", "Daisy"];
$JsonObject = json_encode($array);
echo "The array is converted to the Json string.";
echo "\n";
echo"The Json string is $JsonObject";
?>
Example 4: array to string conversion in php
function subArraysToString($ar, $sep = ', ') {
$str = '';
foreach ($ar as $val) {
$str .= implode($sep, $val);
$str .= $sep;
}
$str = rtrim($str, $sep);
return $str;
}
echo subArraysToString($food);
Example 5: Notice: Array to string conversion php
// Joining all the cells in the array together:
<?php
$stuff = array(1,2,3);
print implode(", ", $stuff);
print join(',', $stuff);
?>
Example 6: Notice: Array to string conversion php
error_reporting(0);
print(array(1,2,3));