Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
如果我ini_set('default_socket_timeout',30);在一个PHP页面中使用,这会影响服务器上进行的所有套接字调用还是仅影响该页面当前生命周期上的那些?
ini_set('default_socket_timeout',30);
PHP
干杯!
正如 PHP 手册页所说:
配置选项将在脚本执行期间保留此新值,并将在脚本结束时恢复。
来源: http: //php.net/manual/en/function.ini-set.php
只是在请求期间使用该脚本制作的那些。
所有其他请求将使用 php.ini 文件中的默认值
仅在当前脚本调用中。
见PHP ini_set