반응형
Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | |||
5 | 6 | 7 | 8 | 9 | 10 | 11 |
12 | 13 | 14 | 15 | 16 | 17 | 18 |
19 | 20 | 21 | 22 | 23 | 24 | 25 |
26 | 27 | 28 | 29 | 30 | 31 |
Tags
- Python
- mysql 삭제
- Docker ubuntu
- Android
- 리액트
- next.js tailwindcss
- Docker
- mysql error
- 리액트 tailwindcss
- next.js tailwind css
- react typescript
- mysql
- react
- mysql purge
- react tailwind css
- 리눅스
- 안드로이드
- react tailwindcss
- mysql uninstall
- PHP
- next.js css framework
- mysql 재설치
- 도커
- mysql fix install
- mysql 재설치 명령어
- 리액트 tailwind css
- mysql broken install
- react 기초
- javascript
- 리액트 문법
Archives
- Today
- Total
Developer_hong
PHP Magic Constant 본문
반응형
dirname(__FILE__)
echo __FILE__; // 파일명을 포함한 경로
echo dirname(__FILE__); //파일명을 제외한 경로
상황 : dirname(__FILE__)이라고 입력된 소스코드(현재 소스코드)파일명은 index.php이고 위치는 folder/path/sehee이다
따라서 folder/path/sehee/index.php 이렇다고 칠때,
__FILE__은 현재 소스코드가 위치하고있는 경로를 말한다.
따라서 echo __FILE__; 하면 folder/path/sehee/index.php이 출력된다.
dirname(__FILE__)은 파일명을 제외한 경로이므로
따라서 echo dirname(__FILE__); 하면 folder/path/sehee이 출력된다.
php내부예약어이므로 자세한 내용은 php.net에서 확인 가능
출처: https://88240.tistory.com/109
추가)
- __LINE__: Indicate current line number of the file.
- __FILE__: This constant is used to indicate the current directory in which the file is present.
- __FUNCTION__: This constant is used to indicates the path of the file.
- __CLASS__: This constant Returns the class name.
- __METHOD__: Returns the function name.
- __DIR__: This constant is used to indicate the current directory in which the file is present.
- __NAMESPACE__: Displays the namespace in which we are working.
<?php
function fun_magic(){
echo __LINE__."<BR/>";
echo __FILE__."<BR/>";
echo __DIR__."<BR/>";
ECHO __FUNCTION__."<BR/>";
ECHO __METHOD__."<BR/>";
ECHO __NAMESPACE__."<BR/>";
}
fun_magic();
?>
출처: https://www.c-sharpcorner.com/UploadFile/d9da8a/five-magic-constant-use-in-php/
반응형
'프로그래밍 > PHP' 카테고리의 다른 글
Redirect 체크 (0) | 2021.05.12 |
---|---|
PHP 해당 월 마지막일 구하기, 시간비교 (0) | 2021.05.11 |
PHP 정규식 (0) | 2021.05.11 |
PHP 시간 체크 (0) | 2021.05.11 |