use AsyncFile;
$content = (yield AsyncFile::read(__ROOT__."runtime/test.txt"));
$res = (yield AsyncFile::write(__ROOT__."runtime/test.txt", "hello wordls!"));
$res = (yield AsyncFile::write(__ROOT__."runtime/test.txt", "hello wordls!", FILE_APPEND));
目前仅支持小于4M的文件