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