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
| <!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
<title>파일의 확장자를 구함</title>
<link href="style.css" rel="stylesheet">
</head>
<body>
<div>
<?php
// 확장자를 구할 파일에 이 예제 파일을 설정
$fileName = basename(__FILE__);
// 파일이 있는지 확인
if( file_exists($fileName) )
{
// 경로 정보를 구함
$pathinfo = pathinfo($fileName);
// 브라우저에 파일 확장자를 출력함
echo $fileName . ' 의 확장자: ' . $pathinfo['extension'];
}
else
{
echo "파일이 존재하지 않음";
}
?>
</div>
</body>
</html>
|
댓글 없음:
댓글 쓰기