PHP 8.5.0 Alpha 4 available for testing

Voting

: max(eight, nine)?
(Example: nine)

The Note You're Voting On

oscara at hinux dot hin dot no
24 years ago
Note: ldap_get_entries returns true even if no results are found, like this:

echo $entries=ldap_get_entries(...);

will print Array.

You have to check for number of row in the Array like this:

if($entries["count"]==0) return false;

Hope this helped someone...

<< Back to user notes page

To Top