Hey we can easily get names of all modules compiled and loaded in the PHP using PHP’s built-in function called get_loaded_extensions(). This function returns the names of all the modules compiled and loaded in the PHP interpreter.
<?php
print_r(get_loaded_extensions());
?>
No comments:
Post a Comment