1
0
mirror of https://github.com/php/php-src.git synced 2026-04-26 09:28:21 +02:00

Fixed test

This commit is contained in:
Dmitry Stogov
2007-06-18 11:54:02 +00:00
parent a4db7a40c5
commit d4ef7f0f75
+6 -2
View File
@@ -13,7 +13,7 @@ var_dump(strval(true));
var_dump(strval(false));
var_dump(strval(array('foo')));
?>
--EXPECT--
--EXPECTF--
string(3) "bar"
string(3) "BAR"
string(6) "foobar"
@@ -21,8 +21,10 @@ string(1) "1"
string(3) "1.1"
string(1) "1"
string(0) ""
Notice: Array to string conversion in %sstrval.php on line 11
string(5) "Array"
--UEXPECT--
--UEXPECTF--
unicode(3) "bar"
unicode(3) "BAR"
unicode(6) "foobar"
@@ -30,4 +32,6 @@ unicode(1) "1"
unicode(3) "1.1"
unicode(1) "1"
unicode(0) ""
Notice: Array to string conversion in %sstrval.php on line 11
unicode(5) "Array"