I can't put a backspace in a File I try with:
fwrite($file, "\tpublic static function byPk(");
foreach ($pk as $column)
fwrite($file, "\$" . $column->name . ", ");
fwrite($file, "\x08");
But the result in the file is:
Any solution? Thanks! :D