|
dlLoads a PHP extension at runtime Description
bool dl
( string
$library
)
Loads the PHP extension given by the parameter
Use extension_loaded to test whether a given extension is already available or not. This works on both built-in extensions and dynamically loaded ones (either through php.ini or dl). Warning
This function was removed from most SAPIs in PHP 5.3.0, and was removed from PHP-FPM in PHP 7.0.0. Parameters
Return Values
Returns Examples
Example #1 dl examples
<?php Changelog
Notes
|