Hi,
How can I check if the 3 following dll's are loaded by php!
extension=php_java.dll
extension=php_mcrypt.dll
extension=php_mysql.dll
if(ini_get(register_globals)) {
if(file_exists("$SystemRoot/php.ini")) {
$check_phpini_extension = parse_ini_file("$SystemRoot/php.ini");
$echo_phpini_extension = $check_phpini_extension['extension'];
if($echo_phpini_extension=="php_java.dll") {
echo"cool";
}
else {
echo"oops...";
}
}
else {
echo"ERROR DLL";
exit();
}
}
and I also tried this, but did not work!!! 🙁
if(ini_get(extension=="php_java.dll")) {
echo"jooooo...";
}
else {
echo"bo.....";
}
how can I solve my problem?