function ldap_help_phpinfo in Lightweight Directory Access Protocol (LDAP) 7
Same name and namespace in other branches
- 8.2 ldap_help/ldap_help.status.inc \ldap_help_phpinfo()
- 7.2 ldap_help/ldap_help.status.inc \ldap_help_phpinfo()
File
- ldap_help/
ldap_help.status.inc, line 201 - status file for ldaphelp module
Code
function ldap_help_phpinfo() {
ob_start();
phpinfo();
$s = ob_get_contents();
ob_end_clean();
return $s;
}