Answers for "<b>notice</b>: array to string conversion in <b>c:\xampp\htdocs\admin_pn\admin\includes\functions\function.php</b> on line <b>54</b><br />"

PHP
0

Notice: Array to string conversion php

$stuff = array(1,2,3);
print_r($stuff);
$stuff = array(3,4,5);
var_dump($stuff);
Posted by: Guest on March-05-2020
-1

Notice: Array to string conversion php

// Joining all the cells in the array together:
<?php
    $stuff = array(1,2,3);
    print implode(", ", $stuff);    //prints 1, 2, 3
    print join(',', $stuff);        //prints 1, 2, 3
?>
Posted by: Guest on March-05-2020

Code answers related to "<b>notice</b>: array to string conversion in <b>c:\xampp\htdocs\admin_pn\admin\includes\functions\function.php</b> on line <b>54</b><br />"

Browse Popular Code Answers by Language