摘要:
PHP Manual PreferencesThe PHP Manual preferences page sets the location of sites which allow you to access and view the PHP Manual and allows you to add, edit or remove sites.The PHP Manual contains an explanation of PHP functions. PHP Manuals can be accessed online or locally from within PDT in ord 阅读全文
摘要:
折腾了一下午,终于解决了。zend studio 似乎无法使用 "lauch with zend application deployment"创建项目。解决办法:使用zend framework命令行工具1.最简单的方法是安装Zend Server。Zend Server 已经有 Mac OSX,Windows,Fedora Core,和 Ubuntu 版本的安装程序,以及一个适用于绝大多数 Linux 的安装包。安装 Zend Server 以后,可以在 Mac OSX 和 Linux 下的 /usr/local/zend/share/ZendFramework,在 W 阅读全文
摘要:
如果你的php版本是5.3以上,且是thread safe的,那么不要浪费你的时间做尝试,建议你直接改用XDebug吧。以下官方给出的解释。The Debugger we provide supports only the non-thread-safe architecture, that is why it does not load in your configuration.Zend stopped supporting the thread safe architecture when Microsoft also decided to implement its PHP engin 阅读全文
摘要:
使用下面的函数可以直接取得IFrame里的标签<script type="text/javascript">function getElementByIdInIFrame(objIFrame, idInIFrame){ var obj; if (objIFrame.contentDocument) // For NS6 obj = objIFrame.contentDocument.getElementById(idInIFrame); else if (objIFrame.contentWindow) // For IE5.5 and IE6 obj = ob 阅读全文
摘要:
1.dreamweaver 不能用了。提示 java vs6 运行时没有安装。 应该安装以下版本的更新,(而不是苹果客服告知我的用于Mac OS X 10.7 的Java更新1)Java for OS X 2012-004 http://support.apple.com/kb/DL15152.按往常一般在浏览器输入localhost/.../....php 报错如下: The requested URL "..." was not found on this server. 原因:系统升级导致apache 配置更改,配置文件中PHP相关项目需要重新设置。 解决办法: 首先 阅读全文