我正在设置一个基本网页,它将执行压力测试并模拟我的网络服务器上的负载。压力 PHP 有效,但是当我单击按钮时没有任何反应。
<?php
$urlRoot="http://169.254.169.254/latest/meta-data/";
$instance = file_get_contents($urlRoot . 'instance-id');
$az = file_get_contents($urlRoot . 'placement/availability-zone');
?>
<center>This page was generated by instance <b><?= $instance ?></b> in Availability Zone
<b>. <?= $az ?></b>.</center>
<form action="stress.php" method="get">
<input type="submit" value="Buy A lot">
</form>
这里也是强调php
<?php
$output = shell_exec('stress --cpu 8 --timeout 120 > output.txt &');
echo "<pre>$output</pre>";
?>
冉冉说