I'm not familiar with Suhosin (never used it) but if possible I need to check using PHP whether it is installed. This is for part of an installer that I'm writing. Thanks.

link|improve this question
feedback

4 Answers

up vote 4 down vote accepted

I found only that there is the way to determine it - to put phpinfo() output to variable and to check Suhosin keywords:

<?php
ob_start();
phpinfo();
$phpinfo = ob_get_contents();
ob_end_clean();
if (strpos($phpinfo, "Suhosin") !== FALSE)
    echo "Installed";
?>
link|improve this answer
feedback
extension_loaded('suhosin');

PHP docs for extension_loaded.

If the extension doesn't load, it may still be available through dl:

if (!extension_loaded('suhosin')) {
    if (!dl('suhosin.so')) {
        // Extension not loaded.
        return false;
    }
}

// Extension loaded.
return true;
link|improve this answer
This will not work if you compiled suhosin as a part of your PHP interpreter. Installing as the extension in not the only way of installation. hardened-php.net/suhosin/how_to_install_or_upgrade.html – netme Aug 1 '10 at 23:02
@netme, I wasn't aware of this, sorry. – strager Aug 1 '10 at 23:14
feedback

You can test if a configuration open is set for Suhosin:

$isSuhosinInstalled = ini_get('suhosin.session.max_id_length') !== '';
link|improve this answer
This will not work on all systems with Suhosin installed too. On many systems Suhosin is unconfigured by default. I tried on my 2 hostings, on both variables were not initialized. – netme Aug 2 '10 at 6:21
@netme, Odd; I thought PHP filled in the default value if it was missing from the actual configuration files. Oh well. – strager Aug 2 '10 at 11:37
feedback

simply write a php file in your document root like <?php phpinfo(); ?> it will print all the information related to php installation just find for the "suhosin" block in it is installed on your server you can find the block with all the values set for it.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.