我有一個問題。我想用php代碼重新啓動ubuntu,但是我不能。我已經嘗試了所有的代碼從互聯網上像如何從PHP腳本暫停/重啓Linux Ubuntu?
<?php
shell_exec("/usr/sbin/reboot");
exec("/usr/sbin/reboot");
system("/usr/sbin/reboot");
?>
和
<?php
shell_exec("shutdown -r");
exec("shutdown -r");
system("shutdown -r");
?>
但他們都無能爲力。請幫幫我。我需要這個代碼。
我看到你的鏈接。但我不完全明白。 –
我知道這是危險的,但我需要此代碼進行練習 –