append()
This function adds the content you need to add to the file without having to delete all existing content.
/**
* @throws Throwable
*
* Use this to append to a file.
*/
public static function append(string $path, string $data) : Promise;
Last updated