Updating submodules
[hiphop-php.git] / hphp / test / slow / ext_stream / stream_set_blocking.php
blob2da69b079a997362f5765bbaa096b20f1a624eb1
1 <?hh
4 <<__EntryPoint>>
5 function main_stream_set_blocking() {
6 $fd = fopen(__DIR__.'/stream_set_blocking.php.sample', 'rb');
7 var_dump(stream_set_blocking($fd, true));
8 var_dump(stream_set_blocking($fd, false));
9 var_dump(trim(fgets($fd)));
10 fclose($fd);