[PHP]File Basics

개발관련/PHP 2012. 4. 20. 15:22 |
";
echo __LINE__ ."
"; // be careful once you include files echo dirname(__FILE__) ."
"; echo __DIR__ ."
"; // only PHP 5.3 echo file_exists(__FILE__) ? 'yes' : 'no'; echo "
"; echo file_exists(dirname(__FILE__)."/basic.html") ? 'yes' : 'no'; echo "
"; echo file_exists(dirname(__FILE__)) ? 'yes' : 'no'; echo "
"; echo is_file(dirname(__FILE__)."/basic.html") ? 'yes' : 'no'; echo "
"; echo is_file(dirname(__FILE__)) ? 'yes' : 'no'; echo "
"; echo is_dir(dirname(__FILE__)."/basic.html") ? 'yes' : 'no'; echo "
"; echo is_dir(dirname(__FILE__)) ? 'yes' : 'no'; echo "
"; echo is_dir('..') ? 'yes' : 'no'; echo "
"; ?>

D:\wamp\www\php\file_basics.php
4
D:\wamp\www\php
D:\wamp\www\php
yes
yes
yes
yes
no
no
yes
yes

'개발관련 > PHP' 카테고리의 다른 글

[PHP]File Delete  (0) 2012.04.20
[PHP]File Changer  (0) 2012.04.20
[PHP]File Access  (0) 2012.04.20
[PHP]Date Time Unix  (0) 2012.04.20
[PHP]Date & Time Format  (0) 2012.04.20
Posted by 파노카페
: