+
dl ( string $library ) Loads the PHP extension, given by the parameter library, at **runtime**
dl ( string $library ) Loads the PHP extension, given by the parameter library, at runtime- e.g. if (! extension_loaded( 'http' ) ) dl('http.so'); ...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()).
- http://us3.php.net/manual/en/function.dl.php
PHP,extensions
✯
✯✯
✯✯
✯✯
✯✯
✯