最後のDS以降のファイル名がサクっとほしい時に使用。
例。
$path = '/home/admin/../../targetFile.php'; echo basename($path); ↓ targetFile.php
ちなみに以下の記述で自分のファイル名が得られる。
echo basename(__FILE__); ↓ targetFile.php
まぁ当然なんだけども。
最後のDS以降のファイル名がサクっとほしい時に使用。
例。
$path = '/home/admin/../../targetFile.php'; echo basename($path); ↓ targetFile.php
ちなみに以下の記述で自分のファイル名が得られる。
echo basename(__FILE__); ↓ targetFile.php
まぁ当然なんだけども。