运行 ❯
获取您
自己的 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>
开始这个过程。过程完成