Example of dl function usage in php and dl Function

Source: Internet
Author: User

Example of dl function usage in php and dl Function

This example describes the usage of php dl functions. Share it with you for your reference. The details are as follows:


PHP dl functions are described as follows:
Http://www.php.net/manual/en/function.dl.php

The usage example is as follows:
Copy codeThe Code is as follows: <? Php
// Example loading an extension based on OS
If (! Extension_loaded ('sqlite ')){
If (strtoupper (substr (PHP_ OS, 0, 3) === 'win '){
Dl ('php _ sqlite. dll ');
} Else {
Dl ('sqlite. so ');
}
}
// Or, the PHP_SHLIB_SUFFIX constant is available as of PHP 4.3.0
If (! Extension_loaded ('sqlite ')){
$ Prefix = (PHP_SHLIB_SUFFIX = 'dll ')? 'Php _':'';
Dl ($ prefix. 'sqlite. '. PHP_SHLIB_SUFFIX );
}
?>
Dl ("memcache. so ");
In this way, as long as the php. ini file is configured, you can stop referencing the so file. Otherwise, multiple references will be said.
Copy codeCode: extension_dir = "/usr/local/php/lib/php/extensions/no-debug-non-zts-20060613 /"
; Extension = memcache. so

I hope this article will help you with PHP programming.


PHP dl () function problems

Dl () is not supported in multithreaded Web servers.
It seems that multithreading is not supported ..

Php dl () Problems

1. php extensions to be loaded
Dl ("php_w32api.dll ");

2. Export the function from your dll. Assume that the function is declared as FuncDll In the dll and the return value is of the int type.
W32api_register_function ("dll of the function ",
"FuncDll ",
"Int ");

3. Now you can call it.
$ Result = FuncDll ();

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.