【发布时间】:2014-04-26 22:00:59
【问题描述】:
我正在使用 Aptana Studio 3
如果我创建一个 php 文件并添加 2 个函数。 函数 test1() 和函数 test2()
然后我调用了函数 test1,然后我看到了关于这个函数的信息,比如我需要什么类型的变量等等,效果很好。
但现在我有了这个文件结构:
\ralph
\inc
functions.php # (here are the 2 test functions now)
\projects
\testwebsite
index.php
在 index.php 中我称之为:
include('../../inc/functions.php');
当我调用函数 test1 我再也看不到 hte 函数的详细信息了。 有没有办法做到这一点?
拉尔夫
【问题讨论】: