We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
The following code:
<?php $radicants = [ "15151324141414.412312232141241", ]; $fusion = $radicants; class EchoRequest{ } $wsdl = __DIR__."/bug41004.wsdl"; $client = new SoapClient($wsdl, array('location'=>'test://',"classmap" => $fusion, 'exceptions'=>0, 'trace'=>1)); $echo=new EchoRequest(); $client->echo($echo);
Resulted in this output:
/php-src/ext/soap/php_encoding.c:460: xmlNodePtr master_to_xml_int(encodePtr, zval *, int, xmlNodePtr, int): Assertion `!(((__ht)->u.flags & (1<<2)) != 0)' failed. Aborted (core dumped)
PHP 8.4.0-dev
ubuntu 22.04
The text was updated successfully, but these errors were encountered:
Fix phpGH-16256: Assertion failure in ext/soap/php_encoding.c:460
e0f1c4a
The class map must be an associative array, not a packed array.
Merge branch 'PHP-8.2' into PHP-8.3
2dbc605
* PHP-8.2: Fix GH-16256: Assertion failure in ext/soap/php_encoding.c:460
Merge branch 'PHP-8.3' into PHP-8.4
fa52f5f
* PHP-8.3: Fix GH-16256: Assertion failure in ext/soap/php_encoding.c:460
922b9d6
Merge branch 'PHP-8.4'
09614f4
* PHP-8.4: Fix GH-16256: Assertion failure in ext/soap/php_encoding.c:460
nielsdos
Successfully merging a pull request may close this issue.
Description
The following code:
Resulted in this output:
PHP Version
PHP 8.4.0-dev
Operating System
ubuntu 22.04
The text was updated successfully, but these errors were encountered: