例如:
echo `whoami`;
// 導出數據庫,要導入的文件夾必須要有可寫權限, -u -p之後的內容必須要緊挨著寫
代碼如下:
echo `mysqldump -h localhost -u$DbUser -p$DbPwd --default-character-set=utf8 $DbName > /var/$dumpFileName`;
反撇號其他用法
1 2 3 4 5 6 7 8 9 10 <?php #使用反撇號,暗示作為命令來執行 $result=`date`; echo "<p>the server timestamp is: $result</p>"; echo "<hr color=red>"; #使用shell_exec() $result1=shell_exec("date"); echo "<p>the server timestamp is: $result1</p>"; ?>輸出結果如下:
the server timestamp is: 當前日期: 2009/06/30 二輸入新日期: (年月日)