function ldap_help_display in Lightweight Directory Access Protocol (LDAP) 8.2
Same name and namespace in other branches
- 7.2 ldap_help/ldap_test_script/functions.inc \ldap_help_display()
- 7 ldap_help/ldap_test_script/functions.inc \ldap_help_display()
File
- ldap_help/
ldap_test_script/ functions.inc, line 144
Code
function ldap_help_display($title, $value = NULL) {
if (is_array($value)) {
echo "\n" . $title;
foreach ($title as $subtitle => $subvalue) {
ldap_help_display($subtitle, $subvalue);
}
}
if (!$title && $value) {
echo "\n" . $value;
}
elseif ((int) $title === $title) {
echo "\n" . $value;
}
else {
echo "\n" . "{$title}: {$value}";
}
}