包含文件内针对外部定义的变量的代码帮助
假设我在 index.php
中创建一个对象并将引用保存在变量 $obj
中。 稍后在 index.php
中,我包含/需要一个文件 req.php
,我想在其中使用该对象的方法。
当我在 req.php
中输入 $obj->
时,有没有办法让 Aptana 3.0.4 显示该对象的可用方法?
即 Aptana 应该认识到变量 $obj
已在文件层次结构中的较高位置定义,并且它保存对对象的引用。
Let's say I create an object in index.php
and save the reference in the variable $obj
.
Later in index.php
I include/require a file req.php
where I want to use a method of the object.
Is there a way to make Aptana 3.0.4 show me the available methods of the object when I type $obj->
inside req.php
?
I.e. Aptana should recognize that the variable $obj
is already defined higher in the file hierarchy and that it holds a reference to an object.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
如果您在第一个 var 之前添加注释,可能会有所帮助
May be it helps if you add comment before the first var using
版本 3.0.4 中的正确语法如下:
由于这不是一个很好的语法,因此我正在努力提供额外的支持,例如 PDT 特殊 @var 语法:
Studio 的下一个版本应该支持两者。
希望有帮助
The correct syntax in version 3.0.4 is like that:
Since this is not that great of a syntax, I'm working on having additional support, like with the PDT special @var syntax:
Both should be supported in the Studio's next release.
Hope that helps