sync.php 171 B

12345678
  1. <?php
  2. Swoole\Runtime::enableCoroutine();
  3. go(function () {
  4. $fp = fopen('data.txt', 'w+');
  5. fwrite($fp, str_repeat('A', 8192));
  6. fflush($fp);
  7. fclose($fp);
  8. });