php.net |  support |  documentation |  report a bug |  advanced search |  search howto |  statistics |  random bug |  login
Doc Bug #61489 Undocumented options of SoapServer::SoapServer
Submitted: 2012-03-23 09:45 UTC Modified: 2015-07-07 22:21 UTC
Votes:7
Avg. Score:3.9 ± 0.8
Reproduced:7 of 7 (100.0%)
Same Version:6 (85.7%)
Same OS:6 (85.7%)
From: t dot umyarov at gmail dot com Assigned: cmb (profile)
Status: Closed Package: Documentation problem
PHP Version: Irrelevant OS:
Private report: No CVE-ID: None
 [2012-03-23 09:45 UTC] t dot umyarov at gmail dot com
Description:
------------
As a result of bug fix, new "send_errors" flag was added to 
SoapServer::SoapServer's $options parameter: https://bugs.php.net/bug.php?
id=42214. But it is not reflected in 
documentation: http://php.net/manual/en/soapserver.soapserver.php

Test script:
---------------
ext/soap/soap.c, lines 1169-1172:


if (zend_hash_find(ht, "send_errors", sizeof("send_errors"), (void**)&tmp) == SUCCESS &&
	(Z_TYPE_PP(tmp) == IS_BOOL || Z_TYPE_PP(tmp) == IS_LONG)) {
	service->send_errors = Z_LVAL_PP(tmp);
}



Patches

Add a Patch

Pull Requests

Add a Pull Request

History

AllCommentsChangesGit/SVN commitsRelated reports
 [2015-07-03 12:41 UTC] driezasson at me dot com
Hmmm… I was just about submit the same bug and hopefully the report system pointed me here. I am disappoint – This report is from 2012, the original bug from 2007 and still no change?
 [2015-07-07 22:21 UTC] cmb@php.net
-Status: Open +Status: Closed -Assigned To: +Assigned To: cmb
 [2015-07-07 22:21 UTC] cmb@php.net
This bug has been fixed in the documentation's XML sources. Since the
online and downloadable versions of the documentation need some time
to get updated, we would like to ask you to be a bit patient.

Thank you for the report, and for helping us make our documentation better.
 
PHP Copyright © 2001-2024 The PHP Group
All rights reserved.
Last updated: Thu Apr 25 20:01:45 2024 UTC