update : 2015.11.03
php.shukuma.com검색:
|
basename(PHP 4, PHP 5, PHP 7) basename — Returns trailing name component of path 설명
string basename
( string
$path
[, string $suffix
] )Given a string containing the path to a file or directory, this function will return the trailing name component. 인수
반환값
Returns the base name of the given 예제
Example #1 basename() example
<?php 위 예제의 출력: 1) sudoers 2) sudoers.d 3) passwd 4) etc 5) . 6) 주의
|