For some reason
#!/usr/bin/php
<?php
if (function_exists('snmpwalk')) {
echo "Exists";
} else {
echo "Non-existant";
}
?>
returns "Exists" from a browser....but Non-existant from the command line
Can anyone tell me why? I cant seem to find any help on google believe it or not.