1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575
|
<HTML
><HEAD
><TITLE
>LDAP functions</TITLE
><META
NAME="GENERATOR"
CONTENT="Modular DocBook HTML Stylesheet Version 1.57"><LINK
REL="HOME"
TITLE="PHP Manual"
HREF="manual.html"><LINK
REL="UP"
TITLE="Function Reference"
HREF="funcref.html"><LINK
REL="PREVIOUS"
TITLE="ibase_num_fields"
HREF="function.ibase-num-fields.html"><LINK
REL="NEXT"
TITLE="ldap_add"
HREF="function.ldap-add.html"><META
NAME="HTTP_EQUIV"
CONTENT="text/html; charset=ISO-8859-1"></HEAD
><BODY
CLASS="reference"
BGCOLOR="#FFFFFF"
TEXT="#000000"
LINK="#0000FF"
VLINK="#840084"
ALINK="#0000FF"
><DIV
CLASS="NAVHEADER"
><TABLE
WIDTH="100%"
BORDER="0"
CELLPADDING="0"
CELLSPACING="0"
><TR
><TH
COLSPAN="3"
ALIGN="center"
>PHP Manual</TH
></TR
><TR
><TD
WIDTH="10%"
ALIGN="left"
VALIGN="bottom"
><A
HREF="function.ibase-num-fields.html"
>Prev</A
></TD
><TD
WIDTH="80%"
ALIGN="center"
VALIGN="bottom"
></TD
><TD
WIDTH="10%"
ALIGN="right"
VALIGN="bottom"
><A
HREF="function.ldap-add.html"
>Next</A
></TD
></TR
></TABLE
><HR
ALIGN="LEFT"
WIDTH="100%"></DIV
><DIV
CLASS="reference"
><A
NAME="ref.ldap"
></A
><DIV
CLASS="TITLEPAGE"
><H1
CLASS="title"
>XXXII. LDAP functions</H1
><DIV
CLASS="PARTINTRO"
><A
NAME="AEN18754"
></A
><H1
>Introduction to LDAP</H1
><P
> LDAP is the Lightweight Directory Access Protocol, and is a
protocol used to access "Directory Servers". The Directory is a
special kind of database that holds information in a tree
structure.
</P
><P
>
The concept is similar to your hard disk directory structure,
except that in this context, the root directory is "The world"
and the first level subdirectories are "countries". Lower levels
of the directory structure contain entries for companies,
organisations or places, while yet lower still we find directory
entries for people, and perhaps equipment or documents.
</P
><P
> To refer to a file in a subdirectory on your hard disk, you might
use something like
</P
><P
CLASS="literallayout"
><br>
/usr/local/myapp/docs<br>
</P
><P
> The forwards slash marks each division in the reference, and the
sequence is read from left to right.
</P
><P
>
The equivalent to the fully qualified file reference in LDAP is
the "distinguished name", referred to simply as "dn". An example
dn might be.
</P
><P
CLASS="literallayout"
><br>
cn=John Smith,ou=Accounts,o=My Company,c=US<br>
</P
><P
> The comma marks each division in the reference, and the sequence
is read from right to left. You would read this dn as ..
</P
><P
CLASS="literallayout"
><br>
country = US<br>
organization = My Company<br>
organizationalUnit = Accounts<br>
commonName = John Smith<br>
</P
><P
> In the same way as there are no hard rules about how you organise
the directory structure of a hard disk, a directory server
manager can set up any structure that is meaningful for the
purpose. However, there are some conventions that are used. The
message is that you can not write code to access a directory
server unless you know something about its structure, any more
than you can use a database without some knowledge of what is
available.
</P
><DIV
CLASS="sect1"
><H1
CLASS="sect1"
><A
NAME="ldap-example"
>Complete code example</A
></H1
><P
> Retrieve information for all entries where the surname starts
with "S" from a directory server, displaying an extract with
name and email address.
</P
><TABLE
WIDTH="100%"
BORDER="0"
CELLPADDING="0"
CELLSPACING="0"
CLASS="EXAMPLE"
><TR
><TD
><DIV
CLASS="example"
><A
NAME="AEN18769"
></A
><P
><B
>Example 1. LDAP search example</B
></P
><TABLE
BORDER="0"
BGCOLOR="#E0E0E0"
WIDTH="100%"
><TR
><TD
><PRE
CLASS="programlisting"
> <?php
// basic sequence with LDAP is connect, bind, search, interpret search
// result, close connection
echo "<h3>LDAP query test</h3>";
echo "Connecting ...";
$ds=ldap_connect("localhost"); // must be a valid LDAP server!
echo "connect result is ".$ds."<p>";
if ($ds) {
echo "Binding ...";
$r=ldap_bind($ds); // this is an "anonymous" bind, typically
// read-only access
echo "Bind result is ".$r."<p>";
echo "Searching for (sn=S*) ...";
// Search surname entry
$sr=ldap_search($ds,"o=My Company, c=US", "sn=S*");
echo "Search result is ".$sr."<p>";
echo "Number of entires returned is ".ldap_count_entries($ds,$sr)."<p>";
echo "Getting entries ...<p>";
$info = ldap_get_entries($ds, $sr);
echo "Data for ".$info["count"]." items returned:<p>";
for ($i=0; $i<$info["count"]; $i++) {
echo "dn is: ". $info[$i]["dn"] ."<br>";
echo "first cn entry is: ". $info[$i]["cn"][0] ."<br>";
echo "first email entry is: ". $info[$i]["mail"][0] ."<p>";
}
echo "Closing connection";
ldap_close($ds);
} else {
echo "<h4>Unable to connect to LDAP server</h4>";
}
?>
</PRE
></TD
></TR
></TABLE
></DIV
></TD
></TR
></TABLE
><DIV
CLASS="sect2"
><H2
CLASS="sect2"
><A
NAME="AEN18772"
>Using the PHP LDAP calls</A
></H2
><P
> You will need to get and compile LDAP client libraries from
either the University of Michigan ldap-3.3 package or the
Netscape Directory SDK 3.0. You will also need to recompile PHP
with LDAP support enabled before PHP's LDAP calls will work.
</P
><P
> Before you can use the LDAP calls you will need to know ..
<P
></P
><UL
><LI
><P
> The name or address of the directory server you will use
</P
></LI
><LI
><P
> The "base dn" of the server (the part of the world directory
that is held on this server, which could be "o=My
Company,c=US")
</P
></LI
><LI
><P
> Whether you need a password to access the server (many servers
will provide read access for an "anonymous bind" but require a
password for anything else)
</P
></LI
></UL
></P
><P
> The typical sequence of LDAP calls you will make in an
application will follow this pattern:
<P
CLASS="literallayout"
><br>
ldap_connect() // establish connection to server<br>
|<br>
ldap_bind() // anonymous or authenticated "login"<br>
|<br>
do something like search or update the directory<br>
and display the results<br>
|<br>
ldap_close() // "logout"<br>
</P
></P
></DIV
><DIV
CLASS="sect2"
><H2
CLASS="sect2"
><A
NAME="AEN18785"
>More Information</A
></H2
><P
> Lots of information about LDAP can be found at
</P
><P
></P
><UL
><LI
><P
> <A
HREF="http://developer.netscape.com/tech/directory/"
TARGET="_top"
>Netscape</A
>
</P
></LI
><LI
><P
> <A
HREF="http://www.umich.edu/~dirsvcs/ldap/index.html"
TARGET="_top"
>University of Michigan</A
>
</P
></LI
><LI
><P
> <A
HREF="http://www.openldap.org/"
TARGET="_top"
>OpenLDAP Project</A
>
</P
></LI
><LI
><P
> <A
HREF="http://elvira.innosoft.com/ldapworld"
TARGET="_top"
>LDAP World</A
>
</P
></LI
></UL
><P
>
The Netscape SDK contains a helpful Programmer's Guide in .html
format.
</P
></DIV
></DIV
></DIV
><DIV
CLASS="TOC"
><DL
><DT
><B
>Table of Contents</B
></DT
><DT
><A
HREF="function.ldap-add.html"
>ldap_add</A
> — Add entries to LDAP directory</DT
><DT
><A
HREF="function.ldap-bind.html"
>ldap_bind</A
> — Bind to LDAP directory</DT
><DT
><A
HREF="function.ldap-close.html"
>ldap_close</A
> — Close link to LDAP server</DT
><DT
><A
HREF="function.ldap-compare.html"
>ldap_compare</A
> — Compare value of attribute found in entry specified with DN</DT
><DT
><A
HREF="function.ldap-connect.html"
>ldap_connect</A
> — Connect to an LDAP server</DT
><DT
><A
HREF="function.ldap-count-entries.html"
>ldap_count_entries</A
> — Count the number of entries in a search</DT
><DT
><A
HREF="function.ldap-delete.html"
>ldap_delete</A
> — Delete an entry from a directory</DT
><DT
><A
HREF="function.ldap-dn2ufn.html"
>ldap_dn2ufn</A
> — Convert DN to User Friendly Naming format</DT
><DT
><A
HREF="function.ldap-err2str.html"
>ldap_err2str</A
> —
Convert LDAP error number into string error message
</DT
><DT
><A
HREF="function.ldap-errno.html"
>ldap_errno</A
> —
Return the LDAP error number of the last LDAP command
</DT
><DT
><A
HREF="function.ldap-error.html"
>ldap_error</A
> —
Return the LDAP error message of the last LDAP command
</DT
><DT
><A
HREF="function.ldap-explode-dn.html"
>ldap_explode_dn</A
> — Splits DN into its component parts</DT
><DT
><A
HREF="function.ldap-first-attribute.html"
>ldap_first_attribute</A
> — Return first attribute</DT
><DT
><A
HREF="function.ldap-first-entry.html"
>ldap_first_entry</A
> — Return first result id</DT
><DT
><A
HREF="function.ldap-free-result.html"
>ldap_free_result</A
> — Free result memory</DT
><DT
><A
HREF="function.ldap-get-attributes.html"
>ldap_get_attributes</A
> — Get attributes from a search result entry</DT
><DT
><A
HREF="function.ldap-get-dn.html"
>ldap_get_dn</A
> — Get the DN of a result entry</DT
><DT
><A
HREF="function.ldap-get-entries.html"
>ldap_get_entries</A
> — Get all result entries</DT
><DT
><A
HREF="function.ldap-get-values.html"
>ldap_get_values</A
> — Get all values from a result entry</DT
><DT
><A
HREF="function.ldap-get-values-len.html"
>ldap_get_values_len</A
> — Get all binary values from a result entry</DT
><DT
><A
HREF="function.ldap-list.html"
>ldap_list</A
> — Single-level search</DT
><DT
><A
HREF="function.ldap-modify.html"
>ldap_modify</A
> — Modify an LDAP entry</DT
><DT
><A
HREF="function.ldap-mod-add.html"
>ldap_mod_add</A
> — Add attribute values to current attributes</DT
><DT
><A
HREF="function.ldap-mod-del.html"
>ldap_mod_del</A
> — Delete attribute values from current attributes</DT
><DT
><A
HREF="function.ldap-mod-replace.html"
>ldap_mod_replace</A
> — Replace attribute values with new ones</DT
><DT
><A
HREF="function.ldap-next-attribute.html"
>ldap_next_attribute</A
> — Get the next attribute in result</DT
><DT
><A
HREF="function.ldap-next-entry.html"
>ldap_next_entry</A
> — Get next result entry</DT
><DT
><A
HREF="function.ldap-read.html"
>ldap_read</A
> — Read an entry</DT
><DT
><A
HREF="function.ldap-search.html"
>ldap_search</A
> — Search LDAP tree</DT
><DT
><A
HREF="function.ldap-unbind.html"
>ldap_unbind</A
> — Unbind from LDAP directory</DT
></DL
></DIV
></DIV
></DIV
><DIV
CLASS="NAVFOOTER"
><HR
ALIGN="LEFT"
WIDTH="100%"><TABLE
WIDTH="100%"
BORDER="0"
CELLPADDING="0"
CELLSPACING="0"
><TR
><TD
WIDTH="33%"
ALIGN="left"
VALIGN="top"
><A
HREF="function.ibase-num-fields.html"
>Prev</A
></TD
><TD
WIDTH="34%"
ALIGN="center"
VALIGN="top"
><A
HREF="manual.html"
>Home</A
></TD
><TD
WIDTH="33%"
ALIGN="right"
VALIGN="top"
><A
HREF="function.ldap-add.html"
>Next</A
></TD
></TR
><TR
><TD
WIDTH="33%"
ALIGN="left"
VALIGN="top"
>ibase_num_fields</TD
><TD
WIDTH="34%"
ALIGN="center"
VALIGN="top"
><A
HREF="funcref.html"
>Up</A
></TD
><TD
WIDTH="33%"
ALIGN="right"
VALIGN="top"
>ldap_add</TD
></TR
></TABLE
></DIV
></BODY
></HTML
>
|