摘要:
<!DOCTYPE html> <html lang="zh-CN"> <head> <meta charset="UTF-8"> <title>测试</title> <?php $chk = array('ch1','ch3','ch5'); //后台获取checkbox选中id的数组 $slt 阅读全文
摘要:
Nginx日志按日期切割详解(按天切割) http://www.jb51.net/article/107422.htm Nginx日志按日期切割详解(按天切割) http://www.jb51.net/article/107422.htm 由于nginx的日志本身只是支持按照server_name或 阅读全文
摘要:
同样ip从多到少排序统计 cat logs/test.com_access_log.20171024 |awk '{print $1}'| sort | uniq -c |sort -nr |less 总共访问ip统计 cat logs/test.com_access_log.20171024 |a 阅读全文
摘要:
//验证一维数组或多维数组中有某个值function deep_in_array($value, $array) { foreach($array as $item) { if(!is_array($item)) { if ($item == $value) { return true; } els 阅读全文
摘要:
第一种 $content = //html代码; $data = '<html xmlns:o="urn:schemas-microsoft-com:office:office" xmlns:w="urn:schemas-microsoft-com:office:word" xmlns="http: 阅读全文
摘要:
// 判断没有登录时,跳转到登录页面 protected function check_login(){// header("location:".getenv("HTTP_REFERER")); $session_user=session('user'); if(empty($session_us 阅读全文
摘要:
https://git.oschina.net/cik/pinyin_php 阅读全文
摘要:
PHP 生成 PDF PHP 生成 PDF 1今天使用的是TCPDF。 http://www.51ask.org/article/232 TCPDF具有以下特性: 1、支持页面页脚;2、支持HTML标签代码;3、支持jpg/png/gif/svg图形图像;4、支持表格;5、支持中文字符;(有些PD 阅读全文
摘要:
当你在做一个抓取程序的时候,php空白了好长一段时间然后报出现如下这个错误提示:Fatal error: Maximum execution time of 30 seconds exceeded in ......很简单,意思是说脚本执行时间超过了30秒的上限。这个错误以前经常碰到,一般都是直接在 阅读全文
摘要:
### 1在防火墙封 cat /etc/sysconfig/iptables ## # Firewall configuration written by system-config-firewall 2 # Manual customization of this file is not reco 阅读全文