Home
last modified time | relevance | path

Searched refs:str_rot13 (Results 1 – 10 of 10) sorted by relevance

/PHP-5.5/ext/standard/tests/strings/
H A Dstr_rot13_error.phpt2 Test str_rot13() function : error conditions
5 /* Prototype : string str_rot13 ( string $str )
9 echo "*** Testing str_rot13() : error conditions ***\n";
11 echo "-- Testing str_rot13() function with Zero arguments --\n";
12 var_dump( str_rot13() );
15 $str = "str_rot13() tests starting";
17 var_dump( str_rot13( $str, $extra_arg) );
21 *** Testing str_rot13() : error conditions ***
22 -- Testing str_rot13() function with Zero arguments --
24 Warning: str_rot13() expects exactly 1 parameter, 0 given in %s on line %d
[all …]
H A Dstr_rot13_basic.phpt5 /* Prototype : string str_rot13 ( string $str )
9 echo "*** Testing str_rot13() : basic functionality ***\n";
12 var_dump(str_rot13("str_rot13() tests starting"));
13 var_dump(str_rot13("abcdefghijklmnopqrstuvwxyz"));
16 if (strcmp(str_rot13("0123456789"), "0123456789") == 0) {
23 if (strcmp(str_rot13("!%^&*()_-+={}[]:;@~#<,>.?"), "!%^&*()_-+={}[]:;@~#<,>.?")) {
30 $str = "str_rot13() tests starting";
31 $encode = str_rot13($str);
32 $decode = str_rot13($encode);
41 *** Testing str_rot13() : basic functionality ***
H A Dbug20261.phpt2 Bug #20261 (str_rot13() changes too much)
13 $rot = str_rot13($second);
/PHP-5.5/tests/output/
H A Dob_014.phpt5 ob_start("str_rot13");
7 // str_rot13 expects 1 param and returns NULL when passed 2 params.
19 [message] => str_rot13() expects exactly 1 parameter, 2 given
H A Dob_015.phpt5 ob_start("str_rot13", 1);
7 // str_rot13 expects 1 param and returns NULL when passed 2 params.
19 [message] => str_rot13() expects exactly 1 parameter, 2 given
/PHP-5.5/ext/standard/
H A Dbasic_functions.h134 PHP_FUNCTION(str_rot13);
H A Dstring.c5369 PHP_FUNCTION(str_rot13) argument
H A Dbasic_functions.c3381 PHP_FE(str_rot13, arginfo_str_rot13)
/PHP-5.5/ext/standard/tests/file/
H A Duserstreams.phpt62 $DATA .= str_rot13($lyrics);
/PHP-5.5/
H A DNEWS8816 - Fixed bug #36185 (str_rot13() crash on non-string parameter). (Pierre)

Completed in 84 milliseconds