制御[php]ディレクトリ


mkdir.php

<?php
// 디렉토리 생성: 디렉토리명, 권한, 재귀적으로 생성할 것인지?
mkdir("dir/sub-dir", 0700, true);

getcwd.php

<?php
// getcwd(): 현재 디렉토리 위치 알아내기
echo getcwd() . '<br>';
chdir('../'); // 부모 디렉토리로 이동
echo getcwd() . '<br>';

scandir.php

<?php 
// 디렉토리 탐색
$dir = './';
$files1 = scandir($dir);
$files2 = scandir($dir, 1); // 두번째 인자로 1을 전달하면 정렬이 반대로 바뀜.

print_r($files1);
print_r($files2);
  • Thanks to生活コード