escapeshellarg PHP 4.0.3

string escapeshellarg(string arg)

 

シェルコマンドに使用される引数に引用符を付けてエスケープします。

escapeshellcmd PHP 3.0

string escapeshellcmd(string command)

 

シェルのメタ文字をエスケープします。

exec PHP 3.0

string exec(string command[, array output[, int return_value]])

 

外部プログラムを実行します。

passthru PHP 3.0

void passthru(string command[, int return_value])

 

外部プログラムを実行して未処理の出力を表示します。

proc_close PHP 4.3.0

int proc_close(resource process)

 

proc_open() で開いたプロセスを閉じます。

proc_open PHP 4.3.0

resource proc_open(string command, array descriptorspec, array &pipes)

 

ファイル記述子を細かく制御してプロセスを実行します。

shell_exec PHP 4.0

string shell_exec(string cmd)

 

シェルを介してコマンドを実行し、完了した結果を文字列で返します。