运行 ❯
获取您的
自己的 PHP
服务器
×
更改方向
更改主题,深色/浅色
转到 Spaces
<!DOCTYPE html> <html> <body> <?php echo "Starting the process."; try { // Select randomly between 0 and 1, throw an exception if 1 is selected. $random = rand(0, 1); if($random == 1) { throw new Exception("Exception"); } } finally { echo "Process complete"; } ?> </body> </html>
启动进程。进程已完成