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

Popular posts from this blog

commonjs - How to write a typescript definition file for a node module that exports a function? -

openid - Okta: Failed to get authorization code through API call -

thorough guide for profiling racket code -