gpt4 book ai didi

php - 如何检测是否启用了 PHP JIT

转载 作者:行者123 更新时间:2023-12-03 11:21:19 27 4
gpt4 key购买 nike

检测 PHP 是否使用 JIT 编译并且从运行脚本启用 JIT 的最简单方法是什么?

最佳答案

您可以通过调用 opcache_get_status() 直接查询 opcache 设置。 :

opcache_get_status()["jit"]["enabled"];
或在 php.ini 中执行查找:
ini_get("opcache.jit")
这是一个整数(作为字符串返回),其中最后一位数字表示 JIT 的状态:
0 - don't JIT
1 - minimal JIT (call standard VM handlers)
2 - selective VM handler inlining
3 - optimized JIT based on static type inference of individual function
4 - optimized JIT based on static type inference and call tree
5 - optimized JIT based on static type inference and inner procedure analyses
来源: https://wiki.php.net/rfc/jit#phpini_defaults

关于php - 如何检测是否启用了 PHP JIT,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/62654398/

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