function ldaphelp_arraytotxt in LDAP integration 6
2 calls to ldaphelp_arraytotxt()
- ldaphelp_get_export_comments in ldaphelp/
ldaphelp.module - ldaphelp_status in ldaphelp/
ldaphelp_status.inc
File
- ldaphelp/
ldaphelp.module, line 296 - The ldaphelp module is a module to help admins debug ldap_integration modules.
Code
function ldaphelp_arraytotxt($array) {
foreach ($array as $key => $value) {
if (!is_object($value) && !is_array($value)) {
$text .= "{$key}: {$value}\r\n";
}
}
return $text;
}