Updating submodules
[hiphop-php.git] / hphp / test / slow / ext_file / fprintf.php
blobf6da13b1f3b1227d26f00f5c938bf0ca79be6977
1 <?hh
4 <<__EntryPoint>>
5 function main_fprintf() {
6 $tempfile = tempnam('/tmp', 'vmextfiletest');
8 $f = fopen($tempfile, 'w');
9 fprintf($f, "%s %s", "testing", "fprintf");
10 fclose($f);
12 $f = fopen($tempfile, "r");
13 fpassthru($f);
14 echo "\n";
16 unlink($tempfile);