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