
| Path : /proc/self/root/usr/src/php/ext/standard/tests/array/ |
| Current File : //proc/self/root/usr/src/php/ext/standard/tests/array/array_diff_1.phpt |
--TEST-- Test array_diff when non-array is passed --FILE-- <?php //-=-=-=-=- $a = array(); $b = 3; $c = array(5); array_diff($a, $b, $c); //-=-=-=-=-=- echo "OK!"; ?> --EXPECTF-- Warning: array_diff(): Argument #2 is not an array in %s OK!