Answers for "how to get rid of array to string conversion error in php"

PHP
0

Notice: Array to string conversion php

// suppress the Notices:
error_reporting(0);
print(array(1,2,3));    //Prints 'Array' without a Notice.
Posted by: Guest on March-05-2020

Code answers related to "how to get rid of array to string conversion error in php"

Browse Popular Code Answers by Language