钩子定义钩子是编程里一个常见概念,非常的重要。它使得系统变得非常容易拓展,(而不用理解其内部的实现机理,这样可以减少很多工作量)。钩子作用钩子函数可以截获并处理其他应用程序的消息。每当特定的消息发出,在没有到达目的窗口前,钩子程序就先捕获该消息,亦即钩子函数先得到控制权。这时钩子函数即可以加工...
服务器端【wkhtmltopdf】为实现截图的程序必须借助服务器端程序:http://code.google.com/p/wkhtmltopdf/可将网页转换为pdf或者图片,32和64位有区别,找个适合自己服务器的版本。安装安装过程十分简单:解压 -> 找个合适的路径放下…执行命令行调...
1.PHP 正则表达式过滤特殊字符和空格<?php function replaceSpecialChar($strParam){ $regex = "/\ |\/|\~|\!|\@|\#|\\$|\%|\^|\&|\*|\(|\)|\_|\+|\|\:|\<|...
$start_time = '2018-10-10 10:10:10'; $end_time = '2018-12-28 08:22:22'; get_time($start_time,$end_time); function get_time($start,$end){ $sta...
数组 转 对象function array_to_object($arr) { if (gettype($arr) != 'array') { return; } foreach ($arr as $k => $v) { if (g...
JS代码:<script> var noRedirect = location.search.split('noRedirect=')[1] if ( ( noRedirect == null) || noRedirect.toString() != 'tr...
$data = "This is an AES crypt demo."; $privateKey = "5d4bcd5912db00c28e9ce7fd5e9b7f78"; // KEY 16字节用aes-128-cbc,32字节用aes-25...
//$file2是接收到的文件 $byte = str_replace(' ','',$file2); //处理数据 $byte = str_ireplace("<",'',$byte); $byte = str_ireplace(">"...
要导入的excel如下,显示在网页的html也一样;但也只能按照这样的合并,横向不能合并,不合并的不能为空,还要改几下php代码public function daoru{ vendor("PHPExcel.PHPExcel"); //获取表单上传...
下载PHPExcel;地址https://github.com/PHPOffice/PHPExcel代码如下 <?php namespace app\index\controller; use think\Controller; use think\Request; use think...