????JFIF??x?x????'
| Server IP : 79.136.114.73 / Your IP : 216.73.216.28 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 : /home/b8009/php-5.6.22/ext/pcre/tests/ |
Upload File : |
--TEST--
preg_split()
--FILE--
<?php
var_dump(preg_split());
var_dump(preg_split('/*/', 'x'));
var_dump(preg_split('/[\s, ]+/', 'x yy,zzz'));
var_dump(preg_split('/[\s, ]+/', 'x yy,zzz', -1));
var_dump(preg_split('/[\s, ]+/', 'x yy,zzz', 0));
var_dump(preg_split('/[\s, ]+/', 'x yy,zzz', 1));
var_dump(preg_split('/[\s, ]+/', 'x yy,zzz', 2));
var_dump(preg_split('/\d*/', 'ab2c3u'));
var_dump(preg_split('/\d*/', 'ab2c3u', -1, PREG_SPLIT_NO_EMPTY));
?>
--EXPECTF--
Warning: preg_split() expects at least 2 parameters, 0 given in %ssplit.php on line 3
bool(false)
Warning: preg_split(): Compilation failed: nothing to repeat at offset 0 in %ssplit.php on line 4
bool(false)
array(3) {
[0]=>
string(1) "x"
[1]=>
string(2) "yy"
[2]=>
string(3) "zzz"
}
array(3) {
[0]=>
string(1) "x"
[1]=>
string(2) "yy"
[2]=>
string(3) "zzz"
}
array(3) {
[0]=>
string(1) "x"
[1]=>
string(2) "yy"
[2]=>
string(3) "zzz"
}
array(1) {
[0]=>
string(8) "x yy,zzz"
}
array(2) {
[0]=>
string(1) "x"
[1]=>
string(6) "yy,zzz"
}
array(8) {
[0]=>
string(0) ""
[1]=>
string(1) "a"
[2]=>
string(1) "b"
[3]=>
string(0) ""
[4]=>
string(1) "c"
[5]=>
string(0) ""
[6]=>
string(1) "u"
[7]=>
string(0) ""
}
array(4) {
[0]=>
string(1) "a"
[1]=>
string(1) "b"
[2]=>
string(1) "c"
[3]=>
string(1) "u"
}