Home  >  Article  >  Backend Development  >  PHP用反撇号执行外部命令_PHP

PHP用反撇号执行外部命令_PHP

WBOY
WBOYOriginal
2016-06-01 14:35:13784browse

代码如下:

echo `mysqldump -h localhost -u$DbUser -p$DbPwd --default-character-set=utf8 $DbName > /var/$dumpFileName`;

反撇号其他用法

<&#63;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>";
&#63;>

输出结果如下:
the server timestamp is: 当前日期: 2009/06/30 二输入新日期: (年月日)

以上所述就是本文的全部内容了,希望大家能够喜欢。

Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn