English 中文(简体)
Aptana 3 php 能够启动连接功能和可变的援助
原标题:Aptana 3 php can t activate function linking and variable assist

我刚刚升级到Aptana 3,似乎失去了我在Eclipse的一些伟大功能。 迄今为止,我可以说明如何重新采用。

具体来说,我需要这两项职能回头来:

FileUpload::checkForExistingUploadPath( ./somepath );

此前,对“ForExistingUploadPath”路的环绕会使其超负荷运转,我可以在这个班子里跳到这一功能。 它仍然把文件上载部分放在首位,但不是功能。 在同一个班子里,它甚至赢得了跳跃。

另一部分是让我知道这一职能使用了哪些变量。 以前,你可以 h倒对账。

checkForExistingUploadPath($var1, $var2 = true, $etc);

i.e 它提供了可变的名称和顺序。

如果能帮助将这些反馈转回来,我将不胜感激。 我确信,特别的偏好还有其他好处。

最佳回答

你们需要努力开展一个项目,该项目是作为Aptana PHP项目创建或重新定义的。 这样做使你所期望的先进特征得以实现。

In case you are creating a new project, use the Aptana PHP project wizard.

如果你在工作空间有项目,你必须把Aptana PHP Nature列入你的项目:

  • Right-click on the project in the Project Explorer View.
  • Choose Properties > Project Natures.
  • Select the PHP nature (the one with the icon).
  • Click OK. It will ask to close and reopen your project.

这样做(如果是,重新启用工作室)。

希望帮助!

问题回答

暂无回答




相关问题
Brute-force/DoS prevention in PHP [closed]

I am trying to write a script to prevent brute-force login attempts in a website I m building. The logic goes something like this: User sends login information. Check if username and password is ...

please can anyone check this while loop and if condition

<?php $con=mysql_connect("localhost","mts","mts"); if(!con) { die( unable to connect . mysql_error()); } mysql_select_db("mts",$con); /* date_default_timezone_set ("Asia/Calcutta"); $date = ...

定值美元

如何确认来自正确来源的数字。

Generating a drop down list of timezones with PHP

Most sites need some way to show the dates on the site in the users preferred timezone. Below are two lists that I found and then one method using the built in PHP DateTime class in PHP 5. I need ...

Text as watermarking in PHP

I want to create text as a watermark for an image. the water mark should have the following properties front: Impact color: white opacity: 31% Font style: regular, bold Bevel and Emboss size: 30 ...

How does php cast boolean variables?

How does php cast boolean variables? I was trying to save a boolean value to an array: $result["Users"]["is_login"] = true; but when I use debug the is_login value is blank. and when I do ...

热门标签