PHP Doku:: Liefert eine Liste der geladenen Apachemodule - function.apache-get-modules.html

Verlauf / Chronik / History: (1) anzeigen

Sie sind hier:
Doku-StartseitePHP-HandbuchFunktionsreferenzServerspezifische ErweiterungenApacheApache Funktionenapache_get_modules

Ein Service von Reinhard Neidl - Webprogrammierung.

Apache Funktionen

<<apache_child_terminate

apache_get_version>>

apache_get_modules

(PHP 4 >= 4.3.2, PHP 5)

apache_get_modulesLiefert eine Liste der geladenen Apachemodule

Beschreibung

array apache_get_modules ( void )

Liefert eine Liste der geladenen Apachemodule.

Rückgabewerte

Ein Array der geladenen Apachemodule.

Changelog

Version Beschreibung
5.0.0 Wurde verfügbar mit der Verwendung von Apache 1 oder mit der Apache 2 Filter-API von PHP. Davor war die Funktion nur verfügbar, wenn die Apache 2 Handler-API verwendet wurde.

Beispiele

Beispiel #1 apache_get_modules()-Beispiel

<?php
print_r
(apache_get_modules());
?>

Das oben gezeigte Beispiel erzeugt eine ähnliche Ausgabe wie:

Array
(
    [0] => core
    [1] => http_core
    [2] => mod_so
    [3] => sapi_apache2
    [4] => mod_mime
    [5] => mod_rewrite
)


3 BenutzerBeiträge:
- Beiträge aktualisieren...
nik_gandhi007 at yahoo dot com
28.10.2010 13:01
apache_get_modules() does not work if you are using PHP as CGI.
robert at impey dot info
8.05.2008 0:17
In response to hazem dot khaled at gmail dot com's post, one could simply write:

<?php
function apache_is_module_loaded($mod_name)
 {
   
$modules = apache_get_modules();

    return
in_array($mod_name, $modules);
 }
?>

Why write three lines of code when one will do?
Vlad Alexa Mancini mancini at nextcode dot org
4.08.2005 11:13
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;
}

?>



PHP Powered Diese Seite bei php.net
The PHP manual text and comments are covered by the Creative Commons Attribution 3.0 License © the PHP Documentation Group - Impressum - mail("TO:Reinhard Neidl",...)