I can't really understand what happened here. What I've done was to copy a php file to another project in the same Zend. It's a warning, not an error.
My computer is supposed to have only one php version, so it seems nothing to do with the php version.
the code is very normal, like : print_r ( "image:" );
try this kb.zend.com/index.php?View=entry&EntryID=415 – @Rakesh Sharma
To workaround this problem the user needs to manually add relevant content into the '.buildpath' file.
.buildpath contents for a PHP Project
<?xml version="1.0" encoding="UTF-8"?>
<buildpath>
<buildpathentry kind="src" path=""/>
<buildpathentry kind="con" path="org.eclipse.php.core.LANGUAGE"/>
</buildpath>
.buildpath contents for a Zend Framework Project
<?xml version="1.0" encoding="UTF-8"?>
<buildpath>
<buildpathentry kind="src" path=""/>
<buildpathentry kind="con" path="org.eclipse.php.core.LANGUAGE"/>
<buildpathentry kind="con" path="org.zend.php.framework.CONTAINER"/>
</buildpath>
After the build process finishes, you should see no warnings for standard PHP functions.