Ask a Question related to PHP Notes, Design and Development.
-
davidsmith@byuNOSPAM.edu #1
note 33989 added to function.ldap-modify
The $entry parameter can be an array of values for an attribute. Just be careful that your array's indices are numerically contiguous. For example, when using this $entry array, ldap_modify will fail with little explanation:
$entry = array( 0 => 'foo', 2 => 'bar' );
While this one will work just fine:
$entry = array( 0 => 'foo', 1 => 'bar' );
Hope this helps someone out.
----
Manual Page -- [url]http://www.php.net/manual/en/function.ldap-modify.php[/url]
Edit Note -- [url]http://master.php.net/manage/user-notes.php?action=edit+33989[/url]
Delete Note -- [url]http://master.php.net/manage/user-notes.php?action=delete+33989&report=yes[/url]
Reject Note -- [url]http://master.php.net/manage/user-notes.php?action=reject+33989&report=yes[/url]
davidsmith@byuNOSPAM.edu Guest
-
note 33827 added to function.function-exists
This can be used to conditionally define a user function. In this sense, it can act as a sort of inline include_once(). For example, suppose you... -
note 33718 rejected from function.ldap-compare by torben
Note Submitter: steve@enerds.ca ---- I'm just wondering if anybody has any examples with SSH, maybe even PEAR -
note 33714 added to function.register-tick-function
please can anyone help me to discover if this function can be used to make a chat ---- Manual Page --... -
note 33689 added to function.next
i was just looking around and saw this. i'd just like to say "huh" and be on my merry way. ok buh-bi. merry meet, rose love ---- Manual Page --... -
note 33575 added to function.register-shutdown-function
If your script exceeds the maximum execution time, and terminates thusly: Fatal error: Maximum execution time of 20 seconds exceeded in - on line...



Reply With Quote

