1--TEST-- 2Test debug_zval_dump() function : error conditions 3--FILE-- 4<?php 5/* Prototype: void debug_zval_dump ( mixed $variable ); 6 Description: Dumps a string representation of an internal zend value 7 to output. 8*/ 9 10echo "*** Testing error conditions ***\n"; 11 12/* passing zero argument */ 13debug_zval_dump(); 14 15echo "Done\n"; 16 17?> 18--EXPECTF-- 19*** Testing error conditions *** 20 21Warning: debug_zval_dump() expects at least %d parameter, %d given in %s on line %d 22Done 23