PHP file_exists() º¯Êý
¶¨ÒåºÍÓ÷¨
file_exists() º¯Êý¼ì²éÎļþ»òĿ¼ÊÇ·ñ´æÔÚ¡£
Èç¹ûÖ¸¶¨µÄÎļþ»òĿ¼´æÔÚÔò·µ»Ø true£¬·ñÔò·µ»Ø false¡£
Óï·¨
file_exists(path)
²ÎÊý | ÃèÊö |
---|---|
path | ±ØÐè¡£¹æ¶¨Òª¼ì²éµÄ·¾¶¡£ |
Àý×Ó
<?php echo file_exists("test.txt"); ?>
Êä³ö£º
1