Home
last modified time | relevance | path

Searched refs:strtr (Results 1 – 23 of 23) sorted by relevance

/PHP-7.4/ext/standard/tests/strings/
H A Dstrtr_basic.phpt2 Test strtr() function : basic functionality
15 test strtr
19 var_dump( strtr("test strtr", "t", "T") );
20 var_dump( strtr('test strtr', 't', 'T') );
21 var_dump( strtr($heredoc_str, "t", "T") );
25 var_dump( strtr("test strtr", "test", "TEST") );
26 var_dump( strtr('test strtr', 'test', 'TEST') );
30 var_dump( strtr("test strtr", "test", "TESTz") );
31 var_dump( strtr('test strtr', 'testz', 'TEST') );
35 var_dump( strtr("test strtr", $trans1_arr) );
[all …]
H A Dstrtr_variation8.phpt5 /* Prototype : string strtr(string $str, string $from[, string $to]);
6 string strtr(string $str, array $replace_pairs);
11 /* Test strtr() function: with unexpected inputs for 'replace_pairs'
80 var_dump( strtr($str, $replace_pairs) );
93 Warning: strtr(): The second argument is not an array in %s on line %d
98 Warning: strtr(): The second argument is not an array in %s on line %d
103 Warning: strtr(): The second argument is not an array in %s on line %d
108 Warning: strtr(): The second argument is not an array in %s on line %d
113 Warning: strtr(): The second argument is not an array in %s on line %d
118 Warning: strtr(): The second argument is not an array in %s on line %d
[all …]
H A Dstrtr_variation3.phpt6 string strtr(string $str, array $replace_pairs);
11 /* Testing strtr() function by passing the
22 \\test\\\strtr
32 "\\test\\\strtr",
39 '\\test\\\strtr',
58 //strtr() call in three args syntax form
59 var_dump( strtr($str, $from, $to) );
61 //strtr() call in two args syntax form
62 var_dump( strtr($str, $replace_pairs) );
76 string(12) "\test\\strtr"
[all …]
H A Dstrtr_variation4.phpt2 Test strtr() function : usage variations - empty string & null for 'str' argument
5 /* Prototype : string strtr(string $str, string $from[, string $to]);
6 string strtr(string $str, array $replace_pairs);
11 /* Testing strtr() function by passing the
16 echo "*** Testing strtr() : empty string & null for 'str' arg ***\n";
40 /* loop through to test strtr() with each element of $str_arr */
46 //strtr() call in three args syntax form
47 var_dump( strtr($str, $from, $to) );
49 //strtr() call in two args syntax form
50 var_dump( strtr($str, $replace_pairs) );
[all …]
H A Dstrtr_variation1.phpt2 Test strtr() function : usage variations - regular & numeric strings for 'str' argument
5 /* Prototype : string strtr(string $str, string $from[, string $to]);
6 string strtr(string $str, array $replace_pairs);
11 /* Testing strtr() function by passing the
16 echo "*** Testing strtr() : numeric & regular double quoted strings ***\n";
43 /* loop through to test strtr() with each element of $str_arr */
49 //strtr() call in three args syntax form
50 var_dump( strtr($str, $from, $to) );
52 //strtr() call in two args syntax form
53 var_dump( strtr($str, $replace_pairs) );
[all …]
H A Dstrtr_variation2.phpt2 Test strtr() function : usage variations - string containing special chars for 'str' argument
5 /* Prototype : string strtr(string $str, string $from[, string $to]);
6 string strtr(string $str, array $replace_pairs);
11 /* Testing strtr() function by passing the
16 echo "*** Testing strtr() : string containing special chars for 'str' arg ***\n";
47 /* loop through to test strtr() with each element of $str_arr */
53 //strtr() call in three args syntax form
54 var_dump( strtr($str, $from, $to) );
56 //strtr() call in two args syntax form
57 var_dump( strtr($str, $replace_pairs) );
[all …]
H A Dbug27457.phpt2 Bug #27457 (Problem with strtr() and translation array)
7 $test = strtr($test, array('.' => '0'));
9 $test = strtr($test, array('0' => '.'));
11 $test = strtr($test, '.', '0');
13 $test = strtr($test, '0', '.');
H A Dstrtr_variation6.phpt2 Test strtr() function : usage variations - unexpected inputs for 'from' argument
5 /* Prototype : string strtr(string $str, string $from[, string $to]);
6 string strtr(string $str, array $replace_pairs);
11 /* Test strtr() function: with unexpected inputs for 'from'
15 echo "*** Testing strtr() function: with unexpected inputs for 'from' ***\n";
78 // loop through with each element of the $from array to test strtr() function
83 var_dump( strtr($str, $from, $to) );
91 *** Testing strtr() function: with unexpected inputs for 'from' ***
H A Dbug67151.phpt2 Buf #67151: strtr with empty array crashes
5 var_dump(strtr("foo", []));
H A Dstrtr_with_reference.phpt2 strtr() with references
8 var_dump(strtr('foobar', $arr));
H A Dbug72823.phpt2 Bug #72823 (strtr out-of-bound access)
6 strtr(11, array('aaa' => 'bbb'))
H A Dbug70667.phpt2 Bug #70667 (strtr() causes invalid writes and a crashes)
6 var_dump(strtr("Sign in to test1", $a));
H A Dstrtr.phpt2 strtr() function
6 var_dump(strtr("# hi all, I said hello world! #", $trans));
H A Dbug78612.phpt2 Bug #78612 (strtr leaks memory when integer keys are used and the subject string shorter).
14 echo strtr('Hello', $find_replace), "\n";
H A Dbug69144.phpt2 Bug #69144 (strtr not replacing with partly matching replace pairs)
8 if ($expected !== ($actual = strtr($input, array("fo" => "", "foobar" => "", "bar" => "")))) {
/PHP-7.4/ext/standard/tests/file/
H A Dbug44034.phpt14 echo strtr($url, array("\r" => "\\r", "\n" => "\\n")) . "\n";
/PHP-7.4/tests/strings/
H A D001.phpt152 echo "Testing strtr: ";
154 $tr = strtr($str, "def", "456");
221 Testing strtr: passed
/PHP-7.4/Zend/tests/
H A Druntime_compile_time_binary_operands.phpt95 …return '"' . strtr($param, ["\t" => '\t', "\n" => '\n', "\r" => '\r', "\v" => '\v', "\f" => '\f', …
/PHP-7.4/ext/standard/
H A Dphp_string.h54 PHP_FUNCTION(strtr);
H A Dbasic_functions.c2816 PHP_FE(strtr, arginfo_strtr)
H A Dstring.c3463 PHP_FUNCTION(strtr) argument
/PHP-7.4/ext/ftp/tests/
H A Dserver.inc85 $cwd = strtr($cwd, array('//' => '/'));
246 …} elseif ((!empty($ascii) || isset($bug39583)) && $data === strtr($orig, array("\r\n" => "\n", "\r…
/PHP-7.4/
H A DNEWS1810 . Fixed bug #78612 (strtr leaks memory when integer keys are used and the

Completed in 61 milliseconds