Warning: shell_exec() [function.shell-exec]: Unable to execute
프로그래밍/PHP2015. 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
반응형
'프로그래밍 > PHP' 카테고리의 다른 글
PHP 기본 문법 배우기 (0) | 2015.01.27 |
---|---|
php 함수 지원 여부 확인하기 (0) | 2015.01.27 |
폼메일 소스 (PHP) (0) | 2015.01.27 |
php5 에서 domxml_open_mem() 함수 사용하기 (0) | 2015.01.27 |
Parse error: syntax error, unexpected T_PRIVATE, expecting ']' in (0) | 2015.01.27 |
댓글()