경로 Path Helper

이 헬퍼는 파일경로 관련 작업을 할 때 유용합니다.

헬퍼 로딩 Loading this Helper

헬퍼는 아래와 같이 로드합니다:

$this->load->helper('path');

사용 가능한 함수들 Available Functions

아래의 함수들이 사용 가능합니다:

set_realpath($path[, $check_existance = FALSE])
인수:
  • $path (string) – Path
  • $check_existance (bool) – Whether to check if the path actually exists
반환값:

An absolute path

반환형:

문자열

경로가 실제로 존재하는 지를 검사합니다. 이 함수는 심볼릭링크(symbolic links)나, 상대적 디렉토리 구조( relative directory structures)를 제외한 서버 경로를 리턴합니다. 옵션인 두 번째 파라미터는 에러를 발생시키기 위해서 사용합니다. 아래와 같이 TRUE 로 설정하면, 에러를 발생시키고 FALSE 로 설정하면 에러 대신 넘겨준 경로값을 다시 리턴합니다.

예제:

$file = '/etc/php5/apache2/php.ini';
echo set_realpath($file); // Prints '/etc/php5/apache2/php.ini'

$non_existent_file = '/path/to/non-exist-file.txt';
echo set_realpath($non_existent_file, TRUE);    // Shows an error, as the path cannot be resolved
echo set_realpath($non_existent_file, FALSE);   // Prints '/path/to/non-exist-file.txt'

$directory = '/etc/php5';
echo set_realpath($directory);  // Prints '/etc/php5/'

$non_existent_directory = '/path/to/nowhere';
echo set_realpath($non_existent_directory, TRUE);       // Shows an error, as the path cannot be resolved
echo set_realpath($non_existent_directory, FALSE);      // Prints '/path/to/nowhere'