聚指尖-聚指尖-第5页
聚指尖的头像-聚指尖
UID:1 已加入本站3340天 总消费:0.00 徽章-人气大使-聚指尖徽章-备受喜爱-聚指尖徽章-人气佳作-聚指尖8枚徽章管理员超级版主
ECShop出现Strict Standards: Only variables should be passed by reference in的解决方法-聚指尖

ECShop出现Strict Standards: Only variables should be passed by reference in的解决方法

今天开始研究ECShop,在安装完成的时候发现首页顶部、左侧和底部出现: Strict Standards: Only variables should be passed by reference in F:\wamp\www\ecshop\upload\includes\cls_tem...
1年前
0349
Strict standards: Non-static method cls_image::gd_version() should not be called statically in-聚指尖

Strict standards: Non-static method cls_image::gd_version() should not be called statically in

Strict standards: Non-static method cls_image::gd_version() should not be called statically in E:\SiteAll\zbphp.com\www\includes\lib_base.php on line346 这个错误的的处理是修改文件...
1年前
03312
Win10默认开启数字小键盘的方法-聚指尖

Win10默认开启数字小键盘的方法

用Win10系统的用户很多都设置了开机密码,但有不少用户开机时数字小键盘的状态是关闭的。怎么设置开机默认打开数字小键盘,以方便输入密码呢?操作方法第一步、按下Win+R组合键,再出现的运行命...
装完Centos7提示Initial setup of CentOS Linux 7 (core)-聚指尖

装完Centos7提示Initial setup of CentOS Linux 7 (core)

在用U盘装完CentOS后,重新开机启动后显示: Initial setup of CentOS Linux 7 (core) 1) [x] Creat user 2) [!] License information (no user will be created) (license not accepted) Pleas...
Centos最新方法升级php版本到5.2.11-聚指尖

Centos最新方法升级php版本到5.2.11

Centos最新方法升级php版本到5.2.11 rpm --import http://repo.webtatic.com/yum/RPM-GPG-KEY-webtatic-andy wget -P /etc/yum.repos.d/ http://repo.webtatic.com/yum/webtatic.repo yum --ena...
CentOS更新软件与更新内核-聚指尖

CentOS更新软件与更新内核

更新软件 yum update 更新内核 根据你的水平,我非常不推荐你通过编译的方式进行内核升级。因为1 你一定能成功编译内核2 你编译的内核的编译参数和CentOS官方的不一样3 你编译的时候没有加入Cen...
日期类问题-聚指尖

日期类问题

给两个日期怎么计算两者间的日期差数,其中还要考虑闰年。 闰年的判断规则是:当年数不能被100整除时若其能被4整除则为闰年,或者其能被400整除时也是闰年。有了这个规则,怎么写就简单了。 #in...
Qt之正则表达式-聚指尖

Qt之正则表达式

在用写程序的时候,往往会用到正则表达式,不仅仅是Web开发,MFC、GTK+、Qt开发的图形界面也是如此,只要了解其原理,语法也都大相径庭!1、非汉字(6-20位)常例:密码框 QRegExp password_reg...
CentOS正确关机方法-聚指尖

CentOS正确关机方法

关机前准备 1.观察系统使用状态 谁在线:who 联网状态:netstat -a 后台执行的程序:ps -aux 2.通知在线使用者关机时间 shutdown +2 'The machine will shutdown' # 2min 后关机,并通知在线者 关...
秒数转换为天小时分钟秒的格式-聚指尖

秒数转换为天小时分钟秒的格式

num 为需要转换的秒数 //天数计算 int days = (num)/(24*3600); //小时计算 int hours = (num)%(24*3600)/3600; //分钟计算 int minutes = (num)%3600/60; //秒计算 int second = (num)%60; `