查找或列出PHP文件中使用的所有常量

时间:2013-07-03 02:17:31

标签: php constants

如何管理常数?

我正在为我的网站使用zencart。

我将所有全局常量添加到:

includes/languages/english/english.php

和我的内容在我的任何页面中使用,例如:

includes/modules/meta_tags.php

问题是有些日子我从任何php文件中删除了一个常量,但是我没有在english.php中删除它。
一次又一次,我不知道english.php中的常量是什么,它们在哪里使用。

有没有办法知道php文件中使用了哪些常量?

<?php 
    // includes/languages/english/english.php
    define('HELLO','hello');
    define('WORLD','world');
?>

<?php 
    // includes/modules/meta_tags.php
    echo HELLO;
?>

<?php 
    // includes/modules/product_listing.php
    echo WORLD;
?>

2 个答案:

答案 0 :(得分:2)

PHP具有人类已知的每项任务的功能。

这包括get_defined_constants()功能。

答案 1 :(得分:1)

一些ides,比如netbeans,phpstorm,可能还有很多其他功能,比如“find usages”和“refactor”,它们在重命名/更新/删除时非常有用,并且它们支持常量。

这并没有告诉你“特定文件中使用了哪些注释”,但是,我猜它对于类似的用途对你有用。