PHP/File Directory/fileowner — различия между версиями

Материал из Web эксперт
Перейти к: навигация, поиск
м (1 версия)
 
(нет различий)

Текущая версия на 07:04, 26 мая 2010

fileowner.php

 
<?php
   $uid = fileowner("/etc/passwd"); 
?>



To read the owner of a file, use the fileowner( ) function

 
<?
    $owner = fileowner("/etc/passwd");
    if ($owner != 0) {
            print "Warning: /etc/passwd isn"t owned by root!";
    }
?>