function ldap_help_parsePHPModules in Lightweight Directory Access Protocol (LDAP) 8.2
Same name in this branch
- 8.2 ldap_help/ldap_help.status.inc \ldap_help_parsePHPModules()
- 8.2 ldap_help/ldap_test_script/functions.inc \ldap_help_parsePHPModules()
Same name and namespace in other branches
- 7.2 ldap_help/ldap_help.status.inc \ldap_help_parsePHPModules()
- 7.2 ldap_help/ldap_test_script/functions.inc \ldap_help_parsePHPModules()
- 7 ldap_help/ldap_help.status.inc \ldap_help_parsePHPModules()
- 7 ldap_help/ldap_test_script/functions.inc \ldap_help_parsePHPModules()
parse php modules from phpinfo
2 calls to ldap_help_parsePHPModules()
- ldap_help_status in ldap_help/
ldap_help.status.inc - @file status file for ldaphelp module
- test.php in ldap_help/
ldap_test_script/ test.php
File
- ldap_help/
ldap_test_script/ functions.inc, line 176
Code
function ldap_help_parsePHPModules() {
ob_start();
phpinfo(INFO_MODULES);
$s = ob_get_contents();
ob_end_clean();
$matches = array();
preg_match_all("/(\nLDAP Support.*Vendor Version[^\n]*?).*\$/iDsU", $s, $matches);
return isset($matches[1][0]) ? "\nphpinfo() LDAP Info:" . $matches[1][0] : '';
}