Fix refcounting in arReturn() and stop leaking static strings.
[hiphop-php.git] / hphp / test / zend / bad / ext / ldap / tests / ldap_get_dn_error.php
blobb64d478af09b96df62fb2de4add3bf806e5c7b3f
1 <?php
2 require "connect.inc";
4 $link = ldap_connect($host, $port);
5 var_dump(ldap_get_dn($link));
6 var_dump(ldap_get_dn($link, $link));
7 ?>
8 ===DONE===