import zend standard tests
[hiphop-php.git] / hphp / test / zend / bad / ext-standard-file / php_fd_wrapper_03.php
blobe743ba6ddaabd87164bab6305df5c1591486adbf
1 <?php
2 fopen("php://fd", "w");
3 fopen("php://fd/", "w");
4 fopen("php://fd/-2", "w");
5 fopen("php://fd/1/", "w");
7 echo "\nDone.\n";