Flake\Controller\Cli::file_writeBin PHP Method

file_writeBin() public method

public file_writeBin ( $sPath, $sData, $bUTF8 = true )
    function file_writeBin($sPath, $sData, $bUTF8 = true)
    {
        $rFile = fopen($sPath, "wb");
        if ($bUTF8 === true) {
            fputs($rFile, "" . $sData);
        } else {
            fputs($rFile, $sData);
        }
        fclose($rFile);
    }