在Zend studio中,如何告诉ide变量的类型,以便我有自动完成功能?
在php中我们使用include。因此,变量在一个文件中定义,然后它们的范围也跨越包含的文件。 Zend studio 不知道如何获取我在包含文件中使用的变量的类型,当变量类型是一个大类时,这非常烦人。
有没有办法提示 ide 有关变量类型的信息?在包含的文件中?
In php we use includes. So variables defined in one file and then their scope spans included files too.
Zend studio has no idea how to get the type of the variable I am using inside an included file, this is very annoying when the variable type is a big class.
Is there a way to hint the ide about variable types? in included files?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
这是手动输入旧的 Zend Studio 5。
此功能也适用于新的 Zend Studio,包括版本 10!
Here is a manual entry of the very old Zend Studio 5.
This feature is also works in new Zend Studio including version 10!
我有一篇关于一些代码完成技巧的文章 Zend Studio 和 PDT 代码完成技巧 这可能会有所帮助。但是,尝试限制其他文件所需的变量是个好主意。它很容易导致代码难以维护。
I have an article on some code completion tips Zend Studio and PDT Code Completion Tips that might help. However, it is a good idea to try and limit the variables that required from other files. It can quite easily make for difficult to maintain code.