Home Backend Development PHP Tutorial 在PHP中执行系统外部命令_PHP

在PHP中执行系统外部命令_PHP

Jun 01, 2016 pm 12:38 PM
php Can Order external implement system

在PHP中执行系统外部命令



PHP作为一种服务器端的脚本语言象编写简单或者是复杂的动态网页这样的任务它完全能够胜任。但事情不总是如此有时为了实现某个功能必须借助于操作系统的外部程序或者称之为命令这样可以做到事半功倍。



那么
是否可以在PHP脚本中调用外部命令呢如果能如何去做呢有些什么方面的顾虑呢相信你看了本文后肯定能够回答这些问题了。



是否可以




答案是肯定的。PHP和其它的程序设计语言一样
完全可以在程序内调用外部命令并且是很简单的只要用一个或几个函数即可。



前提条件



由于PHP基本是用于WEB程序开发的
所以安全性成了人们考虑的一个重要方面。于是PHP的设计者们给PHP加了一个门安全模式。如果运行在安全模式下那么PHP脚本中将受到如下四个方面的限制



执行外部命令

在打开文件时有些限制

连接MySQL数据库

基于HTTP的认证

在安全模式下
只有在特定目录中的外部程序才可以被执行对其它程序的调用将被拒绝。这个目录可以在php.ini文件中用safe_mode_exec_dir指令或在编译PHP是加上--with-exec-dir选项来指定默认是/usr/local/php/bin。



如果你调用一个应该可以输出结果的外部命令
意思是PHP脚本没有错误得到的却是一片空白那么很可能你的网管已经把PHP运行在安全模式下了。



如何做




在PHP中调用外部命令
可以用如下三种方法来实现



1
用PHP提供的专门函数



PHP提供共了3个专门的执行外部命令的函数
system()exec()passthru()



system
()



原型
string system (string command [, int return_var])



system
()函数很其它语言中的差不多它执行给定的命令输出和返回结果。第二个参数是可选的用来得到命令执行后的状态码。



例子






system
("/usr/local/bin/webalizer/webalizer");

?> 



exec
()



原型
string exec (string command [, string array [, int return_var]])



exec
()函数与system()类似也执行给定的命令但不输出结果而是返回结果的最后一行。虽然它只返回命令结果的最后一行但用第二个参数array可以得到完整的结果方法是把结果逐行追加到array的结尾处。所以如果array不是空的在调用之前最好用unset()最它清掉。只有指定了第二个参数时才可以用第三个参数用来取得命令执行的状态码。



例子






exec
("/bin/ls -l");

exec
("/bin/ls -l", $res);

#$res是一个数据,每个元素代表结果的一行

exec("/bin/ls -l", $res, $rc);

#$rc的值是命令/bin/ls -l的状态码。成功的情况下通常是0

?> 



passthru
()



原型
void passthru (string command [, int return_var])



passthru
()只调用命令不返回任何结果但把命令的运行结果原样地直接输出到标准输出设备上。所以passthru()函数经常用来调用象pbmplusUnix下的一个处理图片的工具输出二进制的原始图片的流这样的程序。同样它也可以得到命令执行的状态码。



例子






header
("Content-type: image/gif");

passthru
("./ppmtogif hunte.ppm");

?> 



2
用popen()函数打开进程



上面的方法只能简单地执行命令
却不能与命令交互。但有些时候必须向命令输入一些东西如在增加Linux的系统用户时要调用su来把当前用户换到root才行而su命令必须要在命令行上输入root的密码。这种情况下用上面提到的方法显然是不行的。



popen
()函数打开一个进程管道来执行给定的命令返回一个文件句柄。既然返回的是一个文件句柄那么就可以对它读和写了。在PHP3中对这种句柄只能做单一的操作模式要么写要么读从PHP4开始可以同时读和写了。除非这个句柄是以一种模式读或写打开的否则必须调用pclose()函数来关闭它。



例子1






$fp
=popen("/bin/ls -l", "r");

?> 



例子2
本例来自PHP中国联盟网站http://www.phpx.com/show.php?d=col&i=51





/* PHP中如何增加一个系统用户

下面是一段例程,增加一个名字为james的用户,

root密码是 verygood。仅供参考

*/


$sucommand = "su --login root --command";

$useradd
= "useradd ";

$rootpasswd = "verygood";

$user = "james";

$user_add = sprintf("%s \"%s %s\"",$sucommand,$useradd,$user);

$fp
= @popen($user_add,"w");

@fputs($fp,$rootpasswd);

@pclose($fp);

?> 



