当前位置:首页 > 搜索和 or 相关的文章

CentOS 64 编译PHP出现 error: Cannot find ldap libraries in /usr/lib

添加日期:2013-12-03 21:18:55 发布:smiling 
在CentOS 64位下编译安装PHP5 4 8。cp -frp usr lib64 libpng* usr lib 结果在configure的时候提示,configure: error: Cannot f ...

FastCGI Error Error Number: 5 (0x80070005)解决办法

添加日期:2013-12-03 21:04:54 发布:smiling 
FastCGI ErrorThe FastCGI Handler was unable to process the request ------------------------------------------------------ ...

PHP中使用foreach和引用导致程序BUG的问题介绍

添加日期:2013-12-02 21:05:07 发布:smiling 
foreach 循环实例用法,在PHP中的foreach是用来进行循环对一个数组的所有元素,作者的foreach基本语法如下:FOREACH($array_variableas$valu ...

php中Fatal error: Class ZipArchive not found的解决办法

添加日期:2013-12-02 20:54:07 发布:smiling 
出现这个错误说明是程序在调用& 39;ZipArchive& 39; 这个类的时候没有成功,原因是由于在安装php的时候没有增加php zip的支持(非zlib) ...

CKEditor+CKFinder+php上传文件配置方法

添加日期:2013-12-02 20:35:31 发布:smiling 
CKEditor+CKFinder+php上传文件配置方法 ,新版本的CKEditor只提供了基本的文本编辑功能,上传模块由另一个组件CKFinder。这里主要记录CKFi ...

php中json_decode和var_export的参数用法

添加日期:2013-12-02 16:37:11 发布:smiling 
无论是json_decode还是var_export都是有第二个参数的,以前从来没有注意过,T_T 而且,这个var_export函数也是第一次知道,基础啊,还是不 ...

Parse Error: syntax error, unexpected $end 错误

添加日期:2013-12-02 16:21:04 发布:smiling 
也许是不熟悉的php的一些特性吧,不过写多了,也就慢慢适应将就了,这里就整理一个代码编写调试问题,错误如下:Parse error: syntax err ...

解决Magento报错:Fatal error: Call to undefined method

添加日期:2013-11-30 15:41:41 发布:smiling 
Magento在产品导入的时候出现错误: "Fatal error : Call to undefined method Mage_Adminhtml_Block_Abstract::getexceptions() in appcodecoreMageAdminhtmlBlockSystemConvertProfileRun php on line 167 "...

Allowed memory size of 8388608 bytes exhausted (tried to allocate 46080 bytes) i

添加日期:2013-11-30 15:04:26 发布:smiling 
今天在用一个php产品时出现了Allowed memory size of 8388608 bytes exhausted (tried to allocate 46080 bytes) in 提示信息,经过查核是因为此产品未考虑到用户内存引起的,下面是解决的方法:...

XSLTProcessor 中 registerPHPFunctions 后无法调用 php 函数

添加日期:2013-11-30 14:01:26 发布:smiling 
XSLT 是一个非常方便的转换 XML 的工具,PHP 里面是通过 XSLTProcessor 来实现;XSLT 中内置了许多有用的函数,同时,只需要调用 XSLTProcessor 实例的 registerPHPFunctions 方法 ...

Parse error: syntax error, unexpected T_LNUMBER

添加日期:2013-11-29 21:31:30 发布:smiling 
Parse error: syntax error, unexpected T_LNUMBER<?php 首先你的变量赋值有问题,在没有进行str_replace()的时候就会报错$a=& 39;" ...

php 错误屏蔽 error_reporting详解

添加日期:2013-11-29 16:20:32 发布:smiling 
在Windows环境下:原本在php4 3 0中运行正常的程序,在4 3 1中为何多处报错,大体提示为:Notice:Undefined varialbe:变量名称,例如有如下的代码:...