-
php fread()函数使用技巧
本文为大家讲解了php中的fread()函数的使用方法,感兴趣的同学参考下。 fread() 从文件指针 handle 读取最多 length 个字节...
PHP 2014-12-10 02:45:03 -
Tango更名:Windows Phone 7.5 Refresh
上周,我们曾报道Tango系统手机的OS局限性(那些256M内存的手机)。直到目前为止,Tango系统手机的反馈不佳...
系统程序 2014-12-09 13:21:05 -
mysql错误:The MySQL server is running with the --skip-grant-tables option so it cannot execute this statement解决方法
本文为大家讲解的是mysql错误:The MySQL server is running with the --skip-grant-tables option so it cannot execute this statement解决方法,感兴趣的同学参考下。 错误描述: mysql> grant all on cactidb.* to dbuser@'localhost' identified by '123'; ERROR 1290 (HY000): The MySQL server is running with the --skip-grant-tables option so it cannot execute this statement 解决方法: 先刷新一下权限表...
数据库操作教程 2014-12-09 03:09:06 -
php中__destruct与register_shutdown_function执行的先后顺序问题
本文为大家讲解的是php中__destruct与register_shutdown_function执行的先后顺序问题,需要的朋友可以参考下 根据php手册的解析。 __destruct是 析构函数会在到某个对象的所有引用都被删除或者当对象被显式销毁时执行...
PHP 2014-12-08 05:45:04 -
教你在Win8中升级.NET Framework 3.5.1
虽然Win8系统现在还处于测试阶段,但很多喜欢尝试新产品的用户都已经开始使用Win8,将将其作为主要操作系统使用。不过在使用Win8的过程中,很多反应无法.NET Framework 3.5.1无法升级,系统提示遇到错误0x800F0906,导致很多软件无法正常使用...
系统程序 2014-12-07 21:20:57 -
法国SFR曝光WP8.1 GDR1/Lumia Denim推送时间
站长搜索(www.adminso.com):法国SFR曝光WP8.1 GDR1/Lumia Denim推送时间 WP之家讯 微软将在本月开始推送WP8.1 GDR1正式版和Lumia Denim固件,这已经不是什么秘密了,而也将跨进2015年。法国SFR的Lumia Denim推送程度也透露实际推送会在12月推送,2015年1月结束...
业界动态 2014-12-07 12:51:08 -
php set_magic_quotes_runtime() 函数过时解决方法
本文为大家讲解的是php set_magic_quotes_runtime() 函数过时解决方法,感兴趣的同学参考下。 PHP5.3中 bool set_magic_quotes_runtime ( bool $new_setting )函数过时. 把函数: set_magic_quotes_runtime($new_setting); 替换成: ini_set("magic_quotes_runtime", $new_setting);...
PHP 2014-12-07 10:18:05 -
mysql报错:Error writing file '/var/run/mysqld/mysqld.pid' 解决方法
本文为大家讲解的是mysql报错:Error writing file '/var/run/mysqld/mysqld.pid'问题的解决方法,感兴趣的同学参考下。 错误描述: [ERROR] /usr/libexec/mysqld: Error writing file '/var/run/mysqld/mysqld.pid' (Errcode: 28) 130830 10:59:02 InnoDB: Initializing buffer pool, size = 1.0G 130830 10:59:02 InnoDB: Completed initialization of buffer pool 130830 10:59:02 InnoDB: Started; log sequence number 0 2727887496 130830 10:59:02 [ERROR] /usr/libexec/mysqld: Error writing file '/var/run/my...
数据库操作教程 2014-12-07 01:33:04 -
PHP 错误: ZipArchive::getFromName(): Invalid or unitialized Zip object in 解决方法
本文为大家讲解的是PHP 错误: ZipArchive::getFromName(): Invalid or unitialized Zip object in 解决方法,感兴趣的同学参考下 错误: PHP Warning: ZipArchive::getFromName(): Invalid or unitialized Zip object in 原因: 单从字面上理解大概是说zip对象是无效的, 解决方法: 检测一下你的php.ini是否启动了php_zip...
PHP 2014-12-06 23:15:06 -
linux下安装MYSQL错误:conflicts with file from package mysql-libs-*的解决方法
本文向大家讲解了linux下安装MYSQL错误:conflicts with file from package mysql-libs-*的解决方法 ,感兴趣的同学参考下。 安装MYSQL时错误如下: [root@localhost opt]# rpm -ivh MySQL-server-5.5.32-1.el6.x86_64.rpm Preparing... ########################################### [100%] file /usr/share/mysql/charsets/Index.xml from install of MySQL-server-5.5.32-1.el6.x86_64 conflicts with file from package mysql...
数据库操作教程 2014-12-06 03:12:03 -
php 用disk_free_space函数 返回目录可用空间
本文为大家讲解的是php 如何使用disk_free_space函数 来返回目录可用空间大小的方法,感兴趣的同学参考下。 disk_free_space返回目录可用空间,这个可根据你当关硬盘的空间大小来判断 用法 disk_free_space($path); 注: 本函数不能作用于远程文件,被检查的文件必须通过服务器的文件系统访问...
PHP 2014-12-03 20:48:56 -
PHP在IE下的iframe跨域导致session丢失问题解决方法
本文为大家讲解的是关于PHP在IE下的iframe跨域导致session丢失问题解决方法,感兴趣的同学参考下. 一个登录页面,被别的网站用iframe嵌进去后,死活无法登录(只在IE中存在这种情况)。主要是session无法被保存的问题,下面把个人的解决过程分享个大家 今天搞的一个登录页面,被别的网站用iframe嵌进去后,死活无法登录(只在IE中存在这种情况)...
PHP 2014-12-02 01:34:28