PHP操做shell

1. system 函數 (直接輸出執行結果)

<?php

$shell = 'ls';

system($shell);



實例2

<?php

$shell = 'ls';

system($shell, $s);

echo $s //返回執行狀態, 成功則返回 0, 不成功則返回127

2. exec函數 (將返回的結果放到數組中)

<?php

$shell = "awk -F '{print $1,$3,$4,$6,$7}' /etc/passwd";

exec($shell, $arr);


print_r($arr);
相關文章
相關標籤/搜索