(David Soria Parra)
- Deprecated define_syslog_variables(). (Kalle)
+- Deprecated ereg extension. (Felipe)
- Fixed bug causing the algorithm parameter of mhash() to be modified. (Scott)
- Fixed invalid calls to free when internal fileinfo magic file is used. (Scott)
ZEND_ARG_INFO(1, registers) /* ARRAY_INFO(1, registers, 1) */
ZEND_END_ARG_INFO()
-ZEND_BEGIN_ARG_INFO_EX(arginfo_eregi, 0, 0, 2)
- ZEND_ARG_INFO(0, pattern)
- ZEND_ARG_INFO(0, string)
- ZEND_ARG_INFO(1, registers) /* ARRAY_INFO(1, registers, 1) */
-ZEND_END_ARG_INFO()
-
ZEND_BEGIN_ARG_INFO(arginfo_ereg_replace, 0)
ZEND_ARG_INFO(0, pattern)
ZEND_ARG_INFO(0, replacement)
ZEND_ARG_INFO(0, string)
ZEND_END_ARG_INFO()
-ZEND_BEGIN_ARG_INFO(arginfo_eregi_replace, 0)
- ZEND_ARG_INFO(0, pattern)
- ZEND_ARG_INFO(0, replacement)
- ZEND_ARG_INFO(0, string)
-ZEND_END_ARG_INFO()
-
ZEND_BEGIN_ARG_INFO_EX(arginfo_split, 0, 0, 2)
ZEND_ARG_INFO(0, pattern)
ZEND_ARG_INFO(0, string)
ZEND_ARG_INFO(0, limit)
ZEND_END_ARG_INFO()
-ZEND_BEGIN_ARG_INFO_EX(arginfo_spliti, 0, 0, 2)
- ZEND_ARG_INFO(0, pattern)
- ZEND_ARG_INFO(0, string)
- ZEND_ARG_INFO(0, limit)
-ZEND_END_ARG_INFO()
-
ZEND_BEGIN_ARG_INFO(arginfo_sql_regcase, 0)
ZEND_ARG_INFO(0, string)
ZEND_END_ARG_INFO()
/* {{{ Function table */
const zend_function_entry ereg_functions[] = {
- PHP_FE(ereg, arginfo_ereg)
- PHP_FE(ereg_replace, arginfo_ereg_replace)
- PHP_FE(eregi, arginfo_eregi)
- PHP_FE(eregi_replace, arginfo_eregi_replace)
- PHP_FE(split, arginfo_split)
- PHP_FE(spliti, arginfo_spliti)
- PHP_FE(sql_regcase, arginfo_sql_regcase)
+ PHP_DEP_FE(ereg, arginfo_ereg)
+ PHP_DEP_FE(ereg_replace, arginfo_ereg_replace)
+ PHP_DEP_FE(eregi, arginfo_ereg)
+ PHP_DEP_FE(eregi_replace, arginfo_ereg_replace)
+ PHP_DEP_FE(split, arginfo_split)
+ PHP_DEP_FE(spliti, arginfo_split)
+ PHP_DEP_FE(sql_regcase, arginfo_sql_regcase)
{NULL, NULL, NULL}
};
/* }}} */
--FILE--
<?php $a="abc123";
echo ereg_replace("123","def",$a)?>
---EXPECT--
+--EXPECTF--
+Deprecated: Function ereg_replace() is deprecated in %s on line %d
abcdef
--FILE--
<?php $a="abc123";
echo ereg_replace("123","",$a)?>
---EXPECT--
+--EXPECTF--
+Deprecated: Function ereg_replace() is deprecated in %s on line %d
abc
<?php $a="\\'test";
echo ereg_replace("\\\\'","'",$a)
?>
---EXPECT--
+--EXPECTF--
+Deprecated: Function ereg_replace() is deprecated in %s on line %d
'test
echo "ok\n";
}
?>
---EXPECT--
+--EXPECTF--
+Deprecated: Function ereg() is deprecated in %s on line %d
ok
+
+Deprecated: Function ereg() is deprecated in %s on line %d
ok
echo $registers[2];
echo "\n";
?>
---EXPECT--
+--EXPECTF--
+Deprecated: Function ereg() is deprecated in %s on line %d
32
This is a nice and simple string
is
<?php $a="This is a nice and simple string";
echo ereg_replace("^This","That",$a);
?>
---EXPECT--
+--EXPECTF--
+Deprecated: Function ereg_replace() is deprecated in %s on line %d
That is a nice and simple string
$b=ereg_replace("abcd","",$a);
echo "strlen(\$b)=".strlen($b);
?>
---EXPECT--
+--EXPECTF--
+Deprecated: Function ereg_replace() is deprecated in %s on line %d
strlen($b)=0
<?php
echo ereg_replace("([a-z]*)([-=+|]*)([0-9]+)","\\3 \\1 \\2\n","abc+-|=123");
?>
---EXPECT--
+--EXPECTF--
+Deprecated: Function ereg_replace() is deprecated in %s on line %d
123 abc +-|=
echo $a[$i] . "\n";
}
?>
---EXPECT--
+--EXPECTF--
+Deprecated: Function split() is deprecated in %s on line %d
4
this
is
--FILE--
<?php $a="abc122222222223";
echo ereg_replace("1(2*)3","\\1def\\1",$a)?>
---EXPECT--
+--EXPECTF--
+Deprecated: Function ereg_replace() is deprecated in %s on line %d
abc2222222222def2222222222
--FILE--
<?php $a="abc123";
echo ereg_replace("123","def\\0ghi",$a)?>
---EXPECT--
+--EXPECTF--
+Deprecated: Function ereg_replace() is deprecated in %s on line %d
abcdef123ghi
--FILE--
<?php $a="abc123";
echo ereg_replace("123",'def\1ghi',$a)?>
---EXPECT--
+--EXPECTF--
+Deprecated: Function ereg_replace() is deprecated in %s on line %d
abcdef\1ghi
--FILE--
<?php $a="abc123";
echo ereg_replace("123","def\\g\\\\hi\\",$a)?>
---EXPECT--
+--EXPECTF--
+Deprecated: Function ereg_replace() is deprecated in %s on line %d
abcdef\g\\hi\
--FILE--
<?php $a="a\\2bxc";
echo ereg_replace("a(.*)b(.*)c","\\1",$a)?>
---EXPECT--
+--EXPECTF--
+Deprecated: Function ereg_replace() is deprecated in %s on line %d
\2
replace empty matches
--FILE--
<?php echo ereg_replace("^","z","abc123")?>
---EXPECT--
+--EXPECTF--
+Deprecated: Function ereg_replace() is deprecated in %s on line %d
zabc123
test backslash handling in regular expressions
--FILE--
<?php echo ereg_replace('\?',"abc","?123?")?>
---EXPECT--
+--EXPECTF--
+Deprecated: Function ereg_replace() is deprecated in %s on line %d
abc123abc
--EXPECTF--
*** Testing ereg() : basic functionality ***
--> Pattern: '..(a|b|c)(a|b|c)..'; string: '--- ab ---'
+
+Deprecated: Function ereg() is deprecated in %s on line %d
int(6)
array(3) {
[0]=>
string(1) "b"
}
--> Pattern: '()'; string: ''
+
+Deprecated: Function ereg() is deprecated in %s on line %d
int(1)
array(2) {
[0]=>
bool(false)
}
--> Pattern: '()'; string: 'abcdef'
+
+Deprecated: Function ereg() is deprecated in %s on line %d
int(1)
array(2) {
[0]=>
bool(false)
}
--> Pattern: '[x]|[^x]'; string: 'abcdef'
+
+Deprecated: Function ereg() is deprecated in %s on line %d
int(1)
array(1) {
[0]=>
string(1) "a"
}
--> Pattern: '(a{1})(a{1,}) (b{1,3}) (c+) (d?ddd|e)'; string: '--- aaa bbb ccc ddd ---'
+
+Deprecated: Function ereg() is deprecated in %s on line %d
int(15)
array(6) {
[0]=>
string(3) "ddd"
}
--> Pattern: '\\\`\^\.\[\$\(\)\|\*\+\?\{\''; string: '\`^.[$()|*+?{''
+
+Deprecated: Function ereg() is deprecated in %s on line %d
int(14)
array(1) {
[0]=>
string(14) "\`^.[$()|*+?{'"
}
--> Pattern: '\a'; string: 'a'
+
+Deprecated: Function ereg() is deprecated in %s on line %d
int(1)
array(1) {
[0]=>
string(1) "a"
}
--> Pattern: '[0-9][^0-9]'; string: '2a'
+
+Deprecated: Function ereg() is deprecated in %s on line %d
int(2)
array(1) {
[0]=>
string(2) "2a"
}
--> Pattern: '^[[:alnum:]]{62,62}$'; string: '0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ'
+
+Deprecated: Function ereg() is deprecated in %s on line %d
int(62)
array(1) {
[0]=>
string(62) "0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ"
}
--> Pattern: '^[[:digit:]]{5}'; string: '0123456789'
+
+Deprecated: Function ereg() is deprecated in %s on line %d
int(5)
array(1) {
[0]=>
string(5) "01234"
}
--> Pattern: '[[:digit:]]{5}$'; string: '0123456789'
+
+Deprecated: Function ereg() is deprecated in %s on line %d
int(5)
array(1) {
[0]=>
}
--> Pattern: '[[:blank:]]{1,10}'; string: '
'
+
+Deprecated: Function ereg() is deprecated in %s on line %d
int(2)
array(1) {
[0]=>
string(2) " "
}
--> Pattern: '[[:print:]]{3}'; string: ' a '
+
+Deprecated: Function ereg() is deprecated in %s on line %d
int(3)
array(1) {
[0]=>
string(3) " a "
}
-Done
\ No newline at end of file
+Done
--EXPECTF--
*** Testing ereg() : basic functionality ***
--> Pattern: '..(a|b|c)(a|b|c)..'; string: '--- ab ---'
+
+Deprecated: Function ereg() is deprecated in %s on line %d
int(1)
--> Pattern: '()'; string: ''
+
+Deprecated: Function ereg() is deprecated in %s on line %d
int(1)
--> Pattern: '()'; string: 'abcdef'
+
+Deprecated: Function ereg() is deprecated in %s on line %d
int(1)
--> Pattern: '[x]|[^x]'; string: 'abcdef'
+
+Deprecated: Function ereg() is deprecated in %s on line %d
int(1)
--> Pattern: '(a{1})(a{1,}) (b{1,3}) (c+) (d?ddd|e)'; string: '--- aaa bbb ccc ddd ---'
+
+Deprecated: Function ereg() is deprecated in %s on line %d
int(1)
--> Pattern: '\\\`\^\.\[\$\(\)\|\*\+\?\{\''; string: '\`^.[$()|*+?{''
+
+Deprecated: Function ereg() is deprecated in %s on line %d
int(1)
--> Pattern: '\a'; string: 'a'
+
+Deprecated: Function ereg() is deprecated in %s on line %d
int(1)
--> Pattern: '[0-9][^0-9]'; string: '2a'
+
+Deprecated: Function ereg() is deprecated in %s on line %d
int(1)
--> Pattern: '^[[:alnum:]]{62,62}$'; string: '0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ'
+
+Deprecated: Function ereg() is deprecated in %s on line %d
int(1)
--> Pattern: '^[[:digit:]]{5}'; string: '0123456789'
+
+Deprecated: Function ereg() is deprecated in %s on line %d
int(1)
--> Pattern: '[[:digit:]]{5}$'; string: '0123456789'
+
+Deprecated: Function ereg() is deprecated in %s on line %d
int(1)
--> Pattern: '[[:blank:]]{1,10}'; string: '
'
+
+Deprecated: Function ereg() is deprecated in %s on line %d
int(1)
--> Pattern: '[[:print:]]{3}'; string: ' a '
+
+Deprecated: Function ereg() is deprecated in %s on line %d
int(1)
-Done
\ No newline at end of file
+Done
echo "Done";
?>
--EXPECTF--
+Deprecated: Function ereg() is deprecated in %s on line %d
int(1)
+
+Deprecated: Function ereg() is deprecated in %s on line %d
int(2048)
int(2049)
-Done
\ No newline at end of file
+Done
echo "Done";
?>
--EXPECTF--
+Deprecated: Function ereg() is deprecated in %s on line %d
bool(false)
+
+Deprecated: Function ereg() is deprecated in %s on line %d
bool(false)
+
+Deprecated: Function ereg() is deprecated in %s on line %d
bool(false)
+
+Deprecated: Function ereg() is deprecated in %s on line %d
bool(false)
+
+Deprecated: Function ereg() is deprecated in %s on line %d
bool(false)
+
+Deprecated: Function ereg() is deprecated in %s on line %d
bool(false)
string(8) "original"
-Done
\ No newline at end of file
+Done
-- Testing ereg() function with more than expected no. of arguments --
-Warning: ereg() expects at most 3 parameters, 4 given in %s on line 21
+Deprecated: Function ereg() is deprecated in %s on line %d
+
+Warning: ereg() expects at most 3 parameters, 4 given in %s on line %d
NULL
-- Testing ereg() function with less than expected no. of arguments --
-Warning: ereg() expects at least 2 parameters, 1 given in %s on line 26
+Deprecated: Function ereg() is deprecated in %s on line %d
+
+Warning: ereg() expects at least 2 parameters, 1 given in %s on line %d
NULL
Done
--EXPECTF--
*** Testing ereg() : error conditions ***
-Warning: ereg(): REG_EMPTY in %s on line 16
+Deprecated: Function ereg() is deprecated in %s on line %d
+
+Warning: ereg(): REG_EMPTY in %s on line %d
bool(false)
-Warning: ereg(): REG_EPAREN in %s on line 17
+Deprecated: Function ereg() is deprecated in %s on line %d
+
+Warning: ereg(): REG_EPAREN in %s on line %d
bool(false)
-Warning: ereg(): REG_EBRACK in %s on line 18
+Deprecated: Function ereg() is deprecated in %s on line %d
+
+Warning: ereg(): REG_EBRACK in %s on line %d
bool(false)
-Warning: ereg(): REG_EPAREN in %s on line 19
+Deprecated: Function ereg() is deprecated in %s on line %d
+
+Warning: ereg(): REG_EPAREN in %s on line %d
bool(false)
-Warning: ereg(): REG_BADRPT in %s on line 20
+Deprecated: Function ereg() is deprecated in %s on line %d
+
+Warning: ereg(): REG_BADRPT in %s on line %d
bool(false)
-Warning: ereg(): REG_BADRPT in %s on line 21
+Deprecated: Function ereg() is deprecated in %s on line %d
+
+Warning: ereg(): REG_BADRPT in %s on line %d
bool(false)
-Warning: ereg(): REG_BADRPT in %s on line 22
+Deprecated: Function ereg() is deprecated in %s on line %d
+
+Warning: ereg(): REG_BADRPT in %s on line %d
bool(false)
-Warning: ereg(): REG_BADRPT in %s on line 23
+Deprecated: Function ereg() is deprecated in %s on line %d
+
+Warning: ereg(): REG_BADRPT in %s on line %d
bool(false)
-Warning: ereg(): REG_BADBR in %s on line 24
+Deprecated: Function ereg() is deprecated in %s on line %d
+
+Warning: ereg(): REG_BADBR in %s on line %d
bool(false)
-Warning: ereg(): REG_EMPTY in %s on line 25
+Deprecated: Function ereg() is deprecated in %s on line %d
+
+Warning: ereg(): REG_EMPTY in %s on line %d
bool(false)
-Warning: ereg(): REG_EMPTY in %s on line 26
+Deprecated: Function ereg() is deprecated in %s on line %d
+
+Warning: ereg(): REG_EMPTY in %s on line %d
bool(false)
-Warning: ereg(): REG_BADBR in %s on line 27
+Deprecated: Function ereg() is deprecated in %s on line %d
+
+Warning: ereg(): REG_BADBR in %s on line %d
bool(false)
-Warning: ereg(): REG_ERANGE in %s on line 28
+Deprecated: Function ereg() is deprecated in %s on line %d
+
+Warning: ereg(): REG_ERANGE in %s on line %d
bool(false)
-Warning: ereg(): REG_EESCAPE in %s on line 29
+Deprecated: Function ereg() is deprecated in %s on line %d
+
+Warning: ereg(): REG_EESCAPE in %s on line %d
bool(false)
-Warning: ereg(): REG_ERANGE in %s on line 30
+Deprecated: Function ereg() is deprecated in %s on line %d
+
+Warning: ereg(): REG_ERANGE in %s on line %d
bool(false)
string(8) "original"
-Done
\ No newline at end of file
+Done
--EXPECTF--
*** Testing ereg() : basic functionality ***
--> Pattern: '..(a|b|c)(a|b|c)..'; match: '--- ab ---'
+
+Deprecated: Function ereg_replace() is deprecated in %s on line %d
string(82) "--[this is a replacement]-- this contains some matches --[this is a replacement]--"
--> Pattern: '()'; match: ''
+
+Deprecated: Function ereg_replace() is deprecated in %s on line %d
string(695) "[this is a replacement] [this is a replacement]t[this is a replacement]h[this is a replacement]i[this is a replacement]s[this is a replacement] [this is a replacement]c[this is a replacement]o[this is a replacement]n[this is a replacement]t[this is a replacement]a[this is a replacement]i[this is a replacement]n[this is a replacement]s[this is a replacement] [this is a replacement]s[this is a replacement]o[this is a replacement]m[this is a replacement]e[this is a replacement] [this is a replacement]m[this is a replacement]a[this is a replacement]t[this is a replacement]c[this is a replacement]h[this is a replacement]e[this is a replacement]s[this is a replacement] [this is a replacement]"
--> Pattern: '()'; match: 'abcdef'
+
+Deprecated: Function ereg_replace() is deprecated in %s on line %d
string(983) "[this is a replacement]a[this is a replacement]b[this is a replacement]c[this is a replacement]d[this is a replacement]e[this is a replacement]f[this is a replacement] [this is a replacement]t[this is a replacement]h[this is a replacement]i[this is a replacement]s[this is a replacement] [this is a replacement]c[this is a replacement]o[this is a replacement]n[this is a replacement]t[this is a replacement]a[this is a replacement]i[this is a replacement]n[this is a replacement]s[this is a replacement] [this is a replacement]s[this is a replacement]o[this is a replacement]m[this is a replacement]e[this is a replacement] [this is a replacement]m[this is a replacement]a[this is a replacement]t[this is a replacement]c[this is a replacement]h[this is a replacement]e[this is a replacement]s[this is a replacement] [this is a replacement]a[this is a replacement]b[this is a replacement]c[this is a replacement]d[this is a replacement]e[this is a replacement]f[this is a replacement]"
--> Pattern: '[x]|[^x]'; match: 'abcdef'
+
+Deprecated: Function ereg_replace() is deprecated in %s on line %d
string(920) "[this is a replacement][this is a replacement][this is a replacement][this is a replacement][this is a replacement][this is a replacement][this is a replacement][this is a replacement][this is a replacement][this is a replacement][this is a replacement][this is a replacement][this is a replacement][this is a replacement][this is a replacement][this is a replacement][this is a replacement][this is a replacement][this is a replacement][this is a replacement][this is a replacement][this is a replacement][this is a replacement][this is a replacement][this is a replacement][this is a replacement][this is a replacement][this is a replacement][this is a replacement][this is a replacement][this is a replacement][this is a replacement][this is a replacement][this is a replacement][this is a replacement][this is a replacement][this is a replacement][this is a replacement][this is a replacement][this is a replacement]"
--> Pattern: '(a{1})(a{1,}) (b{1,3}) (c+) (d?ddd|e)'; match: '--- aaa bbb ccc ddd ---'
+
+Deprecated: Function ereg_replace() is deprecated in %s on line %d
string(90) "--- [this is a replacement] --- this contains some matches --- [this is a replacement] ---"
--> Pattern: '\\\`\^\.\[\$\(\)\|\*\+\?\{\''; match: '\`^.[$()|*+?{''
+
+Deprecated: Function ereg_replace() is deprecated in %s on line %d
string(74) "[this is a replacement] this contains some matches [this is a replacement]"
--> Pattern: '\a'; match: 'a'
+
+Deprecated: Function ereg_replace() is deprecated in %s on line %d
string(118) "[this is a replacement] this cont[this is a replacement]ins some m[this is a replacement]tches [this is a replacement]"
--> Pattern: '[0-9][^0-9]'; match: '2a'
+
+Deprecated: Function ereg_replace() is deprecated in %s on line %d
string(74) "[this is a replacement] this contains some matches [this is a replacement]"
--> Pattern: '^[[:alnum:]]{62,62}$'; match: '0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ'
+
+Deprecated: Function ereg_replace() is deprecated in %s on line %d
string(152) "0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ this contains some matches 0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ"
--> Pattern: '^[[:digit:]]{5}'; match: '0123456789'
+
+Deprecated: Function ereg_replace() is deprecated in %s on line %d
string(66) "[this is a replacement]56789 this contains some matches 0123456789"
--> Pattern: '[[:digit:]]{5}$'; match: '0123456789'
+
+Deprecated: Function ereg_replace() is deprecated in %s on line %d
string(66) "0123456789 this contains some matches 01234[this is a replacement]"
--> Pattern: '[[:blank:]]{1,10}'; match: '
'
+
+Deprecated: Function ereg_replace() is deprecated in %s on line %d
string(163) "
[this is a replacement]this[this is a replacement]contains[this is a replacement]some[this is a replacement]matches[this is a replacement]
[this is a replacement]"
--> Pattern: '[[:print:]]{3}'; match: ' a '
+
+Deprecated: Function ereg_replace() is deprecated in %s on line %d
string(254) "[this is a replacement][this is a replacement][this is a replacement][this is a replacement][this is a replacement][this is a replacement][this is a replacement][this is a replacement][this is a replacement][this is a replacement][this is a replacement] "
-Done
\ No newline at end of file
+Done
echo "Done";
?>
--EXPECTF--
+Deprecated: Function ereg_replace() is deprecated in %s on line %d
string(1) "a"
+
+Deprecated: Function ereg_replace() is deprecated in %s on line %d
string(1) "0"
+
+Deprecated: Function ereg_replace() is deprecated in %s on line %d
string(3) "aaa"
+
+Deprecated: Function ereg_replace() is deprecated in %s on line %d
string(2) "ba"
+
+Deprecated: Function ereg_replace() is deprecated in %s on line %d
string(2) "ba"
+
+Deprecated: Function ereg_replace() is deprecated in %s on line %d
string(1) "x"
-Done
\ No newline at end of file
+Done
-- Testing ereg_replace() function with more than expected no. of arguments --
-Warning: ereg_replace() expects exactly 3 parameters, 4 given in %s on line 17
+Deprecated: Function ereg_replace() is deprecated in %s on line %d
+
+Warning: ereg_replace() expects exactly 3 parameters, 4 given in %s on line %d
NULL
-- Testing ereg_replace() function with less than expected no. of arguments --
-Warning: ereg_replace() expects exactly 3 parameters, 2 given in %s on line 23
+Deprecated: Function ereg_replace() is deprecated in %s on line %d
+
+Warning: ereg_replace() expects exactly 3 parameters, 2 given in %s on line %d
NULL
Done
--EXPECTF--
*** Testing ereg_replace() : bad REs ***
-Warning: ereg_replace(): REG_EMPTY in %s on line 9
+Deprecated: Function ereg_replace() is deprecated in %s on line %d
+
+Warning: ereg_replace(): REG_EMPTY in %s on line %d
bool(false)
-Warning: ereg_replace(): REG_EPAREN in %s on line 10
+Deprecated: Function ereg_replace() is deprecated in %s on line %d
+
+Warning: ereg_replace(): REG_EPAREN in %s on line %d
bool(false)
-Warning: ereg_replace(): REG_EBRACK in %s on line 11
+Deprecated: Function ereg_replace() is deprecated in %s on line %d
+
+Warning: ereg_replace(): REG_EBRACK in %s on line %d
bool(false)
-Warning: ereg_replace(): REG_EPAREN in %s on line 12
+Deprecated: Function ereg_replace() is deprecated in %s on line %d
+
+Warning: ereg_replace(): REG_EPAREN in %s on line %d
bool(false)
-Warning: ereg_replace(): REG_BADRPT in %s on line 13
+Deprecated: Function ereg_replace() is deprecated in %s on line %d
+
+Warning: ereg_replace(): REG_BADRPT in %s on line %d
bool(false)
-Warning: ereg_replace(): REG_BADRPT in %s on line 14
+Deprecated: Function ereg_replace() is deprecated in %s on line %d
+
+Warning: ereg_replace(): REG_BADRPT in %s on line %d
bool(false)
-Warning: ereg_replace(): REG_BADRPT in %s on line 15
+Deprecated: Function ereg_replace() is deprecated in %s on line %d
+
+Warning: ereg_replace(): REG_BADRPT in %s on line %d
bool(false)
-Warning: ereg_replace(): REG_BADRPT in %s on line 16
+Deprecated: Function ereg_replace() is deprecated in %s on line %d
+
+Warning: ereg_replace(): REG_BADRPT in %s on line %d
bool(false)
-Warning: ereg_replace(): REG_BADBR in %s on line 17
+Deprecated: Function ereg_replace() is deprecated in %s on line %d
+
+Warning: ereg_replace(): REG_BADBR in %s on line %d
bool(false)
-Warning: ereg_replace(): REG_EMPTY in %s on line 18
+Deprecated: Function ereg_replace() is deprecated in %s on line %d
+
+Warning: ereg_replace(): REG_EMPTY in %s on line %d
bool(false)
-Warning: ereg_replace(): REG_EMPTY in %s on line 19
+Deprecated: Function ereg_replace() is deprecated in %s on line %d
+
+Warning: ereg_replace(): REG_EMPTY in %s on line %d
bool(false)
-Warning: ereg_replace(): REG_BADBR in %s on line 20
+Deprecated: Function ereg_replace() is deprecated in %s on line %d
+
+Warning: ereg_replace(): REG_BADBR in %s on line %d
bool(false)
-Warning: ereg_replace(): REG_ERANGE in %s on line 21
+Deprecated: Function ereg_replace() is deprecated in %s on line %d
+
+Warning: ereg_replace(): REG_ERANGE in %s on line %d
bool(false)
-Warning: ereg_replace(): REG_EESCAPE in %s on line 22
+Deprecated: Function ereg_replace() is deprecated in %s on line %d
+
+Warning: ereg_replace(): REG_EESCAPE in %s on line %d
bool(false)
-Warning: ereg_replace(): REG_ERANGE in %s on line 23
+Deprecated: Function ereg_replace() is deprecated in %s on line %d
+
+Warning: ereg_replace(): REG_ERANGE in %s on line %d
bool(false)
-Done
\ No newline at end of file
+Done
Error: 8 - Undefined variable: unset_var, %s(67)
Arg value 0
+Error: 8192 - Function ereg_replace() is deprecated, %s(74)
Error: 2 - ereg_replace(): REG_EMPTY, %s(74)
bool(false)
Arg value 1
+Error: 8192 - Function ereg_replace() is deprecated, %s(74)
string(8) "original"
Arg value 12345
+Error: 8192 - Function ereg_replace() is deprecated, %s(74)
string(8) "original"
Arg value -2345
+Error: 8192 - Function ereg_replace() is deprecated, %s(74)
string(8) "original"
Arg value 10.5
+Error: 8192 - Function ereg_replace() is deprecated, %s(74)
string(8) "original"
Arg value -10.5
+Error: 8192 - Function ereg_replace() is deprecated, %s(74)
string(8) "original"
Arg value 101234567000
+Error: 8192 - Function ereg_replace() is deprecated, %s(74)
string(8) "original"
Arg value 1.07654321E-9
+Error: 8192 - Function ereg_replace() is deprecated, %s(74)
Error: 2 - ereg_replace(): REG_EMPTY, %s(74)
bool(false)
Arg value 0.5
+Error: 8192 - Function ereg_replace() is deprecated, %s(74)
Error: 2 - ereg_replace(): REG_EMPTY, %s(74)
bool(false)
Arg value Array
+Error: 8192 - Function ereg_replace() is deprecated, %s(74)
Error: 2 - ereg_replace(): REG_EMPTY, %s(74)
bool(false)
Arg value Array
+Error: 8192 - Function ereg_replace() is deprecated, %s(74)
string(8) "original"
Arg value Array
+Error: 8192 - Function ereg_replace() is deprecated, %s(74)
string(8) "original"
Arg value Array
+Error: 8192 - Function ereg_replace() is deprecated, %s(74)
string(8) "original"
Arg value Array
+Error: 8192 - Function ereg_replace() is deprecated, %s(74)
string(8) "original"
Arg value
+Error: 8192 - Function ereg_replace() is deprecated, %s(74)
Error: 2 - ereg_replace(): REG_EMPTY, %s(74)
bool(false)
Arg value
+Error: 8192 - Function ereg_replace() is deprecated, %s(74)
Error: 2 - ereg_replace(): REG_EMPTY, %s(74)
bool(false)
Arg value 1
+Error: 8192 - Function ereg_replace() is deprecated, %s(74)
string(8) "original"
Arg value
+Error: 8192 - Function ereg_replace() is deprecated, %s(74)
Error: 2 - ereg_replace(): REG_EMPTY, %s(74)
bool(false)
Arg value 1
+Error: 8192 - Function ereg_replace() is deprecated, %s(74)
string(8) "original"
Arg value
+Error: 8192 - Function ereg_replace() is deprecated, %s(74)
Error: 2 - ereg_replace(): REG_EMPTY, %s(74)
bool(false)
Arg value
+Error: 8192 - Function ereg_replace() is deprecated, %s(74)
Error: 2 - ereg_replace(): REG_EMPTY, %s(74)
bool(false)
Arg value
+Error: 8192 - Function ereg_replace() is deprecated, %s(74)
Error: 2 - ereg_replace(): REG_EMPTY, %s(74)
bool(false)
Error: 4096 - Object of class stdClass could not be converted to string, %s(73)
Arg value
+Error: 8192 - Function ereg_replace() is deprecated, %s(74)
Error: 8 - Object of class stdClass could not be converted to int, %s(74)
string(8) "original"
Arg value
+Error: 8192 - Function ereg_replace() is deprecated, %s(74)
Error: 2 - ereg_replace(): REG_EMPTY, %s(74)
bool(false)
Arg value
+Error: 8192 - Function ereg_replace() is deprecated, %s(74)
Error: 2 - ereg_replace(): REG_EMPTY, %s(74)
bool(false)
-Done
\ No newline at end of file
+Done
Error: 8 - Undefined variable: unset_var, %s(67)
Arg value 0
+Error: 8192 - Function ereg_replace() is deprecated, %s(74)
string(5) "ho%21"
Arg value 1
+Error: 8192 - Function ereg_replace() is deprecated, %s(74)
string(8) "h%01o%21"
Arg value 12345
+Error: 8192 - Function ereg_replace() is deprecated, %s(74)
string(6) "h9o%21"
Arg value -2345
+Error: 8192 - Function ereg_replace() is deprecated, %s(74)
string(8) "h%D7o%21"
Arg value 10.5
+Error: 8192 - Function ereg_replace() is deprecated, %s(74)
string(8) "h%0Ao%21"
Arg value -10.5
+Error: 8192 - Function ereg_replace() is deprecated, %s(74)
string(8) "h%F6o%21"
Arg value 101234567000
-string(%d) "h%so%21"
+Error: 8192 - Function ereg_replace() is deprecated, %s(74)
+string(8) "h%FFo%21"
Arg value 1.07654321E-9
+Error: 8192 - Function ereg_replace() is deprecated, %s(74)
string(5) "ho%21"
Arg value 0.5
+Error: 8192 - Function ereg_replace() is deprecated, %s(74)
string(5) "ho%21"
Arg value Array
+Error: 8192 - Function ereg_replace() is deprecated, %s(74)
string(5) "ho%21"
Arg value Array
+Error: 8192 - Function ereg_replace() is deprecated, %s(74)
string(8) "h%01o%21"
Arg value Array
+Error: 8192 - Function ereg_replace() is deprecated, %s(74)
string(8) "h%01o%21"
Arg value Array
+Error: 8192 - Function ereg_replace() is deprecated, %s(74)
string(8) "h%01o%21"
Arg value Array
+Error: 8192 - Function ereg_replace() is deprecated, %s(74)
string(8) "h%01o%21"
Arg value
+Error: 8192 - Function ereg_replace() is deprecated, %s(74)
string(5) "ho%21"
Arg value
+Error: 8192 - Function ereg_replace() is deprecated, %s(74)
string(5) "ho%21"
Arg value 1
+Error: 8192 - Function ereg_replace() is deprecated, %s(74)
string(8) "h%01o%21"
Arg value
+Error: 8192 - Function ereg_replace() is deprecated, %s(74)
string(5) "ho%21"
Arg value 1
+Error: 8192 - Function ereg_replace() is deprecated, %s(74)
string(8) "h%01o%21"
Arg value
+Error: 8192 - Function ereg_replace() is deprecated, %s(74)
string(5) "ho%21"
Arg value
+Error: 8192 - Function ereg_replace() is deprecated, %s(74)
string(5) "ho%21"
Arg value
+Error: 8192 - Function ereg_replace() is deprecated, %s(74)
string(5) "ho%21"
Error: 4096 - Object of class stdClass could not be converted to string, %s(73)
Arg value
+Error: 8192 - Function ereg_replace() is deprecated, %s(74)
Error: 8 - Object of class stdClass could not be converted to int, %s(74)
string(8) "h%01o%21"
Arg value
+Error: 8192 - Function ereg_replace() is deprecated, %s(74)
string(5) "ho%21"
Arg value
+Error: 8192 - Function ereg_replace() is deprecated, %s(74)
string(5) "ho%21"
-Done
\ No newline at end of file
+Done
Error: 8 - Undefined variable: unset_var, %s(67)
Arg value 0
+Error: 8192 - Function ereg_replace() is deprecated, %s(74)
string(1) "0"
Arg value 1
+Error: 8192 - Function ereg_replace() is deprecated, %s(74)
string(9) "new value"
Arg value 12345
+Error: 8192 - Function ereg_replace() is deprecated, %s(74)
string(13) "new value2345"
Arg value -2345
+Error: 8192 - Function ereg_replace() is deprecated, %s(74)
string(5) "-2345"
Arg value 10.5
+Error: 8192 - Function ereg_replace() is deprecated, %s(74)
string(12) "new value0.5"
Arg value -10.5
+Error: 8192 - Function ereg_replace() is deprecated, %s(74)
string(13) "-new value0.5"
Arg value 101234567000
+Error: 8192 - Function ereg_replace() is deprecated, %s(74)
string(28) "new value0new value234567000"
Arg value 1.07654321E-9
+Error: 8192 - Function ereg_replace() is deprecated, %s(74)
string(29) "new value.0765432new valueE-9"
Arg value 0.5
+Error: 8192 - Function ereg_replace() is deprecated, %s(74)
string(3) "0.5"
Arg value Array
+Error: 8192 - Function ereg_replace() is deprecated, %s(74)
Error: 2 - ereg_replace() expects parameter 3 to be string, array given, %s(74)
NULL
Arg value Array
+Error: 8192 - Function ereg_replace() is deprecated, %s(74)
Error: 2 - ereg_replace() expects parameter 3 to be string, array given, %s(74)
NULL
Arg value Array
+Error: 8192 - Function ereg_replace() is deprecated, %s(74)
Error: 2 - ereg_replace() expects parameter 3 to be string, array given, %s(74)
NULL
Arg value Array
+Error: 8192 - Function ereg_replace() is deprecated, %s(74)
Error: 2 - ereg_replace() expects parameter 3 to be string, array given, %s(74)
NULL
Arg value Array
+Error: 8192 - Function ereg_replace() is deprecated, %s(74)
Error: 2 - ereg_replace() expects parameter 3 to be string, array given, %s(74)
NULL
Arg value
+Error: 8192 - Function ereg_replace() is deprecated, %s(74)
string(0) ""
Arg value
+Error: 8192 - Function ereg_replace() is deprecated, %s(74)
string(0) ""
Arg value 1
+Error: 8192 - Function ereg_replace() is deprecated, %s(74)
string(9) "new value"
Arg value
+Error: 8192 - Function ereg_replace() is deprecated, %s(74)
string(0) ""
Arg value 1
+Error: 8192 - Function ereg_replace() is deprecated, %s(74)
string(9) "new value"
Arg value
+Error: 8192 - Function ereg_replace() is deprecated, %s(74)
string(0) ""
Arg value
+Error: 8192 - Function ereg_replace() is deprecated, %s(74)
string(0) ""
Arg value
+Error: 8192 - Function ereg_replace() is deprecated, %s(74)
string(0) ""
Error: 4096 - Object of class stdClass could not be converted to string, %s(73)
Arg value
+Error: 8192 - Function ereg_replace() is deprecated, %s(74)
Error: 2 - ereg_replace() expects parameter 3 to be string, object given, %s(74)
NULL
Arg value
+Error: 8192 - Function ereg_replace() is deprecated, %s(74)
string(0) ""
Arg value
+Error: 8192 - Function ereg_replace() is deprecated, %s(74)
string(0) ""
Done
Error: 8 - Undefined variable: unset_var, %s(68)
Arg value 0
+Error: 8192 - Function ereg() is deprecated, %s(75)
bool(false)
Arg value 1
+Error: 8192 - Function ereg() is deprecated, %s(75)
int(1)
Arg value 12345
+Error: 8192 - Function ereg() is deprecated, %s(75)
bool(false)
Arg value -2345
+Error: 8192 - Function ereg() is deprecated, %s(75)
bool(false)
Arg value 10.5
+Error: 8192 - Function ereg() is deprecated, %s(75)
bool(false)
Arg value -10.5
+Error: 8192 - Function ereg() is deprecated, %s(75)
bool(false)
Arg value 101234567000
+Error: 8192 - Function ereg() is deprecated, %s(75)
bool(false)
Arg value 1.07654321E-9
+Error: 8192 - Function ereg() is deprecated, %s(75)
bool(false)
Arg value 0.5
+Error: 8192 - Function ereg() is deprecated, %s(75)
bool(false)
Arg value Array
+Error: 8192 - Function ereg() is deprecated, %s(75)
Error: 8 - Array to string conversion, %s(75)
bool(false)
Arg value Array
+Error: 8192 - Function ereg() is deprecated, %s(75)
Error: 8 - Array to string conversion, %s(75)
bool(false)
Arg value Array
+Error: 8192 - Function ereg() is deprecated, %s(75)
Error: 8 - Array to string conversion, %s(75)
bool(false)
Arg value Array
+Error: 8192 - Function ereg() is deprecated, %s(75)
Error: 8 - Array to string conversion, %s(75)
bool(false)
Arg value Array
+Error: 8192 - Function ereg() is deprecated, %s(75)
Error: 8 - Array to string conversion, %s(75)
bool(false)
Arg value
+Error: 8192 - Function ereg() is deprecated, %s(75)
Error: 2 - ereg(): REG_EMPTY, %s(75)
bool(false)
Arg value
+Error: 8192 - Function ereg() is deprecated, %s(75)
Error: 2 - ereg(): REG_EMPTY, %s(75)
bool(false)
Arg value 1
+Error: 8192 - Function ereg() is deprecated, %s(75)
int(1)
Arg value
+Error: 8192 - Function ereg() is deprecated, %s(75)
Error: 2 - ereg(): REG_EMPTY, %s(75)
bool(false)
Arg value 1
+Error: 8192 - Function ereg() is deprecated, %s(75)
int(1)
Arg value
+Error: 8192 - Function ereg() is deprecated, %s(75)
Error: 2 - ereg(): REG_EMPTY, %s(75)
bool(false)
Arg value
+Error: 8192 - Function ereg() is deprecated, %s(75)
Error: 2 - ereg(): REG_EMPTY, %s(75)
bool(false)
Arg value
+Error: 8192 - Function ereg() is deprecated, %s(75)
Error: 2 - ereg(): REG_EMPTY, %s(75)
bool(false)
Error: 4096 - Object of class stdClass could not be converted to string, %s(74)
Arg value
+Error: 8192 - Function ereg() is deprecated, %s(75)
Error: 4096 - Object of class stdClass could not be converted to string, %s(75)
Error: 8 - Object of class stdClass to string conversion, %s(75)
bool(false)
Arg value
+Error: 8192 - Function ereg() is deprecated, %s(75)
Error: 2 - ereg(): REG_EMPTY, %s(75)
bool(false)
Arg value
+Error: 8192 - Function ereg() is deprecated, %s(75)
Error: 2 - ereg(): REG_EMPTY, %s(75)
bool(false)
-Done
\ No newline at end of file
+Done
Error: 8 - Undefined variable: unset_var, %s(67)
Arg value 0
+Error: 8192 - Function ereg() is deprecated, %s(74)
bool(false)
Arg value 1
+Error: 8192 - Function ereg() is deprecated, %s(74)
int(1)
Arg value 12345
+Error: 8192 - Function ereg() is deprecated, %s(74)
int(1)
Arg value -2345
+Error: 8192 - Function ereg() is deprecated, %s(74)
bool(false)
Arg value 10.5
+Error: 8192 - Function ereg() is deprecated, %s(74)
int(1)
Arg value -10.5
+Error: 8192 - Function ereg() is deprecated, %s(74)
int(1)
Arg value 101234567000
+Error: 8192 - Function ereg() is deprecated, %s(74)
int(1)
Arg value 1.07654321E-9
+Error: 8192 - Function ereg() is deprecated, %s(74)
int(1)
Arg value 0.5
+Error: 8192 - Function ereg() is deprecated, %s(74)
bool(false)
Arg value Array
+Error: 8192 - Function ereg() is deprecated, %s(74)
Error: 2 - ereg() expects parameter 2 to be string, array given, %s(74)
NULL
Arg value Array
+Error: 8192 - Function ereg() is deprecated, %s(74)
Error: 2 - ereg() expects parameter 2 to be string, array given, %s(74)
NULL
Arg value Array
+Error: 8192 - Function ereg() is deprecated, %s(74)
Error: 2 - ereg() expects parameter 2 to be string, array given, %s(74)
NULL
Arg value Array
+Error: 8192 - Function ereg() is deprecated, %s(74)
Error: 2 - ereg() expects parameter 2 to be string, array given, %s(74)
NULL
Arg value Array
+Error: 8192 - Function ereg() is deprecated, %s(74)
Error: 2 - ereg() expects parameter 2 to be string, array given, %s(74)
NULL
Arg value
+Error: 8192 - Function ereg() is deprecated, %s(74)
bool(false)
Arg value
+Error: 8192 - Function ereg() is deprecated, %s(74)
bool(false)
Arg value 1
+Error: 8192 - Function ereg() is deprecated, %s(74)
int(1)
Arg value
+Error: 8192 - Function ereg() is deprecated, %s(74)
bool(false)
Arg value 1
+Error: 8192 - Function ereg() is deprecated, %s(74)
int(1)
Arg value
+Error: 8192 - Function ereg() is deprecated, %s(74)
bool(false)
Arg value
+Error: 8192 - Function ereg() is deprecated, %s(74)
bool(false)
Arg value
+Error: 8192 - Function ereg() is deprecated, %s(74)
bool(false)
Error: 4096 - Object of class stdClass could not be converted to string, %s(73)
Arg value
+Error: 8192 - Function ereg() is deprecated, %s(74)
Error: 2 - ereg() expects parameter 2 to be string, object given, %s(74)
NULL
Arg value
+Error: 8192 - Function ereg() is deprecated, %s(74)
bool(false)
Arg value
+Error: 8192 - Function ereg() is deprecated, %s(74)
bool(false)
Done
Error: 8 - Undefined variable: unset_var, %s(64)
Arg value 0
+Error: 8192 - Function ereg() is deprecated, %s(71)
int(6)
array(2) {
[0]=>
}
Arg value 1
+Error: 8192 - Function ereg() is deprecated, %s(71)
int(6)
array(2) {
[0]=>
}
Arg value 12345
+Error: 8192 - Function ereg() is deprecated, %s(71)
int(6)
array(2) {
[0]=>
}
Arg value -2345
+Error: 8192 - Function ereg() is deprecated, %s(71)
int(6)
array(2) {
[0]=>
}
Arg value 10.5
+Error: 8192 - Function ereg() is deprecated, %s(71)
int(6)
array(2) {
[0]=>
}
Arg value -10.5
+Error: 8192 - Function ereg() is deprecated, %s(71)
int(6)
array(2) {
[0]=>
}
Arg value 101234567000
+Error: 8192 - Function ereg() is deprecated, %s(71)
int(6)
array(2) {
[0]=>
}
Arg value 1.07654321E-9
+Error: 8192 - Function ereg() is deprecated, %s(71)
int(6)
array(2) {
[0]=>
}
Arg value 0.5
+Error: 8192 - Function ereg() is deprecated, %s(71)
int(6)
array(2) {
[0]=>
}
Arg value
+Error: 8192 - Function ereg() is deprecated, %s(71)
int(6)
array(2) {
[0]=>
}
Arg value
+Error: 8192 - Function ereg() is deprecated, %s(71)
int(6)
array(2) {
[0]=>
}
Arg value 1
+Error: 8192 - Function ereg() is deprecated, %s(71)
int(6)
array(2) {
[0]=>
}
Arg value
+Error: 8192 - Function ereg() is deprecated, %s(71)
int(6)
array(2) {
[0]=>
}
Arg value 1
+Error: 8192 - Function ereg() is deprecated, %s(71)
int(6)
array(2) {
[0]=>
}
Arg value
+Error: 8192 - Function ereg() is deprecated, %s(71)
int(6)
array(2) {
[0]=>
}
Arg value
+Error: 8192 - Function ereg() is deprecated, %s(71)
int(6)
array(2) {
[0]=>
}
Arg value
+Error: 8192 - Function ereg() is deprecated, %s(71)
int(6)
array(2) {
[0]=>
}
Arg value string
+Error: 8192 - Function ereg() is deprecated, %s(71)
int(6)
array(2) {
[0]=>
}
Arg value string
+Error: 8192 - Function ereg() is deprecated, %s(71)
int(6)
array(2) {
[0]=>
Error: 4096 - Object of class stdClass could not be converted to string, %s(70)
Arg value
+Error: 8192 - Function ereg() is deprecated, %s(71)
int(6)
array(2) {
[0]=>
}
Arg value
+Error: 8192 - Function ereg() is deprecated, %s(71)
int(6)
array(2) {
[0]=>
}
Arg value
+Error: 8192 - Function ereg() is deprecated, %s(71)
int(6)
array(2) {
[0]=>
[1]=>
string(2) "el"
}
-Done
\ No newline at end of file
+Done
echo "Done";
?>
--EXPECTF--
+Strict Standards: Only variables should be passed by reference in %s on line %d
-Strict Standards: Only variables should be passed by reference in %s on line 8
+Deprecated: Function ereg() is deprecated in %s on line %d
int(2)
-Done
\ No newline at end of file
+Done
?>
--EXPECTF--
*** Testing eregi() : basic functionality ***
+
+Deprecated: Function eregi() is deprecated in %s on line %d
int(5)
array(1) {
[0]=>
string(5) "WORDS"
}
+
+Deprecated: Function eregi() is deprecated in %s on line %d
int(10)
array(1) {
[0]=>
string(10) "MIxED CaSe"
}
-Done
\ No newline at end of file
+Done
--EXPECTF--
*** Testing eregi() : basic functionality ***
--> Pattern: '..(a|b|c)(a|b|c)..'; string: '--- ab ---'
+
+Deprecated: Function eregi() is deprecated in %s on line %d
int(6)
array(3) {
[0]=>
string(1) "b"
}
--> Pattern: '()'; string: ''
+
+Deprecated: Function eregi() is deprecated in %s on line %d
int(1)
array(2) {
[0]=>
bool(false)
}
--> Pattern: '()'; string: 'abcdef'
+
+Deprecated: Function eregi() is deprecated in %s on line %d
int(1)
array(2) {
[0]=>
bool(false)
}
--> Pattern: '[x]|[^x]'; string: 'abcdef'
+
+Deprecated: Function eregi() is deprecated in %s on line %d
int(1)
array(1) {
[0]=>
string(1) "a"
}
--> Pattern: '(a{1})(a{1,}) (b{1,3}) (c+) (d?ddd|e)'; string: '--- aaa bbb ccc ddd ---'
+
+Deprecated: Function eregi() is deprecated in %s on line %d
int(15)
array(6) {
[0]=>
string(3) "ddd"
}
--> Pattern: '\\\`\^\.\[\$\(\)\|\*\+\?\{\''; string: '\`^.[$()|*+?{''
+
+Deprecated: Function eregi() is deprecated in %s on line %d
int(14)
array(1) {
[0]=>
string(14) "\`^.[$()|*+?{'"
}
--> Pattern: '\a'; string: 'a'
+
+Deprecated: Function eregi() is deprecated in %s on line %d
int(1)
array(1) {
[0]=>
string(1) "a"
}
--> Pattern: '[0-9][^0-9]'; string: '2a'
+
+Deprecated: Function eregi() is deprecated in %s on line %d
int(2)
array(1) {
[0]=>
string(2) "2a"
}
--> Pattern: '^[[:alnum:]]{62,62}$'; string: '0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ'
+
+Deprecated: Function eregi() is deprecated in %s on line %d
int(62)
array(1) {
[0]=>
string(62) "0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ"
}
--> Pattern: '^[[:digit:]]{5}'; string: '0123456789'
+
+Deprecated: Function eregi() is deprecated in %s on line %d
int(5)
array(1) {
[0]=>
string(5) "01234"
}
--> Pattern: '[[:digit:]]{5}$'; string: '0123456789'
+
+Deprecated: Function eregi() is deprecated in %s on line %d
int(5)
array(1) {
[0]=>
}
--> Pattern: '[[:blank:]]{1,10}'; string: '
'
+
+Deprecated: Function eregi() is deprecated in %s on line %d
int(2)
array(1) {
[0]=>
string(2) " "
}
--> Pattern: '[[:print:]]{3}'; string: ' a '
+
+Deprecated: Function eregi() is deprecated in %s on line %d
int(3)
array(1) {
[0]=>
string(3) " a "
}
-Done
\ No newline at end of file
+Done
--EXPECTF--
*** Testing eregi() : basic functionality ***
--> Pattern: '..(a|b|c)(a|b|c)..'; string: '--- ab ---'
+
+Deprecated: Function eregi() is deprecated in %s on line %d
int(1)
--> Pattern: '()'; string: ''
+
+Deprecated: Function eregi() is deprecated in %s on line %d
int(1)
--> Pattern: '()'; string: 'abcdef'
+
+Deprecated: Function eregi() is deprecated in %s on line %d
int(1)
--> Pattern: '[x]|[^x]'; string: 'abcdef'
+
+Deprecated: Function eregi() is deprecated in %s on line %d
int(1)
--> Pattern: '(a{1})(a{1,}) (b{1,3}) (c+) (d?ddd|e)'; string: '--- aaa bbb ccc ddd ---'
+
+Deprecated: Function eregi() is deprecated in %s on line %d
int(1)
--> Pattern: '\\\`\^\.\[\$\(\)\|\*\+\?\{\''; string: '\`^.[$()|*+?{''
+
+Deprecated: Function eregi() is deprecated in %s on line %d
int(1)
--> Pattern: '\a'; string: 'a'
+
+Deprecated: Function eregi() is deprecated in %s on line %d
int(1)
--> Pattern: '[0-9][^0-9]'; string: '2a'
+
+Deprecated: Function eregi() is deprecated in %s on line %d
int(1)
--> Pattern: '^[[:alnum:]]{62,62}$'; string: '0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ'
+
+Deprecated: Function eregi() is deprecated in %s on line %d
int(1)
--> Pattern: '^[[:digit:]]{5}'; string: '0123456789'
+
+Deprecated: Function eregi() is deprecated in %s on line %d
int(1)
--> Pattern: '[[:digit:]]{5}$'; string: '0123456789'
+
+Deprecated: Function eregi() is deprecated in %s on line %d
int(1)
--> Pattern: '[[:blank:]]{1,10}'; string: '
'
+
+Deprecated: Function eregi() is deprecated in %s on line %d
int(1)
--> Pattern: '[[:print:]]{3}'; string: ' a '
+
+Deprecated: Function eregi() is deprecated in %s on line %d
int(1)
-Done
\ No newline at end of file
+Done
echo "Done";
?>
--EXPECTF--
+Deprecated: Function eregi() is deprecated in %s on line %d
int(1)
+
+Deprecated: Function eregi() is deprecated in %s on line %d
int(2048)
int(2049)
-Done
\ No newline at end of file
+Done
echo "Done";
?>
--EXPECTF--
+Deprecated: Function eregi() is deprecated in %s on line %d
bool(false)
+
+Deprecated: Function eregi() is deprecated in %s on line %d
bool(false)
+
+Deprecated: Function eregi() is deprecated in %s on line %d
bool(false)
+
+Deprecated: Function eregi() is deprecated in %s on line %d
bool(false)
+
+Deprecated: Function eregi() is deprecated in %s on line %d
bool(false)
string(8) "original"
-Done
\ No newline at end of file
+Done
-- Testing eregi() function with more than expected no. of arguments --
-Warning: eregi() expects at most 3 parameters, 4 given in %s on line 21
+Deprecated: Function eregi() is deprecated in %s on line %d
+
+Warning: eregi() expects at most 3 parameters, 4 given in %s on line %d
NULL
-- Testing eregi() function with less than expected no. of arguments --
-Warning: eregi() expects at least 2 parameters, 1 given in %s on line 26
+Deprecated: Function eregi() is deprecated in %s on line %d
+
+Warning: eregi() expects at least 2 parameters, 1 given in %s on line %d
NULL
Done
--EXPECTF--
*** Testing eregi() : error conditions ***
-Warning: eregi(): REG_EMPTY in %s on line 16
+Deprecated: Function eregi() is deprecated in %s on line %d
+
+Warning: eregi(): REG_EMPTY in %s on line %d
bool(false)
-Warning: eregi(): REG_EPAREN in %s on line 17
+Deprecated: Function eregi() is deprecated in %s on line %d
+
+Warning: eregi(): REG_EPAREN in %s on line %d
bool(false)
-Warning: eregi(): REG_EBRACK in %s on line 18
+Deprecated: Function eregi() is deprecated in %s on line %d
+
+Warning: eregi(): REG_EBRACK in %s on line %d
bool(false)
-Warning: eregi(): REG_EPAREN in %s on line 19
+Deprecated: Function eregi() is deprecated in %s on line %d
+
+Warning: eregi(): REG_EPAREN in %s on line %d
bool(false)
-Warning: eregi(): REG_BADRPT in %s on line 20
+Deprecated: Function eregi() is deprecated in %s on line %d
+
+Warning: eregi(): REG_BADRPT in %s on line %d
bool(false)
-Warning: eregi(): REG_BADRPT in %s on line 21
+Deprecated: Function eregi() is deprecated in %s on line %d
+
+Warning: eregi(): REG_BADRPT in %s on line %d
bool(false)
-Warning: eregi(): REG_BADRPT in %s on line 22
+Deprecated: Function eregi() is deprecated in %s on line %d
+
+Warning: eregi(): REG_BADRPT in %s on line %d
bool(false)
-Warning: eregi(): REG_BADRPT in %s on line 23
+Deprecated: Function eregi() is deprecated in %s on line %d
+
+Warning: eregi(): REG_BADRPT in %s on line %d
bool(false)
-Warning: eregi(): REG_BADBR in %s on line 24
+Deprecated: Function eregi() is deprecated in %s on line %d
+
+Warning: eregi(): REG_BADBR in %s on line %d
bool(false)
-Warning: eregi(): REG_EMPTY in %s on line 25
+Deprecated: Function eregi() is deprecated in %s on line %d
+
+Warning: eregi(): REG_EMPTY in %s on line %d
bool(false)
-Warning: eregi(): REG_EMPTY in %s on line 26
+Deprecated: Function eregi() is deprecated in %s on line %d
+
+Warning: eregi(): REG_EMPTY in %s on line %d
bool(false)
-Warning: eregi(): REG_BADBR in %s on line 27
+Deprecated: Function eregi() is deprecated in %s on line %d
+
+Warning: eregi(): REG_BADBR in %s on line %d
bool(false)
-Warning: eregi(): REG_ERANGE in %s on line 28
+Deprecated: Function eregi() is deprecated in %s on line %d
+
+Warning: eregi(): REG_ERANGE in %s on line %d
bool(false)
-Warning: eregi(): REG_EESCAPE in %s on line 29
+Deprecated: Function eregi() is deprecated in %s on line %d
+
+Warning: eregi(): REG_EESCAPE in %s on line %d
bool(false)
-Warning: eregi(): REG_ERANGE in %s on line 30
+Deprecated: Function eregi() is deprecated in %s on line %d
+
+Warning: eregi(): REG_ERANGE in %s on line %d
bool(false)
string(8) "original"
-Done
\ No newline at end of file
+Done
string(50) "UPPERCASE WORDS, lowercase words, MIxED CaSe woRdS"
String after...
+
+Deprecated: Function eregi_replace() is deprecated in %s on line %d
string(65) "UPPERCASE_characterS, lowercase_characters, MIxED CaSe_characterS"
-Done
\ No newline at end of file
+Done
--EXPECTF--
*** Testing ereg() : basic functionality ***
--> Pattern: '..(a|b|c)(a|b|c)..'; match: '--- ab ---'
+
+Deprecated: Function eregi_replace() is deprecated in %s on line %d
string(82) "--[this is a replacement]-- this contains some matches --[this is a replacement]--"
--> Pattern: '()'; match: ''
+
+Deprecated: Function eregi_replace() is deprecated in %s on line %d
string(695) "[this is a replacement] [this is a replacement]t[this is a replacement]h[this is a replacement]i[this is a replacement]s[this is a replacement] [this is a replacement]c[this is a replacement]o[this is a replacement]n[this is a replacement]t[this is a replacement]a[this is a replacement]i[this is a replacement]n[this is a replacement]s[this is a replacement] [this is a replacement]s[this is a replacement]o[this is a replacement]m[this is a replacement]e[this is a replacement] [this is a replacement]m[this is a replacement]a[this is a replacement]t[this is a replacement]c[this is a replacement]h[this is a replacement]e[this is a replacement]s[this is a replacement] [this is a replacement]"
--> Pattern: '()'; match: 'abcdef'
+
+Deprecated: Function eregi_replace() is deprecated in %s on line %d
string(983) "[this is a replacement]a[this is a replacement]b[this is a replacement]c[this is a replacement]d[this is a replacement]e[this is a replacement]f[this is a replacement] [this is a replacement]t[this is a replacement]h[this is a replacement]i[this is a replacement]s[this is a replacement] [this is a replacement]c[this is a replacement]o[this is a replacement]n[this is a replacement]t[this is a replacement]a[this is a replacement]i[this is a replacement]n[this is a replacement]s[this is a replacement] [this is a replacement]s[this is a replacement]o[this is a replacement]m[this is a replacement]e[this is a replacement] [this is a replacement]m[this is a replacement]a[this is a replacement]t[this is a replacement]c[this is a replacement]h[this is a replacement]e[this is a replacement]s[this is a replacement] [this is a replacement]a[this is a replacement]b[this is a replacement]c[this is a replacement]d[this is a replacement]e[this is a replacement]f[this is a replacement]"
--> Pattern: '[x]|[^x]'; match: 'abcdef'
+
+Deprecated: Function eregi_replace() is deprecated in %s on line %d
string(920) "[this is a replacement][this is a replacement][this is a replacement][this is a replacement][this is a replacement][this is a replacement][this is a replacement][this is a replacement][this is a replacement][this is a replacement][this is a replacement][this is a replacement][this is a replacement][this is a replacement][this is a replacement][this is a replacement][this is a replacement][this is a replacement][this is a replacement][this is a replacement][this is a replacement][this is a replacement][this is a replacement][this is a replacement][this is a replacement][this is a replacement][this is a replacement][this is a replacement][this is a replacement][this is a replacement][this is a replacement][this is a replacement][this is a replacement][this is a replacement][this is a replacement][this is a replacement][this is a replacement][this is a replacement][this is a replacement][this is a replacement]"
--> Pattern: '(a{1})(a{1,}) (b{1,3}) (c+) (d?ddd|e)'; match: '--- aaa bbb ccc ddd ---'
+
+Deprecated: Function eregi_replace() is deprecated in %s on line %d
string(90) "--- [this is a replacement] --- this contains some matches --- [this is a replacement] ---"
--> Pattern: '\\\`\^\.\[\$\(\)\|\*\+\?\{\''; match: '\`^.[$()|*+?{''
+
+Deprecated: Function eregi_replace() is deprecated in %s on line %d
string(74) "[this is a replacement] this contains some matches [this is a replacement]"
--> Pattern: '\a'; match: 'a'
+
+Deprecated: Function eregi_replace() is deprecated in %s on line %d
string(118) "[this is a replacement] this cont[this is a replacement]ins some m[this is a replacement]tches [this is a replacement]"
--> Pattern: '[0-9][^0-9]'; match: '2a'
+
+Deprecated: Function eregi_replace() is deprecated in %s on line %d
string(74) "[this is a replacement] this contains some matches [this is a replacement]"
--> Pattern: '^[[:alnum:]]{62,62}$'; match: '0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ'
+
+Deprecated: Function eregi_replace() is deprecated in %s on line %d
string(152) "0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ this contains some matches 0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ"
--> Pattern: '^[[:digit:]]{5}'; match: '0123456789'
+
+Deprecated: Function eregi_replace() is deprecated in %s on line %d
string(66) "[this is a replacement]56789 this contains some matches 0123456789"
--> Pattern: '[[:digit:]]{5}$'; match: '0123456789'
+
+Deprecated: Function eregi_replace() is deprecated in %s on line %d
string(66) "0123456789 this contains some matches 01234[this is a replacement]"
--> Pattern: '[[:blank:]]{1,10}'; match: '
'
+
+Deprecated: Function eregi_replace() is deprecated in %s on line %d
string(163) "
[this is a replacement]this[this is a replacement]contains[this is a replacement]some[this is a replacement]matches[this is a replacement]
[this is a replacement]"
--> Pattern: '[[:print:]]{3}'; match: ' a '
+
+Deprecated: Function eregi_replace() is deprecated in %s on line %d
string(254) "[this is a replacement][this is a replacement][this is a replacement][this is a replacement][this is a replacement][this is a replacement][this is a replacement][this is a replacement][this is a replacement][this is a replacement][this is a replacement] "
-Done
\ No newline at end of file
+Done
echo "Done";
?>
--EXPECTF--
+Deprecated: Function eregi_replace() is deprecated in %s on line %d
string(1) "0"
+
+Deprecated: Function eregi_replace() is deprecated in %s on line %d
string(3) "aaa"
+
+Deprecated: Function eregi_replace() is deprecated in %s on line %d
string(2) "ba"
+
+Deprecated: Function eregi_replace() is deprecated in %s on line %d
string(2) "ba"
+
+Deprecated: Function eregi_replace() is deprecated in %s on line %d
string(1) "x"
-Done
\ No newline at end of file
+Done
-- Testing eregi_replace() function with more than expected no. of arguments --
-Warning: eregi_replace() expects exactly 3 parameters, 4 given in %s on line 17
+Deprecated: Function eregi_replace() is deprecated in %s on line %d
+
+Warning: eregi_replace() expects exactly 3 parameters, 4 given in %s on line %d
NULL
-- Testing eregi_replace() function with less than expected no. of arguments --
-Warning: eregi_replace() expects exactly 3 parameters, 2 given in %s on line 23
+Deprecated: Function eregi_replace() is deprecated in %s on line %d
+
+Warning: eregi_replace() expects exactly 3 parameters, 2 given in %s on line %d
NULL
Done
--EXPECTF--
*** Testing eregi_replace() : bad REs ***
-Warning: eregi_replace(): REG_EMPTY in %s on line 9
+Deprecated: Function eregi_replace() is deprecated in %s on line %d
+
+Warning: eregi_replace(): REG_EMPTY in %s on line %d
bool(false)
-Warning: eregi_replace(): REG_EPAREN in %s on line 10
+Deprecated: Function eregi_replace() is deprecated in %s on line %d
+
+Warning: eregi_replace(): REG_EPAREN in %s on line %d
bool(false)
-Warning: eregi_replace(): REG_EBRACK in %s on line 11
+Deprecated: Function eregi_replace() is deprecated in %s on line %d
+
+Warning: eregi_replace(): REG_EBRACK in %s on line %d
bool(false)
-Warning: eregi_replace(): REG_EPAREN in %s on line 12
+Deprecated: Function eregi_replace() is deprecated in %s on line %d
+
+Warning: eregi_replace(): REG_EPAREN in %s on line %d
bool(false)
-Warning: eregi_replace(): REG_BADRPT in %s on line 13
+Deprecated: Function eregi_replace() is deprecated in %s on line %d
+
+Warning: eregi_replace(): REG_BADRPT in %s on line %d
bool(false)
-Warning: eregi_replace(): REG_BADRPT in %s on line 14
+Deprecated: Function eregi_replace() is deprecated in %s on line %d
+
+Warning: eregi_replace(): REG_BADRPT in %s on line %d
bool(false)
-Warning: eregi_replace(): REG_BADRPT in %s on line 15
+Deprecated: Function eregi_replace() is deprecated in %s on line %d
+
+Warning: eregi_replace(): REG_BADRPT in %s on line %d
bool(false)
-Warning: eregi_replace(): REG_BADRPT in %s on line 16
+Deprecated: Function eregi_replace() is deprecated in %s on line %d
+
+Warning: eregi_replace(): REG_BADRPT in %s on line %d
bool(false)
-Warning: eregi_replace(): REG_BADBR in %s on line 17
+Deprecated: Function eregi_replace() is deprecated in %s on line %d
+
+Warning: eregi_replace(): REG_BADBR in %s on line %d
bool(false)
-Warning: eregi_replace(): REG_EMPTY in %s on line 18
+Deprecated: Function eregi_replace() is deprecated in %s on line %d
+
+Warning: eregi_replace(): REG_EMPTY in %s on line %d
bool(false)
-Warning: eregi_replace(): REG_EMPTY in %s on line 19
+Deprecated: Function eregi_replace() is deprecated in %s on line %d
+
+Warning: eregi_replace(): REG_EMPTY in %s on line %d
bool(false)
-Warning: eregi_replace(): REG_BADBR in %s on line 20
+Deprecated: Function eregi_replace() is deprecated in %s on line %d
+
+Warning: eregi_replace(): REG_BADBR in %s on line %d
bool(false)
-Warning: eregi_replace(): REG_ERANGE in %s on line 21
+Deprecated: Function eregi_replace() is deprecated in %s on line %d
+
+Warning: eregi_replace(): REG_ERANGE in %s on line %d
bool(false)
-Warning: eregi_replace(): REG_EESCAPE in %s on line 22
+Deprecated: Function eregi_replace() is deprecated in %s on line %d
+
+Warning: eregi_replace(): REG_EESCAPE in %s on line %d
bool(false)
-Warning: eregi_replace(): REG_ERANGE in %s on line 23
+Deprecated: Function eregi_replace() is deprecated in %s on line %d
+
+Warning: eregi_replace(): REG_ERANGE in %s on line %d
bool(false)
-Done
\ No newline at end of file
+Done
Error: 8 - Undefined variable: unset_var, %s(67)
Arg value 0
+Error: 8192 - Function eregi_replace() is deprecated, %s(74)
Error: 2 - eregi_replace(): REG_EMPTY, %s(74)
bool(false)
Arg value 1
+Error: 8192 - Function eregi_replace() is deprecated, %s(74)
string(8) "original"
Arg value 12345
+Error: 8192 - Function eregi_replace() is deprecated, %s(74)
string(8) "original"
Arg value -2345
+Error: 8192 - Function eregi_replace() is deprecated, %s(74)
string(8) "original"
Arg value 10.5
+Error: 8192 - Function eregi_replace() is deprecated, %s(74)
string(8) "original"
Arg value -10.5
+Error: 8192 - Function eregi_replace() is deprecated, %s(74)
string(8) "original"
Arg value 101234567000
+Error: 8192 - Function eregi_replace() is deprecated, %s(74)
string(8) "original"
Arg value 1.07654321E-9
+Error: 8192 - Function eregi_replace() is deprecated, %s(74)
Error: 2 - eregi_replace(): REG_EMPTY, %s(74)
bool(false)
Arg value 0.5
+Error: 8192 - Function eregi_replace() is deprecated, %s(74)
Error: 2 - eregi_replace(): REG_EMPTY, %s(74)
bool(false)
Arg value Array
+Error: 8192 - Function eregi_replace() is deprecated, %s(74)
Error: 2 - eregi_replace(): REG_EMPTY, %s(74)
bool(false)
Arg value Array
+Error: 8192 - Function eregi_replace() is deprecated, %s(74)
string(8) "original"
Arg value Array
+Error: 8192 - Function eregi_replace() is deprecated, %s(74)
string(8) "original"
Arg value Array
+Error: 8192 - Function eregi_replace() is deprecated, %s(74)
string(8) "original"
Arg value Array
+Error: 8192 - Function eregi_replace() is deprecated, %s(74)
string(8) "original"
Arg value
+Error: 8192 - Function eregi_replace() is deprecated, %s(74)
Error: 2 - eregi_replace(): REG_EMPTY, %s(74)
bool(false)
Arg value
+Error: 8192 - Function eregi_replace() is deprecated, %s(74)
Error: 2 - eregi_replace(): REG_EMPTY, %s(74)
bool(false)
Arg value 1
+Error: 8192 - Function eregi_replace() is deprecated, %s(74)
string(8) "original"
Arg value
+Error: 8192 - Function eregi_replace() is deprecated, %s(74)
Error: 2 - eregi_replace(): REG_EMPTY, %s(74)
bool(false)
Arg value 1
+Error: 8192 - Function eregi_replace() is deprecated, %s(74)
string(8) "original"
Arg value
+Error: 8192 - Function eregi_replace() is deprecated, %s(74)
Error: 2 - eregi_replace(): REG_EMPTY, %s(74)
bool(false)
Arg value
+Error: 8192 - Function eregi_replace() is deprecated, %s(74)
Error: 2 - eregi_replace(): REG_EMPTY, %s(74)
bool(false)
Arg value
+Error: 8192 - Function eregi_replace() is deprecated, %s(74)
Error: 2 - eregi_replace(): REG_EMPTY, %s(74)
bool(false)
Error: 4096 - Object of class stdClass could not be converted to string, %s(73)
Arg value
+Error: 8192 - Function eregi_replace() is deprecated, %s(74)
Error: 8 - Object of class stdClass could not be converted to int, %s(74)
string(8) "original"
Arg value
+Error: 8192 - Function eregi_replace() is deprecated, %s(74)
Error: 2 - eregi_replace(): REG_EMPTY, %s(74)
bool(false)
Arg value
+Error: 8192 - Function eregi_replace() is deprecated, %s(74)
Error: 2 - eregi_replace(): REG_EMPTY, %s(74)
bool(false)
-Done
\ No newline at end of file
+Done
Error: 8 - Undefined variable: unset_var, %s(67)
Arg value 0
+Error: 8192 - Function eregi_replace() is deprecated, %s(74)
string(5) "ho%21"
Arg value 1
+Error: 8192 - Function eregi_replace() is deprecated, %s(74)
string(8) "h%01o%21"
Arg value 12345
+Error: 8192 - Function eregi_replace() is deprecated, %s(74)
string(6) "h9o%21"
Arg value -2345
+Error: 8192 - Function eregi_replace() is deprecated, %s(74)
string(8) "h%D7o%21"
Arg value 10.5
+Error: 8192 - Function eregi_replace() is deprecated, %s(74)
string(8) "h%0Ao%21"
Arg value -10.5
+Error: 8192 - Function eregi_replace() is deprecated, %s(74)
string(8) "h%F6o%21"
Arg value 101234567000
-string(%d) "h%so%21"
+Error: 8192 - Function eregi_replace() is deprecated, %s(74)
+string(8) "h%FFo%21"
Arg value 1.07654321E-9
+Error: 8192 - Function eregi_replace() is deprecated, %s(74)
string(5) "ho%21"
Arg value 0.5
+Error: 8192 - Function eregi_replace() is deprecated, %s(74)
string(5) "ho%21"
Arg value Array
+Error: 8192 - Function eregi_replace() is deprecated, %s(74)
string(5) "ho%21"
Arg value Array
+Error: 8192 - Function eregi_replace() is deprecated, %s(74)
string(8) "h%01o%21"
Arg value Array
+Error: 8192 - Function eregi_replace() is deprecated, %s(74)
string(8) "h%01o%21"
Arg value Array
+Error: 8192 - Function eregi_replace() is deprecated, %s(74)
string(8) "h%01o%21"
Arg value Array
+Error: 8192 - Function eregi_replace() is deprecated, %s(74)
string(8) "h%01o%21"
Arg value
+Error: 8192 - Function eregi_replace() is deprecated, %s(74)
string(5) "ho%21"
Arg value
+Error: 8192 - Function eregi_replace() is deprecated, %s(74)
string(5) "ho%21"
Arg value 1
+Error: 8192 - Function eregi_replace() is deprecated, %s(74)
string(8) "h%01o%21"
Arg value
+Error: 8192 - Function eregi_replace() is deprecated, %s(74)
string(5) "ho%21"
Arg value 1
+Error: 8192 - Function eregi_replace() is deprecated, %s(74)
string(8) "h%01o%21"
Arg value
+Error: 8192 - Function eregi_replace() is deprecated, %s(74)
string(5) "ho%21"
Arg value
+Error: 8192 - Function eregi_replace() is deprecated, %s(74)
string(5) "ho%21"
Arg value
+Error: 8192 - Function eregi_replace() is deprecated, %s(74)
string(5) "ho%21"
Error: 4096 - Object of class stdClass could not be converted to string, %s(73)
Arg value
+Error: 8192 - Function eregi_replace() is deprecated, %s(74)
Error: 8 - Object of class stdClass could not be converted to int, %s(74)
string(8) "h%01o%21"
Arg value
+Error: 8192 - Function eregi_replace() is deprecated, %s(74)
string(5) "ho%21"
Arg value
+Error: 8192 - Function eregi_replace() is deprecated, %s(74)
string(5) "ho%21"
-Done
\ No newline at end of file
+Done
Error: 8 - Undefined variable: unset_var, %s(67)
Arg value 0
+Error: 8192 - Function eregi_replace() is deprecated, %s(74)
string(1) "0"
Arg value 1
+Error: 8192 - Function eregi_replace() is deprecated, %s(74)
string(9) "new value"
Arg value 12345
+Error: 8192 - Function eregi_replace() is deprecated, %s(74)
string(13) "new value2345"
Arg value -2345
+Error: 8192 - Function eregi_replace() is deprecated, %s(74)
string(5) "-2345"
Arg value 10.5
+Error: 8192 - Function eregi_replace() is deprecated, %s(74)
string(12) "new value0.5"
Arg value -10.5
+Error: 8192 - Function eregi_replace() is deprecated, %s(74)
string(13) "-new value0.5"
Arg value 101234567000
+Error: 8192 - Function eregi_replace() is deprecated, %s(74)
string(28) "new value0new value234567000"
Arg value 1.07654321E-9
+Error: 8192 - Function eregi_replace() is deprecated, %s(74)
string(29) "new value.0765432new valueE-9"
Arg value 0.5
+Error: 8192 - Function eregi_replace() is deprecated, %s(74)
string(3) "0.5"
Arg value Array
+Error: 8192 - Function eregi_replace() is deprecated, %s(74)
Error: 2 - eregi_replace() expects parameter 3 to be string, array given, %s(74)
NULL
Arg value Array
+Error: 8192 - Function eregi_replace() is deprecated, %s(74)
Error: 2 - eregi_replace() expects parameter 3 to be string, array given, %s(74)
NULL
Arg value Array
+Error: 8192 - Function eregi_replace() is deprecated, %s(74)
Error: 2 - eregi_replace() expects parameter 3 to be string, array given, %s(74)
NULL
Arg value Array
+Error: 8192 - Function eregi_replace() is deprecated, %s(74)
Error: 2 - eregi_replace() expects parameter 3 to be string, array given, %s(74)
NULL
Arg value Array
+Error: 8192 - Function eregi_replace() is deprecated, %s(74)
Error: 2 - eregi_replace() expects parameter 3 to be string, array given, %s(74)
NULL
Arg value
+Error: 8192 - Function eregi_replace() is deprecated, %s(74)
string(0) ""
Arg value
+Error: 8192 - Function eregi_replace() is deprecated, %s(74)
string(0) ""
Arg value 1
+Error: 8192 - Function eregi_replace() is deprecated, %s(74)
string(9) "new value"
Arg value
+Error: 8192 - Function eregi_replace() is deprecated, %s(74)
string(0) ""
Arg value 1
+Error: 8192 - Function eregi_replace() is deprecated, %s(74)
string(9) "new value"
Arg value
+Error: 8192 - Function eregi_replace() is deprecated, %s(74)
string(0) ""
Arg value
+Error: 8192 - Function eregi_replace() is deprecated, %s(74)
string(0) ""
Arg value
+Error: 8192 - Function eregi_replace() is deprecated, %s(74)
string(0) ""
Error: 4096 - Object of class stdClass could not be converted to string, %s(73)
Arg value
+Error: 8192 - Function eregi_replace() is deprecated, %s(74)
Error: 2 - eregi_replace() expects parameter 3 to be string, object given, %s(74)
NULL
Arg value
+Error: 8192 - Function eregi_replace() is deprecated, %s(74)
string(0) ""
Arg value
+Error: 8192 - Function eregi_replace() is deprecated, %s(74)
string(0) ""
Done
Error: 8 - Undefined variable: unset_var, %s(68)
Arg value 0
+Error: 8192 - Function eregi() is deprecated, %s(75)
bool(false)
Arg value 1
+Error: 8192 - Function eregi() is deprecated, %s(75)
int(1)
Arg value 12345
+Error: 8192 - Function eregi() is deprecated, %s(75)
bool(false)
Arg value -2345
+Error: 8192 - Function eregi() is deprecated, %s(75)
bool(false)
Arg value 10.5
+Error: 8192 - Function eregi() is deprecated, %s(75)
bool(false)
Arg value -10.5
+Error: 8192 - Function eregi() is deprecated, %s(75)
bool(false)
Arg value 101234567000
+Error: 8192 - Function eregi() is deprecated, %s(75)
bool(false)
Arg value 1.07654321E-9
+Error: 8192 - Function eregi() is deprecated, %s(75)
bool(false)
Arg value 0.5
+Error: 8192 - Function eregi() is deprecated, %s(75)
bool(false)
Arg value Array
+Error: 8192 - Function eregi() is deprecated, %s(75)
Error: 8 - Array to string conversion, %s(75)
bool(false)
Arg value Array
+Error: 8192 - Function eregi() is deprecated, %s(75)
Error: 8 - Array to string conversion, %s(75)
bool(false)
Arg value Array
+Error: 8192 - Function eregi() is deprecated, %s(75)
Error: 8 - Array to string conversion, %s(75)
bool(false)
Arg value Array
+Error: 8192 - Function eregi() is deprecated, %s(75)
Error: 8 - Array to string conversion, %s(75)
bool(false)
Arg value Array
+Error: 8192 - Function eregi() is deprecated, %s(75)
Error: 8 - Array to string conversion, %s(75)
bool(false)
Arg value
+Error: 8192 - Function eregi() is deprecated, %s(75)
Error: 2 - eregi(): REG_EMPTY, %s(75)
bool(false)
Arg value
+Error: 8192 - Function eregi() is deprecated, %s(75)
Error: 2 - eregi(): REG_EMPTY, %s(75)
bool(false)
Arg value 1
+Error: 8192 - Function eregi() is deprecated, %s(75)
int(1)
Arg value
+Error: 8192 - Function eregi() is deprecated, %s(75)
Error: 2 - eregi(): REG_EMPTY, %s(75)
bool(false)
Arg value 1
+Error: 8192 - Function eregi() is deprecated, %s(75)
int(1)
Arg value
+Error: 8192 - Function eregi() is deprecated, %s(75)
Error: 2 - eregi(): REG_EMPTY, %s(75)
bool(false)
Arg value
+Error: 8192 - Function eregi() is deprecated, %s(75)
Error: 2 - eregi(): REG_EMPTY, %s(75)
bool(false)
Arg value
+Error: 8192 - Function eregi() is deprecated, %s(75)
Error: 2 - eregi(): REG_EMPTY, %s(75)
bool(false)
Error: 4096 - Object of class stdClass could not be converted to string, %s(74)
Arg value
+Error: 8192 - Function eregi() is deprecated, %s(75)
Error: 4096 - Object of class stdClass could not be converted to string, %s(75)
Error: 8 - Object of class stdClass to string conversion, %s(75)
bool(false)
Arg value
+Error: 8192 - Function eregi() is deprecated, %s(75)
Error: 2 - eregi(): REG_EMPTY, %s(75)
bool(false)
Arg value
+Error: 8192 - Function eregi() is deprecated, %s(75)
Error: 2 - eregi(): REG_EMPTY, %s(75)
bool(false)
-Done
\ No newline at end of file
+Done
Error: 8 - Undefined variable: unset_var, %s(67)
Arg value 0
+Error: 8192 - Function eregi() is deprecated, %s(74)
bool(false)
Arg value 1
+Error: 8192 - Function eregi() is deprecated, %s(74)
int(1)
Arg value 12345
+Error: 8192 - Function eregi() is deprecated, %s(74)
int(1)
Arg value -2345
+Error: 8192 - Function eregi() is deprecated, %s(74)
bool(false)
Arg value 10.5
+Error: 8192 - Function eregi() is deprecated, %s(74)
int(1)
Arg value -10.5
+Error: 8192 - Function eregi() is deprecated, %s(74)
int(1)
Arg value 101234567000
+Error: 8192 - Function eregi() is deprecated, %s(74)
int(1)
Arg value 1.07654321E-9
+Error: 8192 - Function eregi() is deprecated, %s(74)
int(1)
Arg value 0.5
+Error: 8192 - Function eregi() is deprecated, %s(74)
bool(false)
Arg value Array
+Error: 8192 - Function eregi() is deprecated, %s(74)
Error: 2 - eregi() expects parameter 2 to be string, array given, %s(74)
NULL
Arg value Array
+Error: 8192 - Function eregi() is deprecated, %s(74)
Error: 2 - eregi() expects parameter 2 to be string, array given, %s(74)
NULL
Arg value Array
+Error: 8192 - Function eregi() is deprecated, %s(74)
Error: 2 - eregi() expects parameter 2 to be string, array given, %s(74)
NULL
Arg value Array
+Error: 8192 - Function eregi() is deprecated, %s(74)
Error: 2 - eregi() expects parameter 2 to be string, array given, %s(74)
NULL
Arg value Array
+Error: 8192 - Function eregi() is deprecated, %s(74)
Error: 2 - eregi() expects parameter 2 to be string, array given, %s(74)
NULL
Arg value
+Error: 8192 - Function eregi() is deprecated, %s(74)
bool(false)
Arg value
+Error: 8192 - Function eregi() is deprecated, %s(74)
bool(false)
Arg value 1
+Error: 8192 - Function eregi() is deprecated, %s(74)
int(1)
Arg value
+Error: 8192 - Function eregi() is deprecated, %s(74)
bool(false)
Arg value 1
+Error: 8192 - Function eregi() is deprecated, %s(74)
int(1)
Arg value
+Error: 8192 - Function eregi() is deprecated, %s(74)
bool(false)
Arg value
+Error: 8192 - Function eregi() is deprecated, %s(74)
bool(false)
Arg value
+Error: 8192 - Function eregi() is deprecated, %s(74)
bool(false)
Error: 4096 - Object of class stdClass could not be converted to string, %s(73)
Arg value
+Error: 8192 - Function eregi() is deprecated, %s(74)
Error: 2 - eregi() expects parameter 2 to be string, object given, %s(74)
NULL
Arg value
+Error: 8192 - Function eregi() is deprecated, %s(74)
bool(false)
Arg value
+Error: 8192 - Function eregi() is deprecated, %s(74)
bool(false)
Done
Error: 8 - Undefined variable: unset_var, %s(64)
Arg value 0
+Error: 8192 - Function eregi() is deprecated, %s(71)
int(6)
array(2) {
[0]=>
}
Arg value 1
+Error: 8192 - Function eregi() is deprecated, %s(71)
int(6)
array(2) {
[0]=>
}
Arg value 12345
+Error: 8192 - Function eregi() is deprecated, %s(71)
int(6)
array(2) {
[0]=>
}
Arg value -2345
+Error: 8192 - Function eregi() is deprecated, %s(71)
int(6)
array(2) {
[0]=>
}
Arg value 10.5
+Error: 8192 - Function eregi() is deprecated, %s(71)
int(6)
array(2) {
[0]=>
}
Arg value -10.5
+Error: 8192 - Function eregi() is deprecated, %s(71)
int(6)
array(2) {
[0]=>
}
Arg value 101234567000
+Error: 8192 - Function eregi() is deprecated, %s(71)
int(6)
array(2) {
[0]=>
}
Arg value 1.07654321E-9
+Error: 8192 - Function eregi() is deprecated, %s(71)
int(6)
array(2) {
[0]=>
}
Arg value 0.5
+Error: 8192 - Function eregi() is deprecated, %s(71)
int(6)
array(2) {
[0]=>
}
Arg value
+Error: 8192 - Function eregi() is deprecated, %s(71)
int(6)
array(2) {
[0]=>
}
Arg value
+Error: 8192 - Function eregi() is deprecated, %s(71)
int(6)
array(2) {
[0]=>
}
Arg value 1
+Error: 8192 - Function eregi() is deprecated, %s(71)
int(6)
array(2) {
[0]=>
}
Arg value
+Error: 8192 - Function eregi() is deprecated, %s(71)
int(6)
array(2) {
[0]=>
}
Arg value 1
+Error: 8192 - Function eregi() is deprecated, %s(71)
int(6)
array(2) {
[0]=>
}
Arg value
+Error: 8192 - Function eregi() is deprecated, %s(71)
int(6)
array(2) {
[0]=>
}
Arg value
+Error: 8192 - Function eregi() is deprecated, %s(71)
int(6)
array(2) {
[0]=>
}
Arg value
+Error: 8192 - Function eregi() is deprecated, %s(71)
int(6)
array(2) {
[0]=>
}
Arg value string
+Error: 8192 - Function eregi() is deprecated, %s(71)
int(6)
array(2) {
[0]=>
}
Arg value string
+Error: 8192 - Function eregi() is deprecated, %s(71)
int(6)
array(2) {
[0]=>
Error: 4096 - Object of class stdClass could not be converted to string, %s(70)
Arg value
+Error: 8192 - Function eregi() is deprecated, %s(71)
int(6)
array(2) {
[0]=>
}
Arg value
+Error: 8192 - Function eregi() is deprecated, %s(71)
int(6)
array(2) {
[0]=>
}
Arg value
+Error: 8192 - Function eregi() is deprecated, %s(71)
int(6)
array(2) {
[0]=>
[1]=>
string(2) "el"
}
-Done
\ No newline at end of file
+Done
echo "Done";
?>
--EXPECTF--
+Strict Standards: Only variables should be passed by reference in %s on line %d
-Strict Standards: Only variables should be passed by reference in %s on line 8
+Deprecated: Function eregi() is deprecated in %s on line %d
int(2)
-Done
\ No newline at end of file
+Done
*** Testing ereg() : basic functionality ***
--> Pattern: '..(a|b|c)(a|b|c)..'; match: '--- ab ---'
+
+Deprecated: Function split() is deprecated in %s on line %d
array(2) {
[0]=>
string(2) "--"
--> Pattern: '()'; match: ''
-Warning: split(): Invalid Regular Expression in %s on line 19
+Deprecated: Function split() is deprecated in %s on line %d
+
+Warning: split(): Invalid Regular Expression in %s on line %d
bool(false)
--> Pattern: '()'; match: 'abcdef'
-Warning: split(): Invalid Regular Expression in %s on line 19
+Deprecated: Function split() is deprecated in %s on line %d
+
+Warning: split(): Invalid Regular Expression in %s on line %d
bool(false)
--> Pattern: '[x]|[^x]'; match: 'abcdef'
+
+Deprecated: Function split() is deprecated in %s on line %d
array(2) {
[0]=>
string(0) ""
}
--> Pattern: '(a{1})(a{1,}) (b{1,3}) (c+) (d?ddd|e)'; match: '--- aaa bbb ccc ddd ---'
+
+Deprecated: Function split() is deprecated in %s on line %d
array(2) {
[0]=>
string(4) "--- "
}
--> Pattern: '\\\`\^\.\[\$\(\)\|\*\+\?\{\''; match: '\`^.[$()|*+?{''
+
+Deprecated: Function split() is deprecated in %s on line %d
array(2) {
[0]=>
string(0) ""
}
--> Pattern: '\a'; match: 'a'
+
+Deprecated: Function split() is deprecated in %s on line %d
array(2) {
[0]=>
string(0) ""
}
--> Pattern: '[0-9][^0-9]'; match: '2a'
+
+Deprecated: Function split() is deprecated in %s on line %d
array(2) {
[0]=>
string(0) ""
}
--> Pattern: '^[[:alnum:]]{62,62}$'; match: '0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ'
+
+Deprecated: Function split() is deprecated in %s on line %d
array(1) {
[0]=>
string(196) "0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ |1| 0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ |2| 0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ"
}
--> Pattern: '^[[:digit:]]{5}'; match: '0123456789'
+
+Deprecated: Function split() is deprecated in %s on line %d
array(2) {
[0]=>
string(0) ""
}
--> Pattern: '[[:digit:]]{5}$'; match: '0123456789'
+
+Deprecated: Function split() is deprecated in %s on line %d
array(2) {
[0]=>
string(35) "0123456789 |1| 0123456789 |2| 01234"
--> Pattern: '[[:blank:]]{1,10}'; match: '
'
+
+Deprecated: Function split() is deprecated in %s on line %d
array(2) {
[0]=>
string(1) "
}
--> Pattern: '[[:print:]]{3}'; match: ' a '
+
+Deprecated: Function split() is deprecated in %s on line %d
array(2) {
[0]=>
string(0) ""
*** Testing ereg() : basic functionality ***
--> Pattern: '..(a|b|c)(a|b|c)..'; match: '--- ab ---'
+
+Deprecated: Function split() is deprecated in %s on line %d
array(4) {
[0]=>
string(2) "--"
--> Pattern: '()'; match: ''
-Warning: split(): Invalid Regular Expression in %s on line 19
+Deprecated: Function split() is deprecated in %s on line %d
+
+Warning: split(): Invalid Regular Expression in %s on line %d
bool(false)
--> Pattern: '()'; match: 'abcdef'
-Warning: split(): Invalid Regular Expression in %s on line 19
+Deprecated: Function split() is deprecated in %s on line %d
+
+Warning: split(): Invalid Regular Expression in %s on line %d
bool(false)
--> Pattern: '[x]|[^x]'; match: 'abcdef'
+
+Deprecated: Function split() is deprecated in %s on line %d
array(29) {
[0]=>
string(0) ""
}
--> Pattern: '(a{1})(a{1,}) (b{1,3}) (c+) (d?ddd|e)'; match: '--- aaa bbb ccc ddd ---'
+
+Deprecated: Function split() is deprecated in %s on line %d
array(4) {
[0]=>
string(4) "--- "
}
--> Pattern: '\\\`\^\.\[\$\(\)\|\*\+\?\{\''; match: '\`^.[$()|*+?{''
+
+Deprecated: Function split() is deprecated in %s on line %d
array(4) {
[0]=>
string(0) ""
}
--> Pattern: '\a'; match: 'a'
+
+Deprecated: Function split() is deprecated in %s on line %d
array(4) {
[0]=>
string(0) ""
}
--> Pattern: '[0-9][^0-9]'; match: '2a'
+
+Deprecated: Function split() is deprecated in %s on line %d
array(6) {
[0]=>
string(0) ""
}
--> Pattern: '^[[:alnum:]]{62,62}$'; match: '0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ'
+
+Deprecated: Function split() is deprecated in %s on line %d
array(1) {
[0]=>
string(196) "0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ |1| 0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ |2| 0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ"
}
--> Pattern: '^[[:digit:]]{5}'; match: '0123456789'
+
+Deprecated: Function split() is deprecated in %s on line %d
array(3) {
[0]=>
string(0) ""
}
--> Pattern: '[[:digit:]]{5}$'; match: '0123456789'
+
+Deprecated: Function split() is deprecated in %s on line %d
array(2) {
[0]=>
string(35) "0123456789 |1| 0123456789 |2| 01234"
--> Pattern: '[[:blank:]]{1,10}'; match: '
'
+
+Deprecated: Function split() is deprecated in %s on line %d
array(6) {
[0]=>
string(1) "
}
--> Pattern: '[[:print:]]{3}'; match: ' a '
+
+Deprecated: Function split() is deprecated in %s on line %d
array(7) {
[0]=>
string(0) ""
echo "Done";
?>
--EXPECTF--
+Deprecated: Function split() is deprecated in %s on line %d
array(1) {
[0]=>
string(7) "-- a --"
}
+
+Deprecated: Function split() is deprecated in %s on line %d
array(1) {
[0]=>
string(7) "-- 0 --"
}
+
+Deprecated: Function split() is deprecated in %s on line %d
array(1) {
[0]=>
string(11) "--- aaa ---"
}
+
+Deprecated: Function split() is deprecated in %s on line %d
array(1) {
[0]=>
string(10) "--- ba ---"
}
+
+Deprecated: Function split() is deprecated in %s on line %d
array(1) {
[0]=>
string(10) "--- ba ---"
}
+
+Deprecated: Function split() is deprecated in %s on line %d
array(1) {
[0]=>
string(9) "--- x ---"
}
-Done
\ No newline at end of file
+Done
-- Testing split() function with more than expected no. of arguments --
-Warning: split() expects at most 3 parameters, 4 given in %s on line 17
+Deprecated: Function split() is deprecated in %s on line %d
+
+Warning: split() expects at most 3 parameters, 4 given in %s on line %d
NULL
-- Testing split() function with less than expected no. of arguments --
-Warning: split() expects at least 2 parameters, 1 given in %s on line 22
+Deprecated: Function split() is deprecated in %s on line %d
+
+Warning: split() expects at least 2 parameters, 1 given in %s on line %d
NULL
Done
--EXPECTF--
*** Testing split() : error conditions ***
-Warning: split(): REG_EMPTY in %s on line 16
+Deprecated: Function split() is deprecated in %s on line %d
+
+Warning: split(): REG_EMPTY in %s on line %d
bool(false)
-Warning: split(): REG_EPAREN in %s on line 17
+Deprecated: Function split() is deprecated in %s on line %d
+
+Warning: split(): REG_EPAREN in %s on line %d
bool(false)
-Warning: split(): REG_EBRACK in %s on line 18
+Deprecated: Function split() is deprecated in %s on line %d
+
+Warning: split(): REG_EBRACK in %s on line %d
bool(false)
-Warning: split(): REG_EPAREN in %s on line 19
+Deprecated: Function split() is deprecated in %s on line %d
+
+Warning: split(): REG_EPAREN in %s on line %d
bool(false)
-Warning: split(): REG_BADRPT in %s on line 20
+Deprecated: Function split() is deprecated in %s on line %d
+
+Warning: split(): REG_BADRPT in %s on line %d
bool(false)
-Warning: split(): REG_BADRPT in %s on line 21
+Deprecated: Function split() is deprecated in %s on line %d
+
+Warning: split(): REG_BADRPT in %s on line %d
bool(false)
-Warning: split(): REG_BADRPT in %s on line 22
+Deprecated: Function split() is deprecated in %s on line %d
+
+Warning: split(): REG_BADRPT in %s on line %d
bool(false)
-Warning: split() expects parameter 3 to be long, string given in %s on line 23
+Deprecated: Function split() is deprecated in %s on line %d
+
+Warning: split() expects parameter 3 to be long, string given in %s on line %d
NULL
-Warning: split(): REG_BADBR in %s on line 24
+Deprecated: Function split() is deprecated in %s on line %d
+
+Warning: split(): REG_BADBR in %s on line %d
bool(false)
-Warning: split(): REG_EMPTY in %s on line 25
+Deprecated: Function split() is deprecated in %s on line %d
+
+Warning: split(): REG_EMPTY in %s on line %d
bool(false)
-Warning: split(): REG_EMPTY in %s on line 26
+Deprecated: Function split() is deprecated in %s on line %d
+
+Warning: split(): REG_EMPTY in %s on line %d
bool(false)
-Warning: split(): REG_BADBR in %s on line 27
+Deprecated: Function split() is deprecated in %s on line %d
+
+Warning: split(): REG_BADBR in %s on line %d
bool(false)
-Warning: split(): REG_ERANGE in %s on line 28
+Deprecated: Function split() is deprecated in %s on line %d
+
+Warning: split(): REG_ERANGE in %s on line %d
bool(false)
-Warning: split(): REG_EESCAPE in %s on line 29
+Deprecated: Function split() is deprecated in %s on line %d
+
+Warning: split(): REG_EESCAPE in %s on line %d
bool(false)
-Warning: split() expects parameter 3 to be long, string given in %s on line 30
+Deprecated: Function split() is deprecated in %s on line %d
+
+Warning: split() expects parameter 3 to be long, string given in %s on line %d
NULL
string(8) "original"
Done
Error: 8 - Undefined variable: unset_var, %s(67)
Arg value 0
+Error: 8192 - Function split() is deprecated, %s(74)
array(1) {
[0]=>
string(16) "1 a 1 Array 1 c "
}
Arg value 1
+Error: 8192 - Function split() is deprecated, %s(74)
array(4) {
[0]=>
string(0) ""
}
Arg value 12345
+Error: 8192 - Function split() is deprecated, %s(74)
array(1) {
[0]=>
string(16) "1 a 1 Array 1 c "
}
Arg value -2345
+Error: 8192 - Function split() is deprecated, %s(74)
array(1) {
[0]=>
string(16) "1 a 1 Array 1 c "
}
Arg value 10.5
+Error: 8192 - Function split() is deprecated, %s(74)
array(1) {
[0]=>
string(16) "1 a 1 Array 1 c "
}
Arg value -10.5
+Error: 8192 - Function split() is deprecated, %s(74)
array(1) {
[0]=>
string(16) "1 a 1 Array 1 c "
}
Arg value 101234567000
+Error: 8192 - Function split() is deprecated, %s(74)
array(1) {
[0]=>
string(16) "1 a 1 Array 1 c "
}
Arg value 1.07654321E-9
+Error: 8192 - Function split() is deprecated, %s(74)
array(1) {
[0]=>
string(16) "1 a 1 Array 1 c "
}
Arg value 0.5
+Error: 8192 - Function split() is deprecated, %s(74)
array(1) {
[0]=>
string(16) "1 a 1 Array 1 c "
}
Arg value Array
+Error: 8192 - Function split() is deprecated, %s(74)
Error: 2 - split() expects parameter 1 to be string, array given, %s(74)
NULL
Arg value Array
+Error: 8192 - Function split() is deprecated, %s(74)
Error: 2 - split() expects parameter 1 to be string, array given, %s(74)
NULL
Arg value Array
+Error: 8192 - Function split() is deprecated, %s(74)
Error: 2 - split() expects parameter 1 to be string, array given, %s(74)
NULL
Arg value Array
+Error: 8192 - Function split() is deprecated, %s(74)
Error: 2 - split() expects parameter 1 to be string, array given, %s(74)
NULL
Arg value Array
+Error: 8192 - Function split() is deprecated, %s(74)
Error: 2 - split() expects parameter 1 to be string, array given, %s(74)
NULL
Arg value
+Error: 8192 - Function split() is deprecated, %s(74)
Error: 2 - split(): REG_EMPTY, %s(74)
bool(false)
Arg value
+Error: 8192 - Function split() is deprecated, %s(74)
Error: 2 - split(): REG_EMPTY, %s(74)
bool(false)
Arg value 1
+Error: 8192 - Function split() is deprecated, %s(74)
array(4) {
[0]=>
string(0) ""
}
Arg value
+Error: 8192 - Function split() is deprecated, %s(74)
Error: 2 - split(): REG_EMPTY, %s(74)
bool(false)
Arg value 1
+Error: 8192 - Function split() is deprecated, %s(74)
array(4) {
[0]=>
string(0) ""
}
Arg value
+Error: 8192 - Function split() is deprecated, %s(74)
Error: 2 - split(): REG_EMPTY, %s(74)
bool(false)
Arg value
+Error: 8192 - Function split() is deprecated, %s(74)
Error: 2 - split(): REG_EMPTY, %s(74)
bool(false)
Arg value
+Error: 8192 - Function split() is deprecated, %s(74)
Error: 2 - split(): REG_EMPTY, %s(74)
bool(false)
Error: 4096 - Object of class stdClass could not be converted to string, %s(73)
Arg value
+Error: 8192 - Function split() is deprecated, %s(74)
Error: 2 - split() expects parameter 1 to be string, object given, %s(74)
NULL
Arg value
+Error: 8192 - Function split() is deprecated, %s(74)
Error: 2 - split(): REG_EMPTY, %s(74)
bool(false)
Arg value
+Error: 8192 - Function split() is deprecated, %s(74)
Error: 2 - split(): REG_EMPTY, %s(74)
bool(false)
Done
Error: 8 - Undefined variable: unset_var, %s(67)
Arg value 0
+Error: 8192 - Function split() is deprecated, %s(74)
array(1) {
[0]=>
string(1) "0"
}
Arg value 1
+Error: 8192 - Function split() is deprecated, %s(74)
array(1) {
[0]=>
string(1) "1"
}
Arg value 12345
+Error: 8192 - Function split() is deprecated, %s(74)
array(1) {
[0]=>
string(5) "12345"
}
Arg value -2345
+Error: 8192 - Function split() is deprecated, %s(74)
array(1) {
[0]=>
string(5) "-2345"
}
Arg value 10.5
+Error: 8192 - Function split() is deprecated, %s(74)
array(1) {
[0]=>
string(4) "10.5"
}
Arg value -10.5
+Error: 8192 - Function split() is deprecated, %s(74)
array(1) {
[0]=>
string(5) "-10.5"
}
Arg value 101234567000
+Error: 8192 - Function split() is deprecated, %s(74)
array(1) {
[0]=>
string(12) "101234567000"
}
Arg value 1.07654321E-9
+Error: 8192 - Function split() is deprecated, %s(74)
array(2) {
[0]=>
string(10) "1.07654321"
}
Arg value 0.5
+Error: 8192 - Function split() is deprecated, %s(74)
array(1) {
[0]=>
string(3) "0.5"
}
Arg value Array
+Error: 8192 - Function split() is deprecated, %s(74)
Error: 2 - split() expects parameter 2 to be string, array given, %s(74)
NULL
Arg value Array
+Error: 8192 - Function split() is deprecated, %s(74)
Error: 2 - split() expects parameter 2 to be string, array given, %s(74)
NULL
Arg value Array
+Error: 8192 - Function split() is deprecated, %s(74)
Error: 2 - split() expects parameter 2 to be string, array given, %s(74)
NULL
Arg value Array
+Error: 8192 - Function split() is deprecated, %s(74)
Error: 2 - split() expects parameter 2 to be string, array given, %s(74)
NULL
Arg value Array
+Error: 8192 - Function split() is deprecated, %s(74)
Error: 2 - split() expects parameter 2 to be string, array given, %s(74)
NULL
Arg value
+Error: 8192 - Function split() is deprecated, %s(74)
array(1) {
[0]=>
string(0) ""
}
Arg value
+Error: 8192 - Function split() is deprecated, %s(74)
array(1) {
[0]=>
string(0) ""
}
Arg value 1
+Error: 8192 - Function split() is deprecated, %s(74)
array(1) {
[0]=>
string(1) "1"
}
Arg value
+Error: 8192 - Function split() is deprecated, %s(74)
array(1) {
[0]=>
string(0) ""
}
Arg value 1
+Error: 8192 - Function split() is deprecated, %s(74)
array(1) {
[0]=>
string(1) "1"
}
Arg value
+Error: 8192 - Function split() is deprecated, %s(74)
array(1) {
[0]=>
string(0) ""
}
Arg value
+Error: 8192 - Function split() is deprecated, %s(74)
array(1) {
[0]=>
string(0) ""
}
Arg value
+Error: 8192 - Function split() is deprecated, %s(74)
array(1) {
[0]=>
string(0) ""
Error: 4096 - Object of class stdClass could not be converted to string, %s(73)
Arg value
+Error: 8192 - Function split() is deprecated, %s(74)
Error: 2 - split() expects parameter 2 to be string, object given, %s(74)
NULL
Arg value
+Error: 8192 - Function split() is deprecated, %s(74)
array(1) {
[0]=>
string(0) ""
}
Arg value
+Error: 8192 - Function split() is deprecated, %s(74)
array(1) {
[0]=>
string(0) ""
*** Testing split() : usage variations ***
Arg value 10.5
+Error: 8192 - Function split() is deprecated, %s(73)
array(5) {
[0]=>
string(1) "1"
}
Arg value -10.5
+Error: 8192 - Function split() is deprecated, %s(73)
array(1) {
[0]=>
string(9) "1 2 3 4 5"
}
Arg value 1.07654321E-9
+Error: 8192 - Function split() is deprecated, %s(73)
array(1) {
[0]=>
string(9) "1 2 3 4 5"
}
Arg value 0.5
+Error: 8192 - Function split() is deprecated, %s(73)
array(1) {
[0]=>
string(9) "1 2 3 4 5"
}
Arg value Array
+Error: 8192 - Function split() is deprecated, %s(73)
Error: 2 - split() expects parameter 3 to be long, array given, %s(73)
NULL
Arg value Array
+Error: 8192 - Function split() is deprecated, %s(73)
Error: 2 - split() expects parameter 3 to be long, array given, %s(73)
NULL
Arg value Array
+Error: 8192 - Function split() is deprecated, %s(73)
Error: 2 - split() expects parameter 3 to be long, array given, %s(73)
NULL
Arg value Array
+Error: 8192 - Function split() is deprecated, %s(73)
Error: 2 - split() expects parameter 3 to be long, array given, %s(73)
NULL
Arg value Array
+Error: 8192 - Function split() is deprecated, %s(73)
Error: 2 - split() expects parameter 3 to be long, array given, %s(73)
NULL
Arg value
+Error: 8192 - Function split() is deprecated, %s(73)
array(1) {
[0]=>
string(9) "1 2 3 4 5"
}
Arg value
+Error: 8192 - Function split() is deprecated, %s(73)
array(1) {
[0]=>
string(9) "1 2 3 4 5"
}
Arg value 1
+Error: 8192 - Function split() is deprecated, %s(73)
array(1) {
[0]=>
string(9) "1 2 3 4 5"
}
Arg value
+Error: 8192 - Function split() is deprecated, %s(73)
array(1) {
[0]=>
string(9) "1 2 3 4 5"
}
Arg value 1
+Error: 8192 - Function split() is deprecated, %s(73)
array(1) {
[0]=>
string(9) "1 2 3 4 5"
}
Arg value
+Error: 8192 - Function split() is deprecated, %s(73)
array(1) {
[0]=>
string(9) "1 2 3 4 5"
}
Arg value
+Error: 8192 - Function split() is deprecated, %s(73)
Error: 2 - split() expects parameter 3 to be long, string given, %s(73)
NULL
Arg value
+Error: 8192 - Function split() is deprecated, %s(73)
Error: 2 - split() expects parameter 3 to be long, string given, %s(73)
NULL
Arg value string
+Error: 8192 - Function split() is deprecated, %s(73)
Error: 2 - split() expects parameter 3 to be long, string given, %s(73)
NULL
Arg value string
+Error: 8192 - Function split() is deprecated, %s(73)
Error: 2 - split() expects parameter 3 to be long, string given, %s(73)
NULL
Error: 4096 - Object of class stdClass could not be converted to string, %s(72)
Arg value
+Error: 8192 - Function split() is deprecated, %s(73)
Error: 2 - split() expects parameter 3 to be long, object given, %s(73)
NULL
Arg value
+Error: 8192 - Function split() is deprecated, %s(73)
array(1) {
[0]=>
string(9) "1 2 3 4 5"
}
Arg value
+Error: 8192 - Function split() is deprecated, %s(73)
array(1) {
[0]=>
string(9) "1 2 3 4 5"
?>
--EXPECTF--
*** Testing split() : usage variations ***
+Error: 8192 - Function split() is deprecated, %s(16)
array(1) {
[0]=>
string(9) "1 2 3 4 5"
}
+Error: 8192 - Function split() is deprecated, %s(17)
array(1) {
[0]=>
string(9) "1 2 3 4 5"
}
+Error: 8192 - Function split() is deprecated, %s(18)
array(5) {
[0]=>
string(1) "1"
[4]=>
string(1) "5"
}
-Done
\ No newline at end of file
+Done
*** Testing ereg() : basic functionality ***
--> Pattern: '..(a|b|c)(a|b|c)..'; match: '--- ab ---'
+
+Deprecated: Function spliti() is deprecated in %s on line %d
array(2) {
[0]=>
string(2) "--"
--> Pattern: '()'; match: ''
-Warning: spliti(): Invalid Regular Expression in %s on line 19
+Deprecated: Function spliti() is deprecated in %s on line %d
+
+Warning: spliti(): Invalid Regular Expression in %s on line %d
bool(false)
--> Pattern: '()'; match: 'abcdef'
-Warning: spliti(): Invalid Regular Expression in %s on line 19
+Deprecated: Function spliti() is deprecated in %s on line %d
+
+Warning: spliti(): Invalid Regular Expression in %s on line %d
bool(false)
--> Pattern: '[x]|[^x]'; match: 'abcdef'
+
+Deprecated: Function spliti() is deprecated in %s on line %d
array(2) {
[0]=>
string(0) ""
}
--> Pattern: '(a{1})(a{1,}) (b{1,3}) (c+) (d?ddd|e)'; match: '--- aaa bbb ccc ddd ---'
+
+Deprecated: Function spliti() is deprecated in %s on line %d
array(2) {
[0]=>
string(4) "--- "
}
--> Pattern: '\\\`\^\.\[\$\(\)\|\*\+\?\{\''; match: '\`^.[$()|*+?{''
+
+Deprecated: Function spliti() is deprecated in %s on line %d
array(2) {
[0]=>
string(0) ""
}
--> Pattern: '\a'; match: 'a'
+
+Deprecated: Function spliti() is deprecated in %s on line %d
array(2) {
[0]=>
string(0) ""
}
--> Pattern: '[0-9][^0-9]'; match: '2a'
+
+Deprecated: Function spliti() is deprecated in %s on line %d
array(2) {
[0]=>
string(0) ""
}
--> Pattern: '^[[:alnum:]]{62,62}$'; match: '0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ'
+
+Deprecated: Function spliti() is deprecated in %s on line %d
array(1) {
[0]=>
string(196) "0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ |1| 0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ |2| 0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ"
}
--> Pattern: '^[[:digit:]]{5}'; match: '0123456789'
+
+Deprecated: Function spliti() is deprecated in %s on line %d
array(2) {
[0]=>
string(0) ""
}
--> Pattern: '[[:digit:]]{5}$'; match: '0123456789'
+
+Deprecated: Function spliti() is deprecated in %s on line %d
array(2) {
[0]=>
string(35) "0123456789 |1| 0123456789 |2| 01234"
--> Pattern: '[[:blank:]]{1,10}'; match: '
'
+
+Deprecated: Function spliti() is deprecated in %s on line %d
array(2) {
[0]=>
string(1) "
}
--> Pattern: '[[:print:]]{3}'; match: ' a '
+
+Deprecated: Function spliti() is deprecated in %s on line %d
array(2) {
[0]=>
string(0) ""
*** Testing ereg() : basic functionality ***
--> Pattern: '..(a|b|c)(a|b|c)..'; match: '--- ab ---'
+
+Deprecated: Function spliti() is deprecated in %s on line %d
array(4) {
[0]=>
string(2) "--"
--> Pattern: '()'; match: ''
-Warning: spliti(): Invalid Regular Expression in %s on line 19
+Deprecated: Function spliti() is deprecated in %s on line %d
+
+Warning: spliti(): Invalid Regular Expression in %s on line %d
bool(false)
--> Pattern: '()'; match: 'abcdef'
-Warning: spliti(): Invalid Regular Expression in %s on line 19
+Deprecated: Function spliti() is deprecated in %s on line %d
+
+Warning: spliti(): Invalid Regular Expression in %s on line %d
bool(false)
--> Pattern: '[x]|[^x]'; match: 'abcdef'
+
+Deprecated: Function spliti() is deprecated in %s on line %d
array(29) {
[0]=>
string(0) ""
}
--> Pattern: '(a{1})(a{1,}) (b{1,3}) (c+) (d?ddd|e)'; match: '--- aaa bbb ccc ddd ---'
+
+Deprecated: Function spliti() is deprecated in %s on line %d
array(4) {
[0]=>
string(4) "--- "
}
--> Pattern: '\\\`\^\.\[\$\(\)\|\*\+\?\{\''; match: '\`^.[$()|*+?{''
+
+Deprecated: Function spliti() is deprecated in %s on line %d
array(4) {
[0]=>
string(0) ""
}
--> Pattern: '\a'; match: 'a'
+
+Deprecated: Function spliti() is deprecated in %s on line %d
array(4) {
[0]=>
string(0) ""
}
--> Pattern: '[0-9][^0-9]'; match: '2a'
+
+Deprecated: Function spliti() is deprecated in %s on line %d
array(6) {
[0]=>
string(0) ""
}
--> Pattern: '^[[:alnum:]]{62,62}$'; match: '0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ'
+
+Deprecated: Function spliti() is deprecated in %s on line %d
array(1) {
[0]=>
string(196) "0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ |1| 0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ |2| 0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ"
}
--> Pattern: '^[[:digit:]]{5}'; match: '0123456789'
+
+Deprecated: Function spliti() is deprecated in %s on line %d
array(3) {
[0]=>
string(0) ""
}
--> Pattern: '[[:digit:]]{5}$'; match: '0123456789'
+
+Deprecated: Function spliti() is deprecated in %s on line %d
array(2) {
[0]=>
string(35) "0123456789 |1| 0123456789 |2| 01234"
--> Pattern: '[[:blank:]]{1,10}'; match: '
'
+
+Deprecated: Function spliti() is deprecated in %s on line %d
array(6) {
[0]=>
string(1) "
}
--> Pattern: '[[:print:]]{3}'; match: ' a '
+
+Deprecated: Function spliti() is deprecated in %s on line %d
array(7) {
[0]=>
string(0) ""
echo "Done";
?>
--EXPECTF--
+Deprecated: Function spliti() is deprecated in %s on line %d
array(1) {
[0]=>
string(7) "-- 0 --"
}
+
+Deprecated: Function spliti() is deprecated in %s on line %d
array(1) {
[0]=>
string(11) "--- aaa ---"
}
+
+Deprecated: Function spliti() is deprecated in %s on line %d
array(1) {
[0]=>
string(10) "--- ba ---"
}
+
+Deprecated: Function spliti() is deprecated in %s on line %d
array(1) {
[0]=>
string(10) "--- ba ---"
}
+
+Deprecated: Function spliti() is deprecated in %s on line %d
array(1) {
[0]=>
string(9) "--- x ---"
}
-Done
\ No newline at end of file
+Done
echo "Done";
?>
--EXPECTF--
+Deprecated: Function spliti() is deprecated in %s on line %d
array(2) {
[0]=>
string(4) "--- "
[1]=>
string(4) " ---"
}
+
+Deprecated: Function spliti() is deprecated in %s on line %d
array(2) {
[0]=>
string(4) "--- "
[1]=>
string(4) " ---"
}
+
+Deprecated: Function spliti() is deprecated in %s on line %d
array(2) {
[0]=>
string(4) "--- "
[1]=>
string(4) " ---"
}
+
+Deprecated: Function spliti() is deprecated in %s on line %d
array(2) {
[0]=>
string(4) "--- "
[1]=>
string(4) " ---"
}
-Done
\ No newline at end of file
+Done
-- Testing spliti() function with more than expected no. of arguments --
+Deprecated: Function spliti() is deprecated in %s on line %d
+
Warning: spliti() expects at most 3 parameters, 4 given in %s on line %d
NULL
-- Testing spliti() function with less than expected no. of arguments --
+Deprecated: Function spliti() is deprecated in %s on line %d
+
Warning: spliti() expects at least 2 parameters, 1 given in %s on line %d
NULL
Done
--EXPECTF--
*** Testing spliti() : error conditions ***
-Warning: spliti(): REG_EMPTY in %s on line 16
+Deprecated: Function spliti() is deprecated in %s on line %d
+
+Warning: spliti(): REG_EMPTY in %s on line %d
bool(false)
-Warning: spliti(): REG_EPAREN in %s on line 17
+Deprecated: Function spliti() is deprecated in %s on line %d
+
+Warning: spliti(): REG_EPAREN in %s on line %d
bool(false)
-Warning: spliti(): REG_EBRACK in %s on line 18
+Deprecated: Function spliti() is deprecated in %s on line %d
+
+Warning: spliti(): REG_EBRACK in %s on line %d
bool(false)
-Warning: spliti(): REG_EPAREN in %s on line 19
+Deprecated: Function spliti() is deprecated in %s on line %d
+
+Warning: spliti(): REG_EPAREN in %s on line %d
bool(false)
-Warning: spliti(): REG_BADRPT in %s on line 20
+Deprecated: Function spliti() is deprecated in %s on line %d
+
+Warning: spliti(): REG_BADRPT in %s on line %d
bool(false)
-Warning: spliti(): REG_BADRPT in %s on line 21
+Deprecated: Function spliti() is deprecated in %s on line %d
+
+Warning: spliti(): REG_BADRPT in %s on line %d
bool(false)
-Warning: spliti(): REG_BADRPT in %s on line 22
+Deprecated: Function spliti() is deprecated in %s on line %d
+
+Warning: spliti(): REG_BADRPT in %s on line %d
bool(false)
+Deprecated: Function spliti() is deprecated in %s on line %d
+
Warning: spliti() expects parameter 3 to be long, string given in %s on line %d
NULL
-Warning: spliti(): REG_BADBR in %s on line 24
+Deprecated: Function spliti() is deprecated in %s on line %d
+
+Warning: spliti(): REG_BADBR in %s on line %d
bool(false)
-Warning: spliti(): REG_EMPTY in %s on line 25
+Deprecated: Function spliti() is deprecated in %s on line %d
+
+Warning: spliti(): REG_EMPTY in %s on line %d
bool(false)
-Warning: spliti(): REG_EMPTY in %s on line 26
+Deprecated: Function spliti() is deprecated in %s on line %d
+
+Warning: spliti(): REG_EMPTY in %s on line %d
bool(false)
-Warning: spliti(): REG_BADBR in %s on line 27
+Deprecated: Function spliti() is deprecated in %s on line %d
+
+Warning: spliti(): REG_BADBR in %s on line %d
bool(false)
-Warning: spliti(): REG_ERANGE in %s on line 28
+Deprecated: Function spliti() is deprecated in %s on line %d
+
+Warning: spliti(): REG_ERANGE in %s on line %d
bool(false)
-Warning: spliti(): REG_EESCAPE in %s on line 29
+Deprecated: Function spliti() is deprecated in %s on line %d
+
+Warning: spliti(): REG_EESCAPE in %s on line %d
bool(false)
+Deprecated: Function spliti() is deprecated in %s on line %d
+
Warning: spliti() expects parameter 3 to be long, string given in %s on line %d
NULL
string(8) "original"
Error: 8 - Undefined variable: unset_var, %s(67)
Arg value 0
+Error: 8192 - Function spliti() is deprecated, %s(74)
array(1) {
[0]=>
string(16) "1 a 1 Array 1 c "
}
Arg value 1
+Error: 8192 - Function spliti() is deprecated, %s(74)
array(4) {
[0]=>
string(0) ""
}
Arg value 12345
+Error: 8192 - Function spliti() is deprecated, %s(74)
array(1) {
[0]=>
string(16) "1 a 1 Array 1 c "
}
Arg value -2345
+Error: 8192 - Function spliti() is deprecated, %s(74)
array(1) {
[0]=>
string(16) "1 a 1 Array 1 c "
}
Arg value 10.5
+Error: 8192 - Function spliti() is deprecated, %s(74)
array(1) {
[0]=>
string(16) "1 a 1 Array 1 c "
}
Arg value -10.5
+Error: 8192 - Function spliti() is deprecated, %s(74)
array(1) {
[0]=>
string(16) "1 a 1 Array 1 c "
}
Arg value 101234567000
+Error: 8192 - Function spliti() is deprecated, %s(74)
array(1) {
[0]=>
string(16) "1 a 1 Array 1 c "
}
Arg value 1.07654321E-9
+Error: 8192 - Function spliti() is deprecated, %s(74)
array(1) {
[0]=>
string(16) "1 a 1 Array 1 c "
}
Arg value 0.5
+Error: 8192 - Function spliti() is deprecated, %s(74)
array(1) {
[0]=>
string(16) "1 a 1 Array 1 c "
}
Arg value Array
+Error: 8192 - Function spliti() is deprecated, %s(74)
Error: 2 - spliti() expects parameter 1 to be string, array given, %s(74)
NULL
Arg value Array
+Error: 8192 - Function spliti() is deprecated, %s(74)
Error: 2 - spliti() expects parameter 1 to be string, array given, %s(74)
NULL
Arg value Array
+Error: 8192 - Function spliti() is deprecated, %s(74)
Error: 2 - spliti() expects parameter 1 to be string, array given, %s(74)
NULL
Arg value Array
+Error: 8192 - Function spliti() is deprecated, %s(74)
Error: 2 - spliti() expects parameter 1 to be string, array given, %s(74)
NULL
Arg value Array
+Error: 8192 - Function spliti() is deprecated, %s(74)
Error: 2 - spliti() expects parameter 1 to be string, array given, %s(74)
NULL
Arg value
+Error: 8192 - Function spliti() is deprecated, %s(74)
Error: 2 - spliti(): REG_EMPTY, %s(74)
bool(false)
Arg value
+Error: 8192 - Function spliti() is deprecated, %s(74)
Error: 2 - spliti(): REG_EMPTY, %s(74)
bool(false)
Arg value 1
+Error: 8192 - Function spliti() is deprecated, %s(74)
array(4) {
[0]=>
string(0) ""
}
Arg value
+Error: 8192 - Function spliti() is deprecated, %s(74)
Error: 2 - spliti(): REG_EMPTY, %s(74)
bool(false)
Arg value 1
+Error: 8192 - Function spliti() is deprecated, %s(74)
array(4) {
[0]=>
string(0) ""
}
Arg value
+Error: 8192 - Function spliti() is deprecated, %s(74)
Error: 2 - spliti(): REG_EMPTY, %s(74)
bool(false)
Arg value
+Error: 8192 - Function spliti() is deprecated, %s(74)
Error: 2 - spliti(): REG_EMPTY, %s(74)
bool(false)
Arg value
+Error: 8192 - Function spliti() is deprecated, %s(74)
Error: 2 - spliti(): REG_EMPTY, %s(74)
bool(false)
Error: 4096 - Object of class stdClass could not be converted to string, %s(73)
Arg value
+Error: 8192 - Function spliti() is deprecated, %s(74)
Error: 2 - spliti() expects parameter 1 to be string, object given, %s(74)
NULL
Arg value
+Error: 8192 - Function spliti() is deprecated, %s(74)
Error: 2 - spliti(): REG_EMPTY, %s(74)
bool(false)
Arg value
+Error: 8192 - Function spliti() is deprecated, %s(74)
Error: 2 - spliti(): REG_EMPTY, %s(74)
bool(false)
Done
Error: 8 - Undefined variable: unset_var, %s(67)
Arg value 0
+Error: 8192 - Function spliti() is deprecated, %s(74)
array(1) {
[0]=>
string(1) "0"
}
Arg value 1
+Error: 8192 - Function spliti() is deprecated, %s(74)
array(1) {
[0]=>
string(1) "1"
}
Arg value 12345
+Error: 8192 - Function spliti() is deprecated, %s(74)
array(1) {
[0]=>
string(5) "12345"
}
Arg value -2345
+Error: 8192 - Function spliti() is deprecated, %s(74)
array(1) {
[0]=>
string(5) "-2345"
}
Arg value 10.5
+Error: 8192 - Function spliti() is deprecated, %s(74)
array(1) {
[0]=>
string(4) "10.5"
}
Arg value -10.5
+Error: 8192 - Function spliti() is deprecated, %s(74)
array(1) {
[0]=>
string(5) "-10.5"
}
Arg value 101234567000
+Error: 8192 - Function spliti() is deprecated, %s(74)
array(1) {
[0]=>
string(12) "101234567000"
}
Arg value 1.07654321E-9
+Error: 8192 - Function spliti() is deprecated, %s(74)
array(2) {
[0]=>
string(10) "1.07654321"
}
Arg value 0.5
+Error: 8192 - Function spliti() is deprecated, %s(74)
array(1) {
[0]=>
string(3) "0.5"
}
Arg value Array
+Error: 8192 - Function spliti() is deprecated, %s(74)
Error: 2 - spliti() expects parameter 2 to be string, array given, %s(74)
NULL
Arg value Array
+Error: 8192 - Function spliti() is deprecated, %s(74)
Error: 2 - spliti() expects parameter 2 to be string, array given, %s(74)
NULL
Arg value Array
+Error: 8192 - Function spliti() is deprecated, %s(74)
Error: 2 - spliti() expects parameter 2 to be string, array given, %s(74)
NULL
Arg value Array
+Error: 8192 - Function spliti() is deprecated, %s(74)
Error: 2 - spliti() expects parameter 2 to be string, array given, %s(74)
NULL
Arg value Array
+Error: 8192 - Function spliti() is deprecated, %s(74)
Error: 2 - spliti() expects parameter 2 to be string, array given, %s(74)
NULL
Arg value
+Error: 8192 - Function spliti() is deprecated, %s(74)
array(1) {
[0]=>
string(0) ""
}
Arg value
+Error: 8192 - Function spliti() is deprecated, %s(74)
array(1) {
[0]=>
string(0) ""
}
Arg value 1
+Error: 8192 - Function spliti() is deprecated, %s(74)
array(1) {
[0]=>
string(1) "1"
}
Arg value
+Error: 8192 - Function spliti() is deprecated, %s(74)
array(1) {
[0]=>
string(0) ""
}
Arg value 1
+Error: 8192 - Function spliti() is deprecated, %s(74)
array(1) {
[0]=>
string(1) "1"
}
Arg value
+Error: 8192 - Function spliti() is deprecated, %s(74)
array(1) {
[0]=>
string(0) ""
}
Arg value
+Error: 8192 - Function spliti() is deprecated, %s(74)
array(1) {
[0]=>
string(0) ""
}
Arg value
+Error: 8192 - Function spliti() is deprecated, %s(74)
array(1) {
[0]=>
string(0) ""
Error: 4096 - Object of class stdClass could not be converted to string, %s(73)
Arg value
+Error: 8192 - Function spliti() is deprecated, %s(74)
Error: 2 - spliti() expects parameter 2 to be string, object given, %s(74)
NULL
Arg value
+Error: 8192 - Function spliti() is deprecated, %s(74)
array(1) {
[0]=>
string(0) ""
}
Arg value
+Error: 8192 - Function spliti() is deprecated, %s(74)
array(1) {
[0]=>
string(0) ""
*** Testing spliti() : usage variations ***
Arg value 10.5
+Error: 8192 - Function spliti() is deprecated, %s(73)
array(5) {
[0]=>
string(1) "1"
}
Arg value -10.5
+Error: 8192 - Function spliti() is deprecated, %s(73)
array(1) {
[0]=>
string(9) "1 2 3 4 5"
}
Arg value 1.07654321E-9
+Error: 8192 - Function spliti() is deprecated, %s(73)
array(1) {
[0]=>
string(9) "1 2 3 4 5"
}
Arg value 0.5
+Error: 8192 - Function spliti() is deprecated, %s(73)
array(1) {
[0]=>
string(9) "1 2 3 4 5"
}
Arg value Array
-Error: 2 - spliti() expects parameter 3 to be long, array given, %s.php(73)
+Error: 8192 - Function spliti() is deprecated, %s(73)
+Error: 2 - spliti() expects parameter 3 to be long, array given, %s(73)
NULL
Arg value Array
-Error: 2 - spliti() expects parameter 3 to be long, array given, %s.php(73)
+Error: 8192 - Function spliti() is deprecated, %s(73)
+Error: 2 - spliti() expects parameter 3 to be long, array given, %s(73)
NULL
Arg value Array
-Error: 2 - spliti() expects parameter 3 to be long, array given, %s.php(73)
+Error: 8192 - Function spliti() is deprecated, %s(73)
+Error: 2 - spliti() expects parameter 3 to be long, array given, %s(73)
NULL
Arg value Array
-Error: 2 - spliti() expects parameter 3 to be long, array given, %s.php(73)
+Error: 8192 - Function spliti() is deprecated, %s(73)
+Error: 2 - spliti() expects parameter 3 to be long, array given, %s(73)
NULL
Arg value Array
-Error: 2 - spliti() expects parameter 3 to be long, array given, %s.php(73)
+Error: 8192 - Function spliti() is deprecated, %s(73)
+Error: 2 - spliti() expects parameter 3 to be long, array given, %s(73)
NULL
Arg value
+Error: 8192 - Function spliti() is deprecated, %s(73)
array(1) {
[0]=>
string(9) "1 2 3 4 5"
}
Arg value
+Error: 8192 - Function spliti() is deprecated, %s(73)
array(1) {
[0]=>
string(9) "1 2 3 4 5"
}
Arg value 1
+Error: 8192 - Function spliti() is deprecated, %s(73)
array(1) {
[0]=>
string(9) "1 2 3 4 5"
}
Arg value
+Error: 8192 - Function spliti() is deprecated, %s(73)
array(1) {
[0]=>
string(9) "1 2 3 4 5"
}
Arg value 1
+Error: 8192 - Function spliti() is deprecated, %s(73)
array(1) {
[0]=>
string(9) "1 2 3 4 5"
}
Arg value
+Error: 8192 - Function spliti() is deprecated, %s(73)
array(1) {
[0]=>
string(9) "1 2 3 4 5"
}
Arg value
+Error: 8192 - Function spliti() is deprecated, %s(73)
Error: 2 - spliti() expects parameter 3 to be long, string given, %s(73)
NULL
Arg value
+Error: 8192 - Function spliti() is deprecated, %s(73)
Error: 2 - spliti() expects parameter 3 to be long, string given, %s(73)
NULL
Arg value string
+Error: 8192 - Function spliti() is deprecated, %s(73)
Error: 2 - spliti() expects parameter 3 to be long, string given, %s(73)
NULL
Arg value string
+Error: 8192 - Function spliti() is deprecated, %s(73)
Error: 2 - spliti() expects parameter 3 to be long, string given, %s(73)
NULL
Error: 4096 - Object of class stdClass could not be converted to string, %s(72)
Arg value
+Error: 8192 - Function spliti() is deprecated, %s(73)
Error: 2 - spliti() expects parameter 3 to be long, object given, %s(73)
NULL
Arg value
+Error: 8192 - Function spliti() is deprecated, %s(73)
array(1) {
[0]=>
string(9) "1 2 3 4 5"
}
Arg value
+Error: 8192 - Function spliti() is deprecated, %s(73)
array(1) {
[0]=>
string(9) "1 2 3 4 5"
?>
--EXPECTF--
*** Testing spliti() : usage variations ***
+Error: 8192 - Function spliti() is deprecated, %s(16)
array(1) {
[0]=>
string(9) "1 2 3 4 5"
}
+Error: 8192 - Function spliti() is deprecated, %s(17)
array(1) {
[0]=>
string(9) "1 2 3 4 5"
}
+Error: 8192 - Function spliti() is deprecated, %s(18)
array(5) {
[0]=>
string(1) "1"
[4]=>
string(1) "5"
}
-Done
\ No newline at end of file
+Done
?>
--EXPECTF--
*** Testing sql_regcase() : basic functionality ***
+
+Deprecated: Function sql_regcase() is deprecated in %s on line %d
string(39) "[Ss][Tt][Rr][Ii][Nn][Gg]_[Vv][Aa][Ll]-0"
-Done
\ No newline at end of file
+Done
-- Testing sql_regcase() function with Zero arguments --
-Warning: sql_regcase() expects exactly 1 parameter, 0 given in %s.php on line 12
+Deprecated: Function sql_regcase() is deprecated in %s on line %d
+
+Warning: sql_regcase() expects exactly 1 parameter, 0 given in %s on line %d
NULL
-- Testing sql_regcase() function with more than expected no. of arguments --
-Warning: sql_regcase() expects exactly 1 parameter, 2 given in %s.php on line 18
+Deprecated: Function sql_regcase() is deprecated in %s on line %d
+
+Warning: sql_regcase() expects exactly 1 parameter, 2 given in %s on line %d
NULL
Done
Error: 8 - Undefined variable: unset_var, %s(65)
Arg value 0
+Error: 8192 - Function sql_regcase() is deprecated, %s(72)
string(1) "0"
Arg value 1
+Error: 8192 - Function sql_regcase() is deprecated, %s(72)
string(1) "1"
Arg value 12345
+Error: 8192 - Function sql_regcase() is deprecated, %s(72)
string(5) "12345"
Arg value -2345
+Error: 8192 - Function sql_regcase() is deprecated, %s(72)
string(5) "-2345"
Arg value 10.5
+Error: 8192 - Function sql_regcase() is deprecated, %s(72)
string(4) "10.5"
Arg value -10.5
+Error: 8192 - Function sql_regcase() is deprecated, %s(72)
string(5) "-10.5"
Arg value 101234567000
+Error: 8192 - Function sql_regcase() is deprecated, %s(72)
string(12) "101234567000"
Arg value 1.07654321E-9
+Error: 8192 - Function sql_regcase() is deprecated, %s(72)
string(16) "1.07654321[Ee]-9"
Arg value 0.5
+Error: 8192 - Function sql_regcase() is deprecated, %s(72)
string(3) "0.5"
Arg value Array
-Error: 2 - sql_regcase() expects parameter 1 to be string, array given, %s.php(72)
+Error: 8192 - Function sql_regcase() is deprecated, %s(72)
+Error: 2 - sql_regcase() expects parameter 1 to be string, array given, %s(72)
NULL
Arg value Array
-Error: 2 - sql_regcase() expects parameter 1 to be string, array given, %s.php(72)
+Error: 8192 - Function sql_regcase() is deprecated, %s(72)
+Error: 2 - sql_regcase() expects parameter 1 to be string, array given, %s(72)
NULL
Arg value Array
-Error: 2 - sql_regcase() expects parameter 1 to be string, array given, %s.php(72)
+Error: 8192 - Function sql_regcase() is deprecated, %s(72)
+Error: 2 - sql_regcase() expects parameter 1 to be string, array given, %s(72)
NULL
Arg value Array
-Error: 2 - sql_regcase() expects parameter 1 to be string, array given, %s.php(72)
+Error: 8192 - Function sql_regcase() is deprecated, %s(72)
+Error: 2 - sql_regcase() expects parameter 1 to be string, array given, %s(72)
NULL
Arg value Array
-Error: 2 - sql_regcase() expects parameter 1 to be string, array given, %s.php(72)
+Error: 8192 - Function sql_regcase() is deprecated, %s(72)
+Error: 2 - sql_regcase() expects parameter 1 to be string, array given, %s(72)
NULL
Arg value
+Error: 8192 - Function sql_regcase() is deprecated, %s(72)
string(0) ""
Arg value
+Error: 8192 - Function sql_regcase() is deprecated, %s(72)
string(0) ""
Arg value 1
+Error: 8192 - Function sql_regcase() is deprecated, %s(72)
string(1) "1"
Arg value
+Error: 8192 - Function sql_regcase() is deprecated, %s(72)
string(0) ""
Arg value 1
+Error: 8192 - Function sql_regcase() is deprecated, %s(72)
string(1) "1"
Arg value
+Error: 8192 - Function sql_regcase() is deprecated, %s(72)
string(0) ""
Arg value
+Error: 8192 - Function sql_regcase() is deprecated, %s(72)
string(0) ""
Arg value
+Error: 8192 - Function sql_regcase() is deprecated, %s(72)
string(0) ""
Error: 4096 - Object of class stdClass could not be converted to string, %s(71)
Arg value
-Error: 2 - sql_regcase() expects parameter 1 to be string, object given, %s.php(72)
+Error: 8192 - Function sql_regcase() is deprecated, %s(72)
+Error: 2 - sql_regcase() expects parameter 1 to be string, object given, %s(72)
NULL
Arg value
+Error: 8192 - Function sql_regcase() is deprecated, %s(72)
string(0) ""
Arg value
+Error: 8192 - Function sql_regcase() is deprecated, %s(72)
string(0) ""
Done