首页 > php开发

php错误提示:Call-time pass-by-reference has been deprecated

今天在写引用时突然出现了Warning: Call-time pass-by-reference has been deprecated - argument passed by value; If you would like to pass it by reference, modify the declaration of getimagesize(). If you would like to enable call-time pass-by-reference, you can set allow_call_time_pass_reference to true in your INI file. However, future versions may not support this any longer错误,后来才知道原因是此方法已不被赞成并在 PHP/Zend 未来的版本中很可能不再支持了

阅读全文

phpmyadmin配置文件现在需要绝密的短语密码

在使用phpmyadmin时我们可能会碰到phpmyadmin配置文件现在需要绝密的短语密码错误提示,配置如下:phpmyadmin/config.inc.php,代码如下:

如果你的phpmyadmin中没有config.inc.php 这个文件我们要找到 phpMyAdmin 文件中有一个文件"config.sample.inc.php",然后重命名为"config.inc.php"上传服务器,然后把:$cfg['blowfish_secret'] = ";或其它值即可.

阅读全文

php错误Fatal error: Out of memory (allocated 262144)

昨天网站用着用着就提示了Fatal error: Out of memory (allocated 262144),后来百度搜索了一些解决方法,下面我分享给各位朋友。

从上面的Out of memory (allocated 262144)看出是超过了256MB了吧,这个我们只要调整一下php.ini中的一个参考即可,解决方法是修改php.ini,加大memory_limit

阅读全文

mysql_connect提示

连接代码:

Make a phpinfo() page.  Look for 'mysql.default_socket', 'mysqli.default_socket',and'pdo_mysql.default_socket'.  Remember their value; this is where PHP is trying to connect to MySQL.

阅读全文

PHP文件下载的小实例

这个文件下载实例做得非常的详细他是结合header函数与while fread函数把文件分断读出来然后再发送到客户端了,算得上一个标准的文件下载实例。

一个PHP文件下载的小实例

阅读全文