?? ?? ?? ??
PHP ????() ?? ???
??: ?? ?? ??? ?? ???? ?????.
??: ??pathinfo(??,??)
????:
Parameters | Description |
path | ?????. ??? ??? ?????. |
process_sections | ????. ??? ?? ??? ?????. ???? ?????. ??? ?: PATHINFO_DIRNAME - dirname? ?????. PATHINFO_BASENAME - ?? ??? ?????. PATHINFO_EXTENSION - ???? ?????. |
??: ?? ??? ??? ?? ??? ?????. ?? ?? ??? ?????: [dirname], [basename], [extension]
PHP ????() ?? ?
<?php $file = "/phpstudy/WWW/index.php"; print_r(pathinfo($file)) ; ?>
???? ?? ?
??? ????? ??? "???? ??" ??? ?????
??:
Array ( [dirname] => /phpstudy/WWW [basename] => index.php [extension] => php [filename] => index )