I’ve had index.php and several files which cascading include,something like this.
index.php -> controller.php -> model.php -> view.php
In model.php I have a function using ini_set('memory_limit', '-1');
When will the ini_set() change of the setting expire?
After executed index.php? Or view.php? Or the function in model.php?
ini_set()is global for everything that happens in the script (not just the current file: the whole thread of execution that is occurring), for this entire one request; it doesn’t matter whence you invoke it, it will always affect the global settings for this script. The effect will expire when your script terminates – e.g. throughexit,die, or running off the end ofindex.php.It will not affect any other scripts running simultaneously (those need to call
ini_setthemselves), and it will not persist into later requests (if you need persistent settings, you need to editphp.ini).Note that the documentation says the same thing:
Edit: Since it is apparently unclear: the value you change using
ini_setwill be valid for the whole script onwards. It doesn’t matter where the execution currently is (in what file, in what class, in what function); the setting will be the same, everywhere. It will remain so until you change it again, or until the whole script terminates. (not the current file, not the current function; the whole script)