解决zend studio代码无法自动提示以及代码跟踪函数和变量的问题

zend studio这工具会突然抽风,所有函数方法不能自动提示。下面是一些penngo用过的、收集整理的解决方法。

方法1、在不提示的项目上鼠标右键,打开菜单,选择Build Path->Configure Build Path,在弹出窗口中选择PHP Build Path->Add Folder...,把当前项目添加到build path。

如果函数突然不提示,可以先用这个方法检查build path有没有当前项目。但比较多情况是从外部导入项目(例如svn),会没有build path数据。

方法2、先取消菜单Project->Build Automatically的选中状态,再点击Project->Clean...清理项目,再重新选中Project->Build Automatically。这个方法我用得最多。

方法3、打开zend studion的wordspace目录(如果不知wrodspace目录在哪,可以打开菜单file->switch wordspace->other...查看),接着到这个文件夹,打开文件目录.metadata->.plugins->org.eclipse.core.runtime->.settings。到了.settings目录之后,删除org.eclipse.dltk.ui.prefs文件。然后刷新项目或重启Zend Studio。

现在遇到不提示情况,先用方法1检查,再用方法2检查,最后用方法3检查。。。。。大多数情况下,用方法1和方法2就能解决问题。

时间: 2024-11-18 23:53:14

解决zend studio代码无法自动提示以及代码跟踪函数和变量的问题的相关文章

彻底解决zend studio 下 assignment in condition警告

最近在mac系统下安装zend studio作为php开发工具,把以前的代码导入,发现项目中有很多 “assignment in condition”的警告,造成原因是在条件判断的if.while中使用了如下类似的做法: if ($res = $other) while (($row = $res->fetchRow(DB_FETCHMODE_OBJECT))) 想去掉这个警告有多种方法,这里列出两种,第一种是从代码的角度,把代码写的更健壮,例如: if (($res = $other) !=

线程运行栈StackTrace用法,代码调用树查看,出错代码位置信息提示,代码所在类名包名文件名查看

1.代码调用树查看 2.出错代码位置信息提示 功能函数: /** 在LogCat中输出提示信息info,并给出输出该信息在代码中的完整调用树 */ public static void MessageWithSrcTree(String info) { StackTraceElement[] elem = Thread.currentThread().getStackTrace(); //从当前位置,获取代码调用堆栈 for(StackTraceElement e : elem) { Strin

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

把项目下.project的文件内容改成如下: <?xml version="1.0" encoding="UTF-8"?><projectDescription><name>项目名称</name><comment></comment><projects></projects><buildSpec><buildCommand><name>

Eclipse 解决PHP函数代码不能自动提示问题

检查文件 .buildpath <?xml version="1.0" encoding="UTF-8"?> <buildpath>   <buildpathentry kind="src" path="mysourcepath"/>   <buildpathentry kind="con" path="org.eclipse.php.core.LANGU

Visual Studio Code python 代码快速自动提示

1.file --> setting->设置 搜索 python 或者auto_complete setting.json { "explorer.confirmDelete": false, // "python.linting.pylintArgs": [ // "--generate-members" // ], "editor.suggestSelection": "first", &q

Eclipse中实现JAVA代码的自动提示功能

1.打开Eclipse,在.出现时进行代码提示换成任意字母+.出现时的代码提示了(.abcdefghijklmnopqrstuvwxyz):

在jsp中自动提示jquery代码

右击工程->选择属性->在上面框中打入"javascript",找到include path->libraries选择 add javascript libraries ->选择jQuery libraries->OK

解决visual studio换行(回车键)不能代码补全问题

打开工具--选项:将标红的位置改为true即可. 原文地址:https://www.cnblogs.com/xiximayou/p/12078199.html

Zend studio php内置函数没有自动补全或提示函数未定义&quot;Call to undefined function &quot;

解决办法: 1, 修改项目 .buildpath 文件 <?xml version="1.0" encoding="UTF-8"?> <buildpath> <buildpathentry kind="src" path=""/> <buildpathentry kind="con" path="org.eclipse.php.core.LANGUAGE&