BIG
1. ls 명령 수행 예시
<?php
$directory = '/path/to/directory';
$output = shell_exec('ls ' . escapeshellarg($directory));
echo "<pre>$output</pre>";
?>
2. find 명령 수행 예시
<?php
$directory = '/path/to/directory';
$output = shell_exec("find $directory -type f");
echo "<pre>$output</pre>";
?>
LIST
'!!...PHP > !!...SAMPLE' 카테고리의 다른 글
[PHP]15_http reqeust sample code (0) | 2023.02.08 |
---|---|
[PHP]14_openai API ( chatGPT )연동 샘플 코드 (0) | 2023.02.08 |
[PHP]12_문법예제 * 를 이용하여 다이아몬드 모양 출력하기 (0) | 2022.12.22 |
[PHP]11_특정 디렉토리 파일 목록 출력 (0) | 2022.10.20 |
[PHP]10_문자열 형식 검사 JSON 여부 (0) | 2022.10.20 |