Warning: shell_exec() [function.shell-exec]: Unable to execute

프로그래밍/PHP|2015. 1. 27. 11:19
반응형

에러메세지 출력 : Warning: shell_exec() [function.shell-exec]: Unable to execute

 

php 에서 shell_exec() 함수가 안될때 아래 내용을 파일로 만들어 실행해봅니다.

 


------------- 파일명 : test.php ------------

<?php
$dir = "/tmp";
$dh  = opendir($dir);
while (false !== ($filename = readdir($dh))) {
    $files[] = $filename;
}
sort($files);
print_r($files);
rsort($files);
print_r($files);
?>

------------------------------------------------

 

[root@sysdocu:~]# /usr/local/php/bin/php test.php

 

 

반응형

댓글()