[Recommendation] 8 practical PHP libraries worth collecting
PHP Chinese website has compiled 8 practical PHP libraries with high stars on github for students to improve development efficiency.
1.pinyin (Chinese pinyin conversion tool)
Project address: https://github.com/overtrue/pinyin
Chinese to Pinyin tool based on CC-CEDICT dictionary, a more accurate Chinese character to Pinyin solution that supports multi-phonetic characters, sample code:
se OvertruePinyinPinyin; $pinyin = new Pinyin(); $pinyin->convert('带着希望去旅行,比到达终点更美好'); // ["dai", "zhe", "xi", "wang", "qu", "lv", "xing", "bi", "dao", "da", "zhong", "dian", "geng", "mei", "hao"] $pinyin->convert('带着希望去旅行,比到达终点更美好', PINYIN_UNICODE); // ["dài","zhe","xī","wàng","qù","lǚ","xíng","bǐ","dào","dá","zhōng","diǎn","gèng","měi","hǎo"] $pinyin->convert('带着希望去旅行,比到达终点更美好', PINYIN_ASCII); //["dai4","zhe","xi1","wang4","qu4","lv3","xing2","bi3","dao4","da2","zhong1","dian3","geng4","mei3","hao3"]
2 .php-curl-class (PHP cURL library)
Project address: https://github.com/php-curl-class/php-curl-class
This open source project encapsulates PHP's cURL library, making it easy to send HTTP requests. Suitable for situations that require PHP crawlers or other simulated HTTP access, sample code:
<?php // 获取豆瓣电影示例 require '../vendor/autoload.php'; use Curl\Curl; $curl = new Curl(); $url = "https://movie.douban.com/j/search_subjects?type=movie&tag=%E8%B1%86%E7%93%A3%E9%AB%98%E5%88%86&sort=time&page_limit=20&page_start=1"; $curl->get($url); $curl->setOpt(CURLOPT_SSL_VERIFYPEER, false); $curl->close(); var_dump($curl->getResponse());exit;
3.parsedown (Markdown parsing library)
Project address: https://github.com/erusev/parsedown
A small and beautiful PHP Markdown parsing library. This library provides the function of converting standard Markdown text into HTML strings and has good documentation. It has only one main file and has almost no dependencies except that the PHP version must be higher than 5.3. It can be introduced through composer, or the Parsedown.php file can be used directly. A large number of regular expressions are used in this project, which can be used as an example for learning regular expressions, and there are complete unit tests. Sample code:
$Parsedown = new Parsedown(); echo $Parsedown->text('Hello _Parsedown_!'); # prints: <p>Hello <em>Parsedown</em>!</p>
4.dompdf (HTML to PDF)
Project address: https://github.com/ dompdf/dompdf
A PHP library for converting HTML to PDF. Sample code:
// reference the Dompdf namespace use Dompdf\Dompdf; // instantiate and use the dompdf class $dompdf = new Dompdf(); $dompdf->loadHtml('hello world'); // (Optional) Setup the paper size and orientation $dompdf->setPaper('A4', 'landscape'); // Render the HTML as PDF $dompdf->render(); // Output the generated PDF to Browser $dompdf->stream();
5.PHPWord (e-commerce platform)
Project address: https://github.com/ PHPOffice/PHPWord
provides a PHP library for reading/writing multiple document file formats. Supports Microsoft Office, rich text (RTF) and other document formats
<?php require_once 'bootstrap.php'; // 新建文档 $phpWord = new \PhpOffice\PhpWord\PhpWord(); // Adding an empty Section to the document... $section = $phpWord->addSection(); // Adding Text element to the Section having font styled by default... $section->addText( '"Learn from yesterday, live for today, hope for tomorrow. ' . 'The important thing is not to stop questioning." ' . '(Albert Einstein)' );
6.easy-sms (SMS sending)
project Address: https://github.com/overtrue/easy-sms
SMS sending PHP component. Features:
Supports multiple service providers currently on the market
One writing method is compatible with all platforms
Simple configuration allows you to flexibly add or remove service providers
Built-in multiple service provider polling strategies and support custom polling strategies
use Overtrue\EasySms\EasySms; $config = [ // HTTP 请求的超时时间(秒) 'timeout' => 5.0, // 默认发送配置 'default' => [ // 网关调用策略,默认:顺序调用 'strategy' => \Overtrue\EasySms\Strategies\OrderStrategy::class, // 默认可用的发送网关 'gateways' => [ 'yunpian', 'aliyun', ], ], // 可用的网关配置 'gateways' => [ 'errorlog' => [ 'file' => '/tmp/easy-sms.log', ], 'yunpian' => [ 'api_key' => '824f0ff2f71cab52936axxxxxxxxxx', ], 'aliyun' => [ 'access_key_id' => '', 'access_key_secret' => '', 'sign_name' => '', ], //... ], ]; $easySms = new EasySms($config); $easySms->send(13188888888, [ 'content' => '您的验证码为: 6379', 'template' => 'SMS_001', 'data' => [ 'code' => 6379 ],
7.YOURLS (short URL generation)
Project address: https://github.com/YOURLS/YOURLS
Completely free URL shortening service. A short URL service written in PHP. It is completely open source and can be used to build services by yourself. It supports data statistics, geographical location, visualization and other functions.
##8.php-console (PHP command line application library)
Project address : https://github.com/inhere/php-consoleA simple-to-use, comprehensive-featured PHP command line application library. Provides console parameter parsing, command running, color style output, user information interaction and other functions
Opening notice:
php中文网's "22nd PHP Online Live Class" has officially started registration!Teaching format:
1. Starting from scratch, from front-end to back-end, systematic learning ! 2. Simultaneous recording of live broadcast, internal group, teacher homework correction, tutoring and answering, supervision of learningLimited activities:
1. Top 50 Each student who signs up will receive three practical courses as a gift, first come first served, while supplies last! 2. When you sign up, you will receive a complete set of PHP courses (great value), study before class! (Limited to the first 10)Registration consultation↓↓↓
QQ registration: 27220243 (Teacher Zhong) WeChat registration: phpcn01 (月月teacher)
Hot AI Tools

Undresser.AI Undress
AI-powered app for creating realistic nude photos

AI Clothes Remover
Online AI tool for removing clothes from photos.

Undress AI Tool
Undress images for free

Clothoff.io
AI clothes remover

Video Face Swap
Swap faces in any video effortlessly with our completely free AI face swap tool!

Hot Article

Hot Tools

Notepad++7.3.1
Easy-to-use and free code editor

SublimeText3 Chinese version
Chinese version, very easy to use

Zend Studio 13.0.1
Powerful PHP integrated development environment

Dreamweaver CS6
Visual web development tools

SublimeText3 Mac version
God-level code editing software (SublimeText3)

Hot Topics

PHP 8.4 brings several new features, security improvements, and performance improvements with healthy amounts of feature deprecations and removals. This guide explains how to install PHP 8.4 or upgrade to PHP 8.4 on Ubuntu, Debian, or their derivati

Visual Studio Code, also known as VS Code, is a free source code editor — or integrated development environment (IDE) — available for all major operating systems. With a large collection of extensions for many programming languages, VS Code can be c

JWT is an open standard based on JSON, used to securely transmit information between parties, mainly for identity authentication and information exchange. 1. JWT consists of three parts: Header, Payload and Signature. 2. The working principle of JWT includes three steps: generating JWT, verifying JWT and parsing Payload. 3. When using JWT for authentication in PHP, JWT can be generated and verified, and user role and permission information can be included in advanced usage. 4. Common errors include signature verification failure, token expiration, and payload oversized. Debugging skills include using debugging tools and logging. 5. Performance optimization and best practices include using appropriate signature algorithms, setting validity periods reasonably,

A string is a sequence of characters, including letters, numbers, and symbols. This tutorial will learn how to calculate the number of vowels in a given string in PHP using different methods. The vowels in English are a, e, i, o, u, and they can be uppercase or lowercase. What is a vowel? Vowels are alphabetic characters that represent a specific pronunciation. There are five vowels in English, including uppercase and lowercase: a, e, i, o, u Example 1 Input: String = "Tutorialspoint" Output: 6 explain The vowels in the string "Tutorialspoint" are u, o, i, a, o, i. There are 6 yuan in total

This tutorial demonstrates how to efficiently process XML documents using PHP. XML (eXtensible Markup Language) is a versatile text-based markup language designed for both human readability and machine parsing. It's commonly used for data storage an

Static binding (static::) implements late static binding (LSB) in PHP, allowing calling classes to be referenced in static contexts rather than defining classes. 1) The parsing process is performed at runtime, 2) Look up the call class in the inheritance relationship, 3) It may bring performance overhead.

What are the magic methods of PHP? PHP's magic methods include: 1.\_\_construct, used to initialize objects; 2.\_\_destruct, used to clean up resources; 3.\_\_call, handle non-existent method calls; 4.\_\_get, implement dynamic attribute access; 5.\_\_set, implement dynamic attribute settings. These methods are automatically called in certain situations, improving code flexibility and efficiency.

PHP and Python each have their own advantages, and choose according to project requirements. 1.PHP is suitable for web development, especially for rapid development and maintenance of websites. 2. Python is suitable for data science, machine learning and artificial intelligence, with concise syntax and suitable for beginners.