diff options
Diffstat (limited to 'ext/soap/tests')
-rw-r--r-- | ext/soap/tests/bug48557.phpt | 2 | ||||
-rw-r--r-- | ext/soap/tests/bugs/bug28751.phpt | 4 |
2 files changed, 3 insertions, 3 deletions
diff --git a/ext/soap/tests/bug48557.phpt b/ext/soap/tests/bug48557.phpt index 07245793db..e98c6d13b9 100644 --- a/ext/soap/tests/bug48557.phpt +++ b/ext/soap/tests/bug48557.phpt @@ -64,7 +64,7 @@ array(6) { float(123.5) [-2000]=> float(123.5) - [%u|b%"011"]=> + ["011"]=> float(123.5) [12]=> float(123.5) diff --git a/ext/soap/tests/bugs/bug28751.phpt b/ext/soap/tests/bugs/bug28751.phpt index 697ebd882a..88187eb109 100644 --- a/ext/soap/tests/bugs/bug28751.phpt +++ b/ext/soap/tests/bugs/bug28751.phpt @@ -4,13 +4,13 @@ Bug #28751 (SoapServer does not call _autoload()) <?php require_once('skipif.inc'); ?> --FILE-- <?php -function __autoload($className) { +spl_autoload_register(function ($className) { class SoapServerActions { function test() { return "Hello World"; } } -} +}); $server = new SoapServer(NULL, array('uri'=>"http://testuri.org")); $server->setClass("SoapServerActions"); |