Lines Matching refs:f
31 $f = fopen($outputFile, 'w'); variable
32 fwrite($f, "<?php\n\n");
33 fwrite($f, "/**\n");
34 fwrite($f, " * Automatically generated timezone file\n");
35 fwrite($f, " *\n");
36 fwrite($f, " * Last update: " . date(DATE_W3C) . "\n");
37 fwrite($f, " * Source: " . $windowsZonesUrl . "\n");
38 fwrite($f, " *\n");
39 fwrite($f, " * @copyright Copyright (C) fruux GmbH (https://fruux.com/).\n");
40 fwrite($f, " * @license http://sabre.io/license/ Modified BSD License\n");
41 fwrite($f, " */\n");
42 fwrite($f, "\n");
43 fwrite($f, "return ");
44 fwrite($f, var_export($map, true) . ';');
45 fclose($f);