Skip to content

Instantly share code, notes, and snippets.

@high5
Created October 24, 2014 05:47
Show Gist options
  • Save high5/25e219def22f9506dff2 to your computer and use it in GitHub Desktop.
Save high5/25e219def22f9506dff2 to your computer and use it in GitHub Desktop.
ファイル上書きの典型的パターン
$dest = dirname(__FILE__) . "/../config.php";
$content = <<<EOF
<?php
return array(
'flag' => 1,
);
EOF;
$fp = fopen($dest, 'w');
fwrite($fp, $content);
fclose($fp);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment