function nusoap_base::appendDebug in Salesforce Suite 5.2
Same name in this branch
- 5.2 includes/nusoap.php \nusoap_base::appendDebug()
- 5.2 includes/nusoap.orig.php \nusoap_base::appendDebug()
Same name and namespace in other branches
- 5 includes/nusoap.php \nusoap_base::appendDebug()
- 5 includes/nusoap.orig.php \nusoap_base::appendDebug()
* adds debug data to the instance debug string without formatting * *
Parameters
string $string debug data: * @access public
6 calls to nusoap_base::appendDebug()
- nusoap_base::debug in includes/
nusoap.php - * adds debug data to the instance debug string with formatting * *
- nusoap_base::debug in includes/
nusoap.orig.php - * adds debug data to the instance debug string with formatting * *
- nusoap_base::serializeEnvelope in includes/
nusoap.php - serializes a message
- nusoap_base::serializeEnvelope in includes/
nusoap.orig.php - serializes a message
- nusoap_base::serialize_val in includes/
nusoap.php - * serializes PHP values in accordance w/ section 5. Type information is * not serialized if $use == 'literal'. * * @access public
File
- includes/
nusoap.php, line 265
Class
- nusoap_base
- nusoap_base
Code
function appendDebug($string) {
if ($this->debugLevel > 0) {
// it would be nice to use a memory stream here to use
// memory more efficiently
$this->debug_str .= $string;
}
}