Publish extended information
Extensions can publish phpinfo()
or the information required by the reflection API. Let's take a look together.
This chapter won’t be too long because it’s really simple.
Related learning recommendations: PHP programming from entry to proficiency
MINFO() hook
If declared, everything will Do it in the declared MINFO()
hook. If not declared, the engine will run a default function to print information about the extension. This function will only print the extension's version and the final declared INI entry.
If you want to join this process, you must declare a MINFO()
hook in the extension structure.
NOTE
Everything happens in ext/standard/info.c, which you can read. The engine prints information about PHP extensions by calling php_info_print_module()
The following is a simple MINFO()
case:
#include "php/main/SAPI.h" #include "ext/standard/info.h" #define PIB_TXT "PHPInternalsBook Authors" #define PIB_HTML "<h3 id="nbsp-PIB-TXT-nbsp">" PIB_TXT "</h3>" PHP_MINFO_FUNCTION(pib) { time_t t; char cur_time[32]; time(&t); php_asctime_r(localtime(&t), cur_time); php_info_print_table_start(); php_info_print_table_colspan_header(2, "PHPInternalsBook"); php_info_print_table_row(2, "Current time", cur_time); php_info_print_table_end(); php_info_print_box_start(0); if (!sapi_module.phpinfo_as_text) { php_write(PIB_HTML, strlen(PIB_HTML)); } else { php_write(PIB_TXT, strlen(PIB_TXT)); } php_info_print_box_end(); } zend_module_entry pib_module_entry = { STANDARD_MODULE_HEADER, "pib", NULL, /* Function 入口 */ NULL, /* Module 初始化 */ NULL, /* Module 关闭 */ NULL, /* Request 初始化 */ NULL, /* Request 关闭 */ PHP_MINFO(pib), /* Module information */ "0.1", /* 扩展的版本号写在这里 */ STANDARD_MODULE_PROPERTIES };
The main thing you have to do is deal with the php_info_print_*()
API, which allows you to print information to the generated output stream. If you want to print some raw information, a simple php_write()
will suffice. php_write()
treats the information you pass in as a parameter of the SAPI output stream, and php_info_print_*()
API is the same, but it will be formatted as required before. If If you want HTML format, you will use HTML's table-tr-td tag. If you don't need to format it into HTML, you will simply use spaces to separate it.
As you can see, you have to include ext/standard/info.h to introduce the php_info_print_*()
API, and you also need to include php /main/SAPI.h to get the sapi_module
symbol. This symbol is global and represents the SAPI used by the current PHP process. The phpinfo_as_text
field tells you if you are going to write a "Web" SAPI like php-fpm or write a "Web" like php-cli text” (SAPI).
What can trigger your MINFO()
hook is the following:
- Call the client’s
phpinfo()
function -
php -i
,php-cgi -i
,php-fpm -i
. Or a more abstract expression is<sapi_binary> - i</sapi_binary>
- ##php --ri
or the client's
ReflectionExtension::info()
Note: Pay attention to the output format. If you need to convert between text and HTML, look intoIf you want to display your INI settings, just call thesapi_module.phpinfo_as_text
. You have no way of knowing how the extended information on the client side is called.
DISPLAY_INI_ENTRIES() macro in your
MINFO(). For the analysis of this macro, see display_ini_entries().
MINFO() are the following:
- Calling the client's
- phpinfo()
Function
- php -i
,
php-cgi -i,
php-fpm -i. Or a more abstract expression is
- i ##php --ri - or the client's
ReflectionExtension::info()
DISPLAY_INI_ENTRIES()Pay attention to the output format. If you need to convert between text and HTML, look into
sapi_module.phpinfo_as_text. You have no way of knowing how the extended information on the client side is called.
If you want to display your INI settings, just call the
macro in your MINFO()
. For the analysis of this macro, see display_ini_entries().Instructions on the reflection API
Reflection uses your
zend_module_entry structure extensively. For example, when you call ReflectionExtension::getVersion()
, the API will only read the version field of the zend_module_entry
structure. Same as discovering functions, your
has a const struct _zend_function_entry * functions
member, which is used to register PHP functions. <p>Basically, the PHP userland reflection API just reads your <code>zend_module_entry
structure and publishes that information. It can also use your module_number
to collect information about extensions registered in different places in the engine. For example, ReflectionExtension::getINIentries()
or ReflectionExtension::getClasses()
use this.
The above is the detailed content of How to publish extended information in php. For more information, please follow other related articles on the PHP Chinese website!

