PHP Conference Japan 2024
添加注释

用户贡献的注释 1 条注释

lee dot howarth dot 90 at gmail dot com
10 年前
此处的文档不完全正确。

<?php

print_r
()get_defined_constants();
die;

?>

将显示基本上

[PHP_YAF_VERSION] => 2.3.2
[YAF_ENVIRON] => product
[YAF_ERR_STARTUP_FAILED] => 512
[YAF_ERR_ROUTE_FAILED] => 513
[YAF_ERR_DISPATCH_FAILED] => 514
[YAF_ERR_AUTOLOAD_FAILED] => 520
[YAF_ERR_NOTFOUND_MODULE] => 515
[YAF_ERR_NOTFOUND_CONTROLLER] => 516
[YAF_ERR_NOTFOUND_ACTION] => 517
[YAF_ERR_NOTFOUND_VIEW] => 518
[YAF_ERR_CALL_FAILED] => 519
[YAF_ERR_TYPE_ERROR] => 521

因此,使用 PHP_YAF_VERSION 而不是仅使用 YAF_VERSION
To Top