php
lnews
专注分享的搬砖码农,专注新技术的程序员,看不懂公式却喜欢深度学习的闲人!
展开
-
上传excel 并处理数据
$tmp_file = $_FILES ['excel'] ['tmp_name']; //临时文件$name = $_FILES['excel']['name']; //上传文件名根据上传类型做不同处理if ($file_type == 'xls') { $reader = PHPExcel_IOFactory::createReader('Excel5'); //设置以Exc...转载 2018-05-07 11:09:47 · 264 阅读 · 0 评论 -
防SQL注入
$_GET = sql_injection_deal($_GET); $_POST = sql_injection_deal($_POST);$_COOKIE = sql_injection_deal($_COOKIE);function sql_injection_deal($arr){ if(get_magic_quotes_gpc()){ r...转载 2018-04-26 10:28:54 · 105 阅读 · 0 评论 -
php导出数据为excel
function excelData($datas,$titlename,$title,$filename){ $str = "<html xmlns:o=\"urn:schemas-microsoft-com:office:office\"\r\nxmlns:x=\"urn:schemas-microsoft-com:office:excel\"\r\nxmlns=\"http:/...转载 2018-05-07 11:07:44 · 105 阅读 · 0 评论 -
php采集好看短视频,写入hexo博客
我的博客传送门(https://lzz1.top)查看效果<?php/** * Created by PhpStorm. * User: Lzz * Date: 2019/2/28 * Time: 10:03 */class Haokan { # 配置 protected $option = [ 'url' => 'https://s...原创 2019-02-28 18:03:49 · 1802 阅读 · 1 评论