fork download
<?php
error_reporting(-1);
header('Content-Type: text/html; charset=utf-8');
echo "Бросаем кубик...\n";
$random = mt_rand(0, 6);
echo "Выпало $random \n";
Success #stdin #stdout 0.01s 82880KB
stdin
Standard input is empty
stdout
Бросаем кубик...
Выпало 1