PHP Script to List Enabled Extensions
Create a php script with following content
"; foreach (get_loaded_extensions() as $extn) { echo $extn . "\n"; }
See php
Create a php script with following content
"; foreach (get_loaded_extensions() as $extn) { echo $extn . "\n"; }
See php