What’s still popular is the ease of use, flexibility and a strong ecosystem. 1) Ease of use and simple syntax make it the first choice for beginners. 2) Closely integrated with web development, excellent interaction with HTTP requests and database. 3) The huge ecosystem provides a wealth of tools and libraries. 4) Active community and open source nature adapts them to new needs and technology trends.

PHP and Python are both high-level programming languages that are widely used in web development, data processing and automation tasks. 1.PHP is often used to build dynamic websites and content management systems, while Python is often used to build web frameworks and data science. 2.PHP uses echo to output content, Python uses print. 3. Both support object-oriented programming, but the syntax and keywords are different. 4. PHP supports weak type conversion, while Python is more stringent. 5. PHP performance optimization includes using OPcache and asynchronous programming, while Python uses cProfile and asynchronous programming.

PHP is mainly procedural programming, but also supports object-oriented programming (OOP); Python supports a variety of paradigms, including OOP, functional and procedural programming. PHP is suitable for web development, and Python is suitable for a variety of applications such as data analysis and machine learning.

PHP originated in 1994 and was developed by RasmusLerdorf. It was originally used to track website visitors and gradually evolved into a server-side scripting language and was widely used in web development. Python was developed by Guidovan Rossum in the late 1980s and was first released in 1991. It emphasizes code readability and simplicity, and is suitable for scientific computing, data analysis and other fields.

PHP is suitable for web development and rapid prototyping, and Python is suitable for data science and machine learning. 1.PHP is used for dynamic web development, with simple syntax and suitable for rapid development. 2. Python has concise syntax, is suitable for multiple fields, and has a strong library ecosystem.

PHP remains important in the modernization process because it supports a large number of websites and applications and adapts to development needs through frameworks. 1.PHP7 improves performance and introduces new features. 2. Modern frameworks such as Laravel, Symfony and CodeIgniter simplify development and improve code quality. 3. Performance optimization and best practices further improve application efficiency.

PHPhassignificantlyimpactedwebdevelopmentandextendsbeyondit.1)ItpowersmajorplatformslikeWordPressandexcelsindatabaseinteractions.2)PHP'sadaptabilityallowsittoscaleforlargeapplicationsusingframeworkslikeLaravel.3)Beyondweb,PHPisusedincommand-linescrip

PHP type prompts to improve code quality and readability. 1) Scalar type tips: Since PHP7.0, basic data types are allowed to be specified in function parameters, such as int, float, etc. 2) Return type prompt: Ensure the consistency of the function return value type. 3) Union type prompt: Since PHP8.0, multiple types are allowed to be specified in function parameters or return values. 4) Nullable type prompt: Allows to include null values and handle functions that may return null values.


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

SecLists
SecLists is the ultimate security tester's companion. It is a collection of various types of lists that are frequently used during security assessments, all in one place. SecLists helps make security testing more efficient and productive by conveniently providing all the lists a security tester might need. List types include usernames, passwords, URLs, fuzzing payloads, sensitive data patterns, web shells, and more. The tester can simply pull this repository onto a new test machine and he will have access to every type of list he needs.

DVWA
Damn Vulnerable Web App (DVWA) is a PHP/MySQL web application that is very vulnerable. Its main goals are to be an aid for security professionals to test their skills and tools in a legal environment, to help web developers better understand the process of securing web applications, and to help teachers/students teach/learn in a classroom environment Web application security. The goal of DVWA is to practice some of the most common web vulnerabilities through a simple and straightforward interface, with varying degrees of difficulty. Please note that this software

SAP NetWeaver Server Adapter for Eclipse
Integrate Eclipse with SAP NetWeaver application server.

MinGW - Minimalist GNU for Windows
This project is in the process of being migrated to osdn.net/projects/mingw, you can continue to follow us there. MinGW: A native Windows port of the GNU Compiler Collection (GCC), freely distributable import libraries and header files for building native Windows applications; includes extensions to the MSVC runtime to support C99 functionality. All MinGW software can run on 64-bit Windows platforms.

Safe Exam Browser
Safe Exam Browser is a secure browser environment for taking online exams securely. This software turns any computer into a secure workstation. It controls access to any utility and prevents students from using unauthorized resources.