Network Security Internet Technology Development Database Servers Mobile Phone Android Software Apple Software Computer Software News IT Information

In addition to Weibo, there is also WeChat

Please pay attention

WeChat public account

Shulou

How to write a separate PHP extension

2025-04-05 Update From: SLTechnology News&Howtos shulou NAV: SLTechnology News&Howtos > Development >

Share

Shulou(Shulou.com)06/03 Report--

In this issue, the editor will bring you about how to write an independent PHP extension. The article is rich in content and analyzes and narrates it from a professional point of view. I hope you can get something after reading this article.

Independent PHP extensions can be distributed independently of the PHP source code. To create such an extension, you need to prepare two things: the configuration file (config.m4) your module source code. Next, the editor will explain how to write a separate PHP extension.

How to write a separate PHP extension

Prepare the system tools

If you want the extension to compile and run successfully on the system, you need to be prepared to switch to the following tools:

GNUautoconfGNUautomakeGNUlibtoolGNUm4

All of the above is available from ftp://ftp.gnu.org/pub/gnu/.

Note: these are all tools that can only be used in Unix-like environments.

Modify an existing extension

To show how easy it is to create a stand-alone extension, let's first change an extension that has been embedded in PHP to a stand-alone extension. Install PHP and execute the following command:

$mkdir/tmp/newext

$cd/tmp/newext

Now you have an empty directory. Let's copy the files in the mysql extension directory:

$cp-rpphp-4.0.X/ext/mysql/*.

# Note: it seems that this README article really needs to be updated

# mysql extensions have been removed from PHP7

The extension is done here, execute:

$phpize

Now you can store the files in this directory anywhere independently, and this extension can exist completely independently.

The user needs to use the following command when compiling:

$. / configure

[--with-php-config=/path/to/php-config]

[--with-mysql=MYSQL-DIR]

$makeinstall

This allows the MySQL module to use the embedded MySQL client library or the installed MySQL located in the MySQL directory.

Note: it means that to write PHP extensions, you need to have PHP installed and download a copy of the PHP source code.

How to write a separate PHP extension

Define a new extension

Let's name the example extension "foobar".

The new extension contains two resource files: foo.c and bar.c (there are also some header files, but these are not just important).

The sample extension does not reference any external libraries (this is important because the user does not need to specify some special compilation options).

The LTLIBRARY_SOURCES option is used to specify the name of the resource file, and you can have any number of resource files.

Note: the above are the configuration options in the Makefile.in file, you can refer to xdebug.

Modify the configuration file of the M4 suffix

The M4 configuration file can specify some additional checks. For a stand-alone extension, you only need to do some macro calls.

PHP_ARG_ENABLE (foobar,whethertoenablefoobar

[--enable-foobarEnablefoobar])

Iftest "$PHP_FOOBAR"! = "no"; then

PHP_NEW_EXTENSION (foobar,foo.cbar.c,$ext_shared)

Fi

PHP_ARG_ENABLE automatically sets the correct variables to ensure that the extension can be started by PHP_NEW_EXTENSION in shared mode.

The first parameter to PHP_NEW_EXTENSION is the name of the extension, and the second parameter is the resource file. The third parameter, $ext_shared, is set by PHP_ARG_ENABLE/WITH for PHP_NEW_EXTENSION.

Always use PHP_ARG_ENABLE or PHP_ARG_WITH to set up. Even if you don't plan to release your PHP module, these settings ensure that the interface between your module and the PHP main module remains the same.

Note: PHP_ARG_ENABLE and PHP_ARG_WITH should be used to define whether the module is dynamically extended or statically compiled into PHP, just like the enable-xxx and-- with-xxx used when compiling PHP.

Create a resource file

Ext_skel can create some general code for your PHP module, or you can write some basic function definitions and C code to handle function parameters. For more information, please see READNE.EXT_SKEL.

Don't worry that there are no examples, there are many modules in PHP for your reference, choose a simple point to start, and add your own code.

Note: ext_skel can generate the resource files and configuration files needed by the basic module, and do not need to create their own.

Modify custom module

Put the config.m4 file and the resource file in the same directory, and then execute phpize (phpize is installed when versions above PHP4.0 compile PHP).

If your phpize is not in the system environment variable, you need to specify an absolute path, for example:

$/ php/bin/phpize

This command automatically copies the necessary build files to the current directory and creates configuration files based on config.m4.

Through the above steps, you already have a separate extension.

Install extension

Extensions can be compiled and installed with the following command:

$. / configure

[--with-php-config=/path/to/php-config]

$makeinstall

Add sharing support to the module

Sometimes stand-alone extensions need to be shared and loaded by other modules. Next I'll explain how to add sharing support to the foo module that has already been created.

In the config.m4 file, use PHP_ARG_WITH/PHP_ARG_ENABLE to set the extension so that you can automatically use-- with-foo=shared [,..] Or-- enable-foo=shared [,..] Such instructions are used as compilation parameters. In the config.m4 file, use PHP_NEW_EXTENSION (foo,..,$ext_shared) to enable the extension to be built. Add the following code to your C language resource file:

# ifdefCOMPILE_DL_FOO

ZEND_GET_MODULE (foo)

# endif

All the above has been mentioned in this paragraph, but it is just emphasized here.

PECL site convention

If you plan to release your website that extends to PECL, you need to consider the following points:

To add LICENSE or COPYING to package.xml, you need to define the version information in the extension header file. This macro will be called by foo_module_entry to declare the extended version:

# definePHP_FOO_VERSION "1.2.3"

The above is the editor for you to share how to write a separate PHP extension, if you happen to have similar doubts, you might as well refer to the above analysis to understand. If you want to know more about it, you are welcome to follow the industry information channel.

Welcome to subscribe "Shulou Technology Information " to get latest news, interesting things and hot topics in the IT industry, and controls the hottest and latest Internet news, technology news and IT industry trends.

Views: 0

*The comments in the above article only represent the author's personal views and do not represent the views and positions of this website. If you have more insights, please feel free to contribute and share.

Share To

Development

Wechat

© 2024 shulou.com SLNews company. All rights reserved.

12
Report