From manual page: https://php.net/function.extension-loaded
Hi,
This example in the page above,
<?php
if (!extension_loaded('gd')) {
if (!dl('gd.so')) {
exit;
}
}
?>
Yields the following error:
"Fatal error: Uncaught Error: Call to undefined function dl() in ..."
Please, is it related to the fact of dl() being deprecated, as reported by checking compatibility software?
Thanks.
From manual page: https://php.net/function.extension-loaded
Hi,
This example in the page above,
Yields the following error:
"Fatal error: Uncaught Error: Call to undefined function dl() in ..."
Please, is it related to the fact of
dl()being deprecated, as reported by checking compatibility software?Thanks.