全部博文(396)
发布时间:2017-09-26 11:59:59
?PHP页面跳转一、header()函数header()函数是PHP中进行页面跳转的一种十分简单的方法。header()函数的主要功能是将HTTP协议标头(header)输出到浏览器。header()函数的定义如下:void header (string string [,bool replace [,int http_response_code]])可选参数replace指明是替换前一条类似标头还是添加一条相同类型的.........【阅读全文】
发布时间:2017-09-22 16:54:05
转载自:http://blog.csdn.net/orange1988319/article/details/8880788,做了一些补充本文参考copy博客:http://www.qiyangtech.com/bbs/read.php?tid=34,根据自己的编译环境进行了适当的修改,本人只使用ntp做客户端参考博客:http://blog.csdn.net/sailor_8318/article/details/2310459 .........【阅读全文】
发布时间:2017-09-22 16:53:52
转载自:http://blog.csdn.net/orange1988319/article/details/8880788,做了一些补充本文参考copy博客:http://www.qiyangtech.com/bbs/read.php?tid=34,根据自己的编译环境进行了适当的修改,本人只使用ntp做客户端参考博客:http://blog.csdn.net/sailor_8318/article/details/2310459 .........【阅读全文】
发布时间:2017-09-20 15:19:04
系统环境:Ubuntu 14.04.3 LTS源码:openssl-1.1.0-pre1.tar.gz交叉编译环境:arm-none-linux-gnueabi-[zhaojq@virtual-machine]# tar -xzvf openssl-1.1.0-pre1.tar.gz[zhaojq@virtual-machine]# cd openssl-1.1.0-pre1[zhaojq@virtual-machine]# sudo -i.........【阅读全文】
发布时间:2017-09-08 16:33:10
LINUX下遍历目录的核心头文件是#include <dirent.h>,方法一般是这样的:打开目录->读取->关闭目录。相关函数有:DIR *opendir(const char *dirname);struct dirent *readdir(DIR *dirp);int closedir(DIR *dirp);注意到,在读取的时候,是返回一个叫dirent的结构体,其定义是这样的:[cpp] view pla.........【阅读全文】