PHP exec()

Jmnote (토론 | 기여)님의 2016년 11월 18일 (금) 10:26 판 (새 문서: ==개요== ;PHP exec() <source lang='php'> echo exec('cat /etc/at.deny | head -3'); # bin </source> <source lang='php'> exec('cat /etc/at.deny | head -3', $result); print_r($result);...)
(차이) ← 이전 판 | 최신판 (차이) | 다음 판 → (차이)

1 개요

PHP exec()
echo exec('cat /etc/at.deny | head -3');
# bin
exec('cat /etc/at.deny | head -3', $result);
print_r($result);
# Array
# (
#     [0] => alias
#     [1] => backup
#     [2] => bin
# )
function execute($command) {
	exec($command, $result);
	return implode("\n", $result);
}
echo execute('cat /etc/at.deny | head -3');
# alias
# backup
# bin

2 같이 보기

문서 댓글 ({{ doc_comments.length }})
{{ comment.name }} {{ comment.created | snstime }}