gpt4 book ai didi

PHP CLI 有几秒钟的延迟

转载 作者:太空宇宙 更新时间:2023-11-03 17:15:28 25 4
gpt4 key购买 nike

当我在 CLI 模式下运行 PHP(CentOS 6.5 下的 PHP 5.6.6 使用 VirtualBox 作为 VM 运行)它有几秒钟的延迟,即使我只检查版本并且禁用了 php.ini 文件:

time php -n -v
PHP 5.6.6 (cli) (built: Apr 2 2015 14:18:24)
Copyright (c) 1997-2015 The PHP Group
Zend Engine v2.6.0, Copyright (c) 1998-2015 Zend Technologies

real 0m5.066s
user 0m0.012s
sys 0m0.006s

最佳答案

问题与 PHP 正在执行的 DNS 调用有关。参见 herehere .

解决方案是添加主机名

[root@dev-machine ~]# hostname
dev-machine.com

到/etc/hosts:

127.0.0.1 dev-machine.com

结果:

time php -n -v
PHP 5.6.6 (cli) (built: Apr 2 2015 14:18:24)
Copyright (c) 1997-2015 The PHP Group
Zend Engine v2.6.0, Copyright (c) 1998-2015 Zend Technologies

real 0m0.018s
user 0m0.012s
sys 0m0.004s

关于PHP CLI 有几秒钟的延迟,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/29510665/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com