Amranidev\ScaffoldInterface\Filesystem\Filesystem::append PHP 메소드

append() 공개 메소드

File append.
public append ( strign $path, string $content ) : integer
$path strign
$content string
리턴 integer
    public function append($path, $content)
    {
        return file_put_contents($path, $content, FILE_APPEND | LOCK_EX);
    }