zend studio导入svn项目后不能代码提示的解决

把项目下.project的文件内容改成如下:

<?xml version="1.0" encoding="UTF-8"?>
<projectDescription>
<name>项目名称</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>

原文地址:https://www.cnblogs.com/freemobile/p/5636003.html