3
用反撇号`也就是键盘上ESC键下面的那个和~在同一个上面



这个方法以前没有归入PHP的文档
是作为一个秘技存在的。方法很简单用两个反撇号把要执行的命令括起来作为一个表达式这个表达式的值就是命令执行的结果。如





$res
=`/bin/ls -l`;

echo '

'
Copy after login
.$res.'';

?> 



这个脚本的输出就象




hunte
.gif

hunte
.ppm

jpg
.htm

jpg
.jpg

passthru
.php 



要考虑些什么




要考虑两个问题
安全性和超时。



先看安全性。比如
你有一家小型的网上商店所以可以出售的产品列表放在一个文件中。你编写了一个有表单的HTML文件让你的用户输入他们的EMAIL地址然后把这个产品列表发给他们。假设你没有使用PHP的mail()函数或者从未听说过你就调用Linux/Unix系统的mail程序来发送这个文件。程序就象这样





system
("mail $to );

echo "我们的产品目录已经发送到你的信箱:$to";

?> 



用这段代码
一般的用户不会产生什么危险但实际上存在着非常大的安全漏洞。如果有个恶意的用户输入了这样一个EMAIL地址



'--bla ; mail someone@domain.com



那么这条命令最终变成




'mail --bla ; mail someone@domain.com



我相信
无论哪个网络管理人员见到这样的命令都会吓出一身冷汗来。



幸好
PHP为我们提供了两个函数EscapeShellCmd()和EscapeShellArg()。函数EscapeShellCmd把一个字符串中所有可能瞒过Shell而去执行另外一个命令的字符转义。这些字符在Shell中是有特殊含义的象分号重定向>和从文件读入等。函数EscapeShellArg是用来处理命令的参数的。它在给定的字符串两边加上单引号并把字符串中的单引号转义这样这个字符串就可以安全地作为命令的参数。



再来看看超时问题。如果要执行的命令要花费很长的时间
那么应该把这个命令放到系统的后台去运行。但在默认情况下象system()等函数要等到这个命令运行完才返回实际上是要等命令的输出结果这肯定会引起PHP脚本的超时。解决的办法是把命令的输出重定向到另外一个文件或流中





system
("/usr/local/bin/order_proc > /tmp/null &");

?>

Statement of this Website
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

Hot AI Tools

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

AI Hentai Generator

AI Hentai Generator

Generate AI Hentai for free.

Hot Article

Repo: How To Revive Teammates
1 months ago By 尊渡假赌尊渡假赌尊渡假赌
R.E.P.O. Energy Crystals Explained and What They Do (Yellow Crystal)
2 weeks ago By 尊渡假赌尊渡假赌尊渡假赌
Hello Kitty Island Adventure: How To Get Giant Seeds
1 months ago By 尊渡假赌尊渡假赌尊渡假赌

Hot Tools

Notepad++7.3.1

Notepad++7.3.1

Easy-to-use and free code editor

SublimeText3 Chinese version

SublimeText3 Chinese version

Chinese version, very easy to use

Zend Studio 13.0.1

Zend Studio 13.0.1

Powerful PHP integrated development environment

Dreamweaver CS6

Dreamweaver CS6

Visual web development tools

SublimeText3 Mac version

SublimeText3 Mac version

God-level code editing software (SublimeText3)

CakePHP Project Configuration CakePHP Project Configuration Sep 10, 2024 pm 05:25 PM

In this chapter, we will understand the Environment Variables, General Configuration, Database Configuration and Email Configuration in CakePHP.

PHP 8.4 Installation and Upgrade guide for Ubuntu and Debian PHP 8.4 Installation and Upgrade guide for Ubuntu and Debian Dec 24, 2024 pm 04:42 PM

PHP 8.4 brings several new features, security improvements, and performance improvements with healthy amounts of feature deprecations and removals. This guide explains how to install PHP 8.4 or upgrade to PHP 8.4 on Ubuntu, Debian, or their derivati

CakePHP Date and Time CakePHP Date and Time Sep 10, 2024 pm 05:27 PM

To work with date and time in cakephp4, we are going to make use of the available FrozenTime class.

CakePHP File upload CakePHP File upload Sep 10, 2024 pm 05:27 PM

To work on file upload we are going to use the form helper. Here, is an example for file upload.

CakePHP Routing CakePHP Routing Sep 10, 2024 pm 05:25 PM

In this chapter, we are going to learn the following topics related to routing ?

Discuss CakePHP Discuss CakePHP Sep 10, 2024 pm 05:28 PM

CakePHP is an open-source framework for PHP. It is intended to make developing, deploying and maintaining applications much easier. CakePHP is based on a MVC-like architecture that is both powerful and easy to grasp. Models, Views, and Controllers gu

CakePHP Creating Validators CakePHP Creating Validators Sep 10, 2024 pm 05:26 PM

Validator can be created by adding the following two lines in the controller.

How To Set Up Visual Studio Code (VS Code) for PHP Development How To Set Up Visual Studio Code (VS Code) for PHP Development Dec 20, 2024 am 11:31 AM

Visual Studio Code, also known as VS Code, is a free source code editor — or integrated development environment (IDE) — available for all major operating systems. With a large collection of extensions for many programming languages, VS Code can be c

See all articles