在一个文件中,我创建了一个常量:
print (df[df['name'] == 'Alice'].index[0])
0
之后我试图在另一个php文件中使用PHPDoc中的这个常量:
/**
* Relative path to author photo used by default.
* Used when author photo is not loaded.
*
* @const DEFAULT_AVATAR_PATH
*/
define('DEFAULT_AVATAR_PATH', '/images/authors/def_author.png');
所以我可以在PHPStorm中看到蓝色文字:
但是我无法点击它。它没有显示任何内容!
如何解决?