Is there a maximum size of return values in SOAP/PHP? -
i calling soap function in php, returns string array. there maximum allowed size of returned array? if yes, maximum?
the default amount of memory php allows script allocate 128 mb, , includes variables such arrays.
this 128 mb limit can overridden globally changing memory_limit
option in php.ini
. changing setting -1 means "unlimited".
it can overridden on per script basis using ini_set
function:
ini_set('memory_limit', '-1'); // unlimited ram
when "unlimited" used, size of array determined amount of available ram on machine.
Comments
Post a Comment