????JFIF??x?x????'
| Server IP : 79.136.114.73 / Your IP : 216.73.216.191 Web Server : Apache/2.4.7 (Ubuntu) PHP/5.5.9-1ubuntu4.29 OpenSSL/1.0.1f System : Linux b8009 3.13.0-170-generic #220-Ubuntu SMP Thu May 9 12:40:49 UTC 2019 x86_64 User : www-data ( 33) PHP Version : 5.5.9-1ubuntu4.29 Disable Function : pcntl_alarm,pcntl_fork,pcntl_waitpid,pcntl_wait,pcntl_wifexited,pcntl_wifstopped,pcntl_wifsignaled,pcntl_wexitstatus,pcntl_wtermsig,pcntl_wstopsig,pcntl_signal,pcntl_signal_dispatch,pcntl_get_last_error,pcntl_strerror,pcntl_sigprocmask,pcntl_sigwaitinfo,pcntl_sigtimedwait,pcntl_exec,pcntl_getpriority,pcntl_setpriority, MySQL : ON | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : ON | Pkexec : ON Directory : /proc/self/root/home/b8009/php-5.6.22/ext/standard/tests/strings/ |
Upload File : |
--TEST--
Test addcslashes() function (variation 1)
--INI--
precision=14
--FILE--
<?php
echo "*** Testing addcslashes() for basic operations ***\n";
/* checking normal operation of addcslashes */
$string = "goodyear12345NULL\0truefalse\a\v\f\b\n\r\t";
$charlist = array (
NULL,
2,
array(5,6,7),
"a",
"\0",
"\n",
"\r",
"\t",
"\a",
"\v",
"\b",
"\f"
);
/* loop prints string with backslashes before characters
mentioned in $char using addcslashes() */
$counter = 1;
foreach($charlist as $char) {
echo "-- Iteration $counter --\n";
var_dump( addcslashes($string, $char) );
$counter++;
}
echo "Done\n";
?>
--EXPECTF--
*** Testing addcslashes() for basic operations ***
-- Iteration 1 --
string(36) "goodyear12345NULL truefalse\a\b
"
-- Iteration 2 --
string(37) "goodyear1\2345NULL truefalse\a\b
"
-- Iteration 3 --
Warning: addcslashes() expects parameter 2 to be string, array given in %s on line %d
NULL
-- Iteration 4 --
string(39) "goodye\ar12345NULL truef\alse\\a\b
"
-- Iteration 5 --
string(39) "goodyear12345NULL\000truefalse\a\b
"
-- Iteration 6 --
string(37) "goodyear12345NULL truefalse\a\b\n
"
-- Iteration 7 --
string(37) "goodyear12345NULL truefalse\a\b
\r "
-- Iteration 8 --
string(37) "goodyear12345NULL truefalse\a\b
\t"
-- Iteration 9 --
string(41) "goodye\ar12345NULL truef\alse\\\a\\b
"
-- Iteration 10 --
string(37) "goodyear12345NULL truefalse\a\v\b
"
-- Iteration 11 --
string(39) "goodyear12345NULL truefalse\\a\\\b
"
-- Iteration 12 --
string(37) "goodyear12345NULL truefalse\a\f\b
"
Done