我正在設(shè)置一個(gè)基本網(wǎng)頁,它將執(zhí)行壓力測試并模擬我的網(wǎng)絡(luò)服務(wù)器上的負(fù)載。壓力 PHP 有效,但是當(dāng)我單擊按鈕時(shí)沒有任何反應(yīng)。<?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>這里也是強(qiáng)調(diào)php<?php$output = shell_exec('stress --cpu 8 --timeout 120 > output.txt &');echo "<pre>$output</pre>";?>
1 回答

冉冉說
TA貢獻(xiàn)1877條經(jīng)驗(yàn) 獲得超1個(gè)贊
像這樣設(shè)置你的輸入: <input type="submit" value="Buy A lot" name="clickme">
比將以下代碼放在任何函數(shù)之外的 php 文本中:
<?php
if(array_key_exists('clickme',$_POST)){
functionToExecute();
}
?>
將按鈕被單擊時(shí)要執(zhí)行的所有內(nèi)容放入函數(shù)中,并插入函數(shù)名稱而不是“functionToExecute”。
- 1 回答
- 0 關(guān)注
- 136 瀏覽
添加回答
舉報(bào)
0/150
提交
取消