github.com/pyroscope-io/pyroscope@v0.37.3-0.20230725203016-5f6947968bd0/examples/php/main.php (about)

     1  <?php
     2  $x = 1;
     3  
     4  while(true) {
     5    echo "The number is: $x\n";
     6    $x++;
     7    sleep(1);
     8  }
     9  ?>