Voting

: min(eight, five)?
(Example: nine)

The Note You're Voting On

Vlad Alexa Mancini mancini at nextcode dot org
19 years ago
this function can be used on older php versions using something like "/etc/httpd/httpd.conf" as $fname

<?php

function get_modules ($fname){
if (
is_readable($fname)){
$fcont = file($fname);
if (
is_array($fcont)){
foreach (
$fcont as $line){
if (
preg_match ("/^LoadModule\s*(\S*)\s*(\S*)/i",$line,$match)){
$return[$match[2]] = $match[1];
}
}
}
}
return
$return;
}

?>

<< Back to user notes page

To Top