我在获取包含在包含文件中的类的建议时遇到问题。
例如,文件 'Header.php' 的内容是:
//File 'Header.php':
include('User.php'); //Class file
当我现在在我的文件“Example.php”中包含 Header.php 时,我没有得到任何建议:
//File 'Example.php':
include('Header.php');
User::
输入 User:: 后,我将 User 类的 Method 和 Vars 作为建议,但没有任何建议。如果我将“User.php”直接包含在“Example.php”中,它可以工作,但这对我没有帮助。如何解决这个问题呢?