PHP版本升级到5.4后,原来的memcache用不了了,提示如下 "PHP Startup: memcache: Unable t initialize module. Module compiled with module API=20090626 PHP compiled with module api=20100525 These options need to match" 解决办法:PHP升级后,PHP的某些扩展也得相应的升级,将本压缩包里的文件放到PHP的ext文件夹覆盖原来的文
在php5.3环境下运行,常常会出现
Deprecated: Function ereg() is deprecated in…和Deprecated: Function ereg_replace() is deprecated in…这些类型的报错提示。
其原因在于:php5.3以上的版本不支持ereg()函数,而是使用preg_match()函数;不支持ereg_replace()函数,而使用preg_replace()函数。
解决方法:将不支持的函数修改为支持的函数即可。