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
|
--TEST--
ldap_explode_dn() test
--EXTENSIONS--
ldap
--FILE--
<?php
/* Explode with attributes */
var_dump(ldap_explode_dn("cn=bob,dc=example,dc=com", 0));
/* Explode with attributes */
var_dump(ldap_explode_dn("cn=bob,ou=users,dc=example,dc=com", 0));
/* Explode without attributes */
var_dump(ldap_explode_dn("cn=bob,dc=example,dc=com", 1));
/* Explode without attributes */
var_dump(ldap_explode_dn("cn=bob,ou=users,dc=example,dc=com", 1));
/* Explode with attributes and < > characters */
var_dump(ldap_explode_dn("cn=<bob>,dc=example,dc=com", 0));
/* Explode without attributes and < > characters */
var_dump(ldap_explode_dn("cn=<bob>,dc=example,dc=com", 1));
/* Bad DN value with attributes */
var_dump(ldap_explode_dn("bob,dc=example,dc=com", 0));
/* Bad DN value without attributes */
var_dump(ldap_explode_dn("bob,dc=example,dc=com", 1));
echo "Done\n";
?>
--EXPECT--
array(4) {
["count"]=>
int(3)
[0]=>
string(6) "cn=bob"
[1]=>
string(10) "dc=example"
[2]=>
string(6) "dc=com"
}
array(5) {
["count"]=>
int(4)
[0]=>
string(6) "cn=bob"
[1]=>
string(8) "ou=users"
[2]=>
string(10) "dc=example"
[3]=>
string(6) "dc=com"
}
array(4) {
["count"]=>
int(3)
[0]=>
string(3) "bob"
[1]=>
string(7) "example"
[2]=>
string(3) "com"
}
array(5) {
["count"]=>
int(4)
[0]=>
string(3) "bob"
[1]=>
string(5) "users"
[2]=>
string(7) "example"
[3]=>
string(3) "com"
}
bool(false)
bool(false)
bool(false)
bool(false)
Done
|