phpTotal 7 articles
[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 library] in the image to add text or image watermarks-Small seven notes

[PHP Library] Add text or image watermark on image

Add text or image watermarks to images and PDFs using PHP and ImageMagick. Prerequisites PHP (5.6 or higher) ImageMagickghostscript (only for PDF watermarking) PHPImageMagick extension is not required. Installation Add as composer dependency $...
2 years ago
03509
PHP to determine whether the 5 methods of empty - Seven Notes

5 Ways PHP Determines Whether or Not It's Null

1. isset function: to determine whether the variable is initialized Description: it does not determine whether the variable is empty, it can be used to determine whether the elements of the array have been defined. Note: When using isset to determine whether an array element has been initialized, it is more efficient than array_key_exists ...
2 years ago
032011
PHP to get the image in the text content-Small seven notes

PHP to get the image in the text content

PHP to get the image in the text content
2 years ago
02558
php Extract HTML articles in the image address class-Small seven notes

php Extract image addresses from HTML articles class

php Extract image addresses from HTML articles class
2 years ago
02339
PHP commonly used variables string checksum rules-Small seven notes

PHP common variable string checksum rules

1, check cell phone number /** * Determine whether the phone format is correct * @param $mobile */ function is_mobile($mobile) { return preg_match('/1[3456789]{1}\d{9}$/',$mobile); } /** * Verify the format of the cell phone * @param $utfstr...
2 years ago
02335
PHP xml data creation and reading-Small Seven Notes

PHP xml data creation and reading

PHP xml data creation and reading
2 years ago
018915