PHP/File Directory/dirname — различия между версиями
Admin (обсуждение | вклад) м (1 версия) |
|
(нет различий)
|
Текущая версия на 07:04, 26 мая 2010
dirname.php
<?php
$path = "/home/www/data/users.txt";
$dirname = dirname($path); // $dirname contains "/home/www/data"
?>
Use dirname() with predefined variable $SCRIPT_FILENAME to obtain the complete path of the script executing the command
<?
$dir = dirname($SCRIPT_FILENAME);
print $dir;
?>