I'm using the following code:
<?php
if(extension_loaded("IonCube Loader") {
// Yes
}
else {
// No
}
?>
I'm just concerned that this won't work across every server with IonCube enabled. It seems pretty standard, but I've never needed to check before. Is this the best way to check, or is there a better method I should be using?