You are here

function ldap_help_phpinfo in Lightweight Directory Access Protocol (LDAP) 7.2

Same name and namespace in other branches
  1. 8.2 ldap_help/ldap_help.status.inc \ldap_help_phpinfo()
  2. 7 ldap_help/ldap_help.status.inc \ldap_help_phpinfo()

File

ldap_help/ldap_help.status.inc, line 211
Status file for ldaphelp module.

Code

function ldap_help_phpinfo() {
  ob_start();
  phpinfo();
  $s = ob_get_contents();
  ob_end_clean();
  return $s;
}