I have been working for 6 hours trying to get my standard core functions of PHP working with Eclipse 3.6 and PDT 2.2.1. For some reason, functions like echo, empty() and isset() come up on code completion, but functions like strtotime() and array_push() do not, even when I push CTRL+SPACE. Also, the function mysql_connect() comes up in the code assist, but mysql_query does not.
I have looked in several google search results and stackoverflow Q&As and found many solutions similar to this one:
Code completion/assist for built-in PHP functions in Eclipse PDT
I have made sure that my .buildpath looks like this:
<?xml version="1.0" encoding="UTF-8"?>
<buildpath>
<buildpathentry kind="con" path="org.eclipse.php.core.LANGUAGE"/>
<buildpathentry external="true" kind="lib" path="/Applications/MAMP/htdocs/harvestopia"/>
<buildpathentry external="true" kind="lib" path="/Applications/MAMP/bin/php/php5.3.6"/>
<buildpathentry external="true" kind="lib" path="/Applications/MAMP/htdocs/yharvestopia/YiiRoot/framework"/>
<buildpathentry kind="src" path=""/>
</buildpath>
My .project looks like this:
<?xml version="1.0" encoding="UTF-8"?>
<projectDescription>
<name>harvestopia</name>
<comment></comment>
<projects>
</projects>
<buildSpec>
<buildCommand>
<name>org.eclipse.wst.validation.validationbuilder</name>
<arguments>
</arguments>
</buildCommand>
<buildCommand>
<name>org.eclipse.dltk.core.scriptbuilder</name>
<arguments>
</arguments>
</buildCommand>
<buildCommand>
<name>org.maziarz.yiiclipse.builder</name>
<arguments>
</arguments>
</buildCommand>
</buildSpec>
<natures>
<nature>org.eclipse.php.core.PHPNature</nature>
<nature>org.maziarz.yiiclipse.nature</nature>
</natures>
</projectDescription>
My .settings/org.eclipse.php.core.prefs looksl ike this:
#Sat Nov 05 00:40:34 MDT 2011
eclipse.preferences.version=1
include_path=1;/Applications/MAMP/htdocs/yharvestopia/YiiRoot/framework
I am really banging my head against the wall and can really use some advice.
UPDATE: Without Yiiclipse, it still doesn't work. I created a new project in a new workspace called Test. The files look as follows but still do not allow for code assist on standard functions.
.project:
<?xml version="1.0" encoding="UTF-8"?>
<projectDescription>
<name>test</name>
<comment></comment>
<projects>
</projects>
<buildSpec>
<buildCommand>
<name>org.eclipse.wst.validation.validationbuilder</name>
<arguments>
</arguments>
</buildCommand>
<buildCommand>
<name>org.eclipse.dltk.core.scriptbuilder</name>
<arguments>
</arguments>
</buildCommand>
</buildSpec>
<natures>
<nature>org.eclipse.php.core.PHPNature</nature>
</natures>
</projectDescription>
.buildpath:
<?xml version="1.0" encoding="UTF-8"?>
<buildpath>
<buildpathentry kind="src" path=""/>
<buildpathentry kind="con" path="org.eclipse.php.core.LANGUAGE"/>
</buildpath>
.settings/org.eclipse.php.core.prefs:
#Sat Nov 05 09:38:26 MDT 2011
eclipse.preferences.version=1
include_path=0;/test
