blob: 013d46da3df4b38ae0bb4cf84001748978dc9ea2 (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
--TEST--
notices when incorporating arrays into strings
--FILE--
<?php
$arr = array(1,2);
echo "$arr\n";
?>
--EXPECTF--
Notice: Array to string conversion in %s on line %d
Array
|