--TEST-- Test addcslashes() function (variation 1) --INI-- precision=14 --FILE-- getMessage(), "\n"; } $counter++; } echo "Done\n"; ?> --EXPECTF-- *** Testing addcslashes() for basic operations *** -- Iteration 1 -- string(37) "goodyear1\2345NULL%0truefalse\a \b " -- Iteration 2 -- addcslashes(): Argument #2 ($characters) must be of type string, array given -- Iteration 3 -- string(39) "goodye\ar12345NULL%0truef\alse\\a \b " -- Iteration 4 -- string(39) "goodyear12345NULL\000truefalse\a \b " -- Iteration 5 -- string(37) "goodyear12345NULL%0truefalse\a \b\n " -- Iteration 6 -- string(37) "goodyear12345NULL%0truefalse\a \b \r " -- Iteration 7 -- string(37) "goodyear12345NULL%0truefalse\a \b \t" -- Iteration 8 -- string(41) "goodye\ar12345NULL%0truef\alse\\\a \\b " -- Iteration 9 -- string(37) "goodyear12345NULL%0truefalse\a\v \b " -- Iteration 10 -- string(39) "goodyear12345NULL%0truefalse\\a \\\b " -- Iteration 11 -- string(37) "goodyear12345NULL%0truefalse\a \f\b " Done