代码编程 第4页

Nginx的启动、停止与重启

Nginx的启动、停止与重启-熊大百宝箱
启动  启动代码格式:nginx安装目录地址 -c nginx配置文件地址 例如: [root@LinuxServer sbin]# /usr/local/nginx/sbin/nginx -c /usr/local/nginx/conf/nginx.conf   停止  nginx的停...
ForDream的头像-熊大百宝箱ForDream3年前
04680

ffmpeg过滤视频,剔除音频的操作

ffmpeg过滤视频,剔除音频的操作-熊大百宝箱
ffprobe -v quiet -print_format json -show_format -show_streams 1.mp4 {     'streams': [         {             'index': 0,             '...
ForDream的头像-熊大百宝箱ForDream3年前
04170

ffmpeg相关技术

ffmpeg相关技术-熊大百宝箱
视频合并  FFmpeg concat 分离器 file 'input1.mkv' file 'input2.mkv' file 'input3.mkv' 然后: ffmpeg -f concat -i filelist.txt -c copy output.mkv 1. 原理 比如我有三个视频...
ForDream的头像-熊大百宝箱ForDream3年前
06740

IMAGE_TO_FPDF

IMAGE_TO_FPDF-熊大百宝箱
$true_array_image = CommonUtils::to_pdf_image_handle($image_array,$max_pt,'/saved_attachments/',$to_pdf_save_dir,$the_id,$postfix_str); $status_code =  CommonUtils::generate_p...
ForDream的头像-熊大百宝箱ForDream3年前
04450

PHP图片压缩

PHP图片压缩-熊大百宝箱
<?php /**  * Created by PhpStorm.  * User: 20170720李雁飞  * Date: 2018/9/24  * Time: 0:10  */ class ImgCompress {     static private $_instance = null; ...
ForDream的头像-熊大百宝箱ForDream3年前
04240

不错的PHP加密这段加密狠不错

不错的PHP加密这段加密狠不错-熊大百宝箱
<?php /* Code highlighting produced by Actipro CodeHighlighter (freeware)http://www.CodeHighlighter.com/--> 1 /** * <a href='https://bbs.125.la/home.php?mod=space&uid=...
ForDream的头像-熊大百宝箱ForDream3年前
07150

PHP过滤XSS

PHP过滤XSS-熊大百宝箱
function remove_xss($val) { $val = preg_replace('/([\x00-\x08,\x0b-\x0c,\x0e-\x19])/', '', $val); $search = 'abcdefghijklmnopqrstuvwxyz'; $search .= 'ABCDEFGHIJKLMNOPQRSTUVWXYZ'; $...
ForDream的头像-熊大百宝箱ForDream3年前
08060

面试官:Redis为什么默认16个数据库?

面试官:Redis为什么默认16个数据库?-熊大百宝箱
在实际项目中Redis常被应用于做缓存,分布式锁、消息队列等。但是在搭建配置好Redis服务器后很多朋友应该会发现和有这样的疑问,为什么Redis默认建立了16个数据库,如下图所示。 1 16个数据库的...
ForDream的头像-熊大百宝箱ForDream3年前
06280

真的坑,这个 MySQL 的 bug 99% 的人会踩!

真的坑,这个 MySQL 的 bug 99% 的人会踩!-熊大百宝箱
这周收到一个 sentry 报警,如下 SQL 查询超时了。   select* fromorder_info whereuid = 5837661orderbyidasclimit1 执行show create table order_info发现这个表其实是有加索引的 CREATETABL...
ForDream的头像-熊大百宝箱ForDream3年前
04740

自己写的WEB安全攻防文档基础知识

自己写的WEB安全攻防文档基础知识-熊大百宝箱
公司要求每个技术做个课程讲解 我就写了这个文档 东西不多喜欢网络安全的可以了解了解     [c-downbtn type='ct' url='https://url42.ctfile.com/f/22734042-519306929-22b440' pwd='...
ForDream的头像-熊大百宝箱ForDream3年前
05840