ForDream的头像-熊大百宝箱
管理员
这家伙很懒,什么都没有写...

Nginx的启动、停止与重启

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

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

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

ffmpeg相关技术

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

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...
4年前
04910

PHP图片压缩

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

不错的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=...
4年前
07460

HEU KMS Activator(win+office激活) v24.4

HEU KMS Activator(win+office激活) v24.4-熊大百宝箱
HEU KMS Activator适用于 Windows、Office 及 VL 版本,无需联网即可一键激活,离线全自动激活软件。它是基于MDL论坛的KMS 服务端模拟环境“KMS Server Emulator”而制作的一款简洁高效的 KMS ...
4年前
07240

PHP过滤XSS

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

新版 IntelliJ IDEA2021.3 即将来袭,这次又出了哪些神仙功能!

新版 IntelliJ IDEA2021.3 即将来袭,这次又出了哪些神仙功能!-熊大百宝箱
IntelliJ IDEA 2021.3 1 前言 根据JetBrains官方介绍,IntelliJ IDEA2021.3正式版将在11月发布,很显然,在如今众多的Java的IDE中,IntelliJ IDEA独树一帜,拥有众多的粉丝,我们也可以从他的更...
4年前
06640

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

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