|
php.net | support | documentation | report a bug | advanced search | search howto | statistics | random bug | login |
[2018-10-05 12:41 UTC] marek dot salzinger at gmail dot com
Description: ------------ --- From manual page: http://www.php.net/function.xmlrpc-decode --- The function xmlrpc_decode is creating a memory leak on Windows. I am using PHP 7.2.9. I tried my code on Ubuntu and there was no memoryleak involved. Test script: --------------- //pseudo: while( condition ) { $ch = curl_init( $xml_rpc_url . $xml_rpc_login ); curl_setopt($ch, CURLOPT_SSL_VERIFYHOST, 0); curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, 0); curl_setopt($ch, CURLOPT_ENCODING ,"UTF-8"); curl_setopt($ch, CURLOPT_CUSTOMREQUEST, 'POST'); curl_setopt($ch, CURLOPT_HTTPHEADER, array('Content-Type: text/xml')); curl_setopt($ch, CURLOPT_POSTFIELDS, $xml_request_query); curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1); $xml_response_aa[$imported_data_type][$group_name] = xmlrpc_decode(utf8_encode(curl_exec($ch))); curl_close($ch); unset($ch); } PatchesPull RequestsHistoryAllCommentsChangesGit/SVN commits
|
|||||||||||||||||||||||||||||||||
Copyright © 2001-2025 The PHP GroupAll rights reserved. |
Last updated: Sun Nov 09 09:00:01 2025 UTC |
Its a multi dimensional array. It can have up to 600~1000 Entries. The total length of one return value is 10933653. The structure is: array["type"]["group"] = array( 'callId' => value, 'callStepId' => value, 'callLegUUID' => value, 'agentId' => value, 'cdrAccountId' => value, 'callerAccountId' => value, 'calledAccountId' => value, 'calledCallerId' => value, 'starttime' => value, 'ringingtime' => value, 'linktime' => value, 'callresultTime' => value, 'callResult' => value, 'callResultCausedBy' => value, 'lineId' => value, 'lineName' => value, 'answeredElsewhere' => value, 'incoming' => value, 'answered' => value, 'hasVoicemail' => value, 'hasMonitor' => value, 'callbackNumberExtern' => value, 'groupname' => value ); Its formated in xml so the output is a bit of a mess. i will give you a example output, this may not create the memory leak. <?xml version="1.0" encoding="UTF-8"?> <methodCall> <methodName>Queue.getHistoryData</methodName> <params> <param> <value> <struct> <member> <name>queueName</name> <value> <string>testIq</string> </value> </member> <member> <name>from</name> <value> <string>20150701T12:59:05</string> </value> </member> <member> <name>to</name> <value> <string>20160701T12:59:05</string> </value> </member> </struct> </value> </param> </params> </methodCall>