mirror of
https://github.com/php/php-src.git
synced 2025-08-16 05:58:45 +02:00
ext/simplexml: Remove bool type coercions in tests
This commit is contained in:
parent
40be5fa99f
commit
4baecc1d4a
1 changed files with 2 additions and 2 deletions
|
@ -21,9 +21,9 @@ xmlns:xsd="http://www.w3.org/2001/XMLSchema"
|
||||||
EOF;
|
EOF;
|
||||||
|
|
||||||
$sxe = simplexml_load_string($xml);
|
$sxe = simplexml_load_string($xml);
|
||||||
var_dump($sxe->children('soap', 1));
|
var_dump($sxe->children('soap', true));
|
||||||
|
|
||||||
$sxe = simplexml_load_string($xml, NULL, 0, 'soap', 1);
|
$sxe = simplexml_load_string($xml, NULL, 0, 'soap', true);
|
||||||
var_dump($sxe->Body);
|
var_dump($sxe->Body);
|
||||||
var_dump($sxe->Body->children(''));
|
var_dump($sxe->Body->children(''));
|
||||||
var_dump($sxe->Body->children('')->businessList);
|
var_dump($sxe->Body->children('')->businessList);
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue