コード例 #1
0
function convertFile($filepath)
{
    $file = file_get_contents($filepath);
    $oldFile = $file;
    convertCustom($filepath, $file);
    convertForeachList($filepath, $file);
    if ($file !== $oldFile) {
        echo "\rReplacing {$filepath} ";
        file_put_contents($filepath, $file);
    }
}
コード例 #2
0
function convertFile($filepath)
{
    $file = file_get_contents($filepath);
    $oldFile = $file;
    convertUse($filepath, $file);
    convertClosureBinding($filepath, $file);
    convertCustom($filepath, $file);
    convertArraySyntax($file);
    removeCallable($file);
    convertBinaryNotation($file);
    if ($file !== $oldFile) {
        echo "\rReplacing {$filepath} ";
        file_put_contents($filepath, $file);
    }
}