Technical Notes

Centos, Ubuntu, Windows, Luinx system use
PHP image to add image or text watermark - Seven Notes

PHP Image add image or text watermark

PHP Image add image or text watermark
PHP Split SQL file into multiple sql statements that can be executed individually - Xiaoqi Notes

PHP Split SQL file into multiple sql statements that can be executed separately

PHP Split SQL file into multiple sql statements that can be executed separately
2 years ago
01466
PHP common string processing methods-Small seven notes

PHP common string processing methods

1, realize the search engine to search results hit the keyword marked red <?php /** * Split the string into an array * @param $search search keyword * @return array */ function splitString(string $search):array { // positive ...
2 years ago
01916
[PHP class] use PHP to convert JPEG and PNG to WebP-Small Seven Notes

[PHP Class] Convert JPEG and PNG to WebP using PHP

This library allows you to perform webp conversions with PHP. It supports a large number of conversion methods and automatically selects the most capable method available on your system. Installation The Composer library is required as follows: composer require rosell-dk/webp-convert Converts images...
2 years ago
04256
PHP prints various types of data, debugging programs - Xiaoqi Notes

PHP prints various types of data, debugging programs

PHP prints various types of data, debugging programs
2 years ago
02356
Good server panel - Seven Notes

Good server panel

Website One-stop creation, management of multiple websites, a variety of open source website system automatically installed and deployed Security Integrated security policy, server security hardening program Eco Built-in application store, open source software, tools and plug-ins, one-click installation and configuration Simple and clear ...
2 years ago
01686
FFmpeg common practical commands-Small Seven Notes

FFmpeg common utility commands

FFmpeg is a powerful command line audio/video tool that can take care of transcoding, stream mixing, embedded subtitling, editing, and so on. Installation This section is for Windows users. Go to the compiled file (gyan.dev) of the Windows version suggested by the FFmpeg website ...
PHP Cross Domain Detection - Seven Notes

PHP Cross Domain Detection

PHP Cross Domain Detection
PHP URL Redirection - Seven Notes

PHP URL Redirection

PHP URL Redirection
2 years ago
01765
PHP URL shortening algorithm code-Small Seven Notes

PHP URL shortening algorithm code

PHP URL shortening algorithm code
2 years ago
02045
Solve Ubuntu troubleshooting disk read/write busy - Xiaoqi Notes

Troubleshooting Ubuntu Troubleshooting Disk Read/Write Busy

Ubuntu Troubleshooting Disk Read/Write Busy Problems There are several ways to troubleshoot disk read/write problems: iotop: a tool to view disk I/O usage. vmstat: View information about system virtual memory, processes, CPU activity, etc. Install iotop (if not already installed): sudo apt-get insta...
2 years ago
03175
PHP Objects, Arrays, Strings, Escaping, etc.-Small Seven Notes

PHP objects, arrays, strings, escaping, etc.

1、Convert array to object /** * Convert array to object * @param array $data array * @return Return object (object) */ function array2object($array) { if (is_array($array)) { $obj = new StdClass(); ...