transition-worker-2.php 193 B

123456789
  1. <?php
  2. while (frankenphp_handle_request(function () {
  3. echo "Hello from worker 2";
  4. // Simulate work to force potential race conditions (phpmainthread_test.go)
  5. usleep(1000);
  6. })) {
  7. }