最新发布第5页

Qt之正则表达式

在用写程序的时候,往往会用到正则表达式,不仅仅是Web开发,MFC、GTK+、Qt开发的图形界面也是如此,只要了解其原理,语法也都大相径庭!1、非汉字(6-20位)常例:密码框 QRegExp password_reg...
聚指尖的头像-聚指尖聚指尖2年前
05212
Crayon Syntax Highlighter – 完善的代码高亮插件-聚指尖

Crayon Syntax Highlighter – 完善的代码高亮插件

分享代码博客?程序员博客?想要一个酷炫的代码高亮插件?Crayon Syntax Highlighter 我认为可以算是目前样式最多、易用性最高、功能最强的 WP 代码高亮插件了。也因此 CSH 会比其它的插件大一...
聚指尖的头像-聚指尖聚指尖2年前
05210

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 这个错误的的处理是修改文件...
聚指尖的头像-聚指尖聚指尖2年前
05212

装完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...
聚指尖的头像-聚指尖聚指尖2年前
05115

CentOS查看开启端口

安装nmap yum install nmap #输入y安装 使用nmap nmap localhost #查看主机当前开放的端口 nmap -p 1024-65535 localhost #查看主机端口(1024-65535)中开放的端口 nmap -PS 192.168.21.163 #...
聚指尖的头像-聚指尖聚指尖2年前
05013
试试Linux下的ip命令,ifconfig已经过时了-聚指尖

试试Linux下的ip命令,ifconfig已经过时了

linux的ip命令和ifconfig类似,但前者功能更强大,并旨在取代后者。使用ip命令,只需一个命令,你就能很轻松地执行一些网络管理任务。ifconfig是net-tools中已被废弃使用的一个命令,许多年前就...
聚指尖的头像-聚指尖聚指尖2年前
04913

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

num 为需要转换的秒数 //天数计算 int days = (num)/(24*3600); //小时计算 int hours = (num)%(24*3600)/3600; //分钟计算 int minutes = (num)%3600/60; //秒计算 int second = (num)%60; `
聚指尖的头像-聚指尖聚指尖2年前
04914

WordPress文章中的外链图片自动下载到本地

 WordPress 很多插件或者代码都可以实现在编辑文章中自动将外链图片下载到本地,最终我选择了一个叫:Easy Copy Paste的插件。大家可以自己在后台下载 加到当前主题函数模板 functions.php 中...

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...
聚指尖的头像-聚指尖聚指尖2年前
0486

ECShop后台报错:mktime(): You should be using the time() function instead in

ECShop安装之后,在后台发现一个错误提示: Strict Standards: mktime(): You should be using the time() function instead in E:\web\shopex\admin\shop_config.php on line 32 这个错误提示...
聚指尖的头像-聚指尖聚指尖2年前
04614