| 
 
update : 2015.11.03
 
php.shukuma.com검색:
  
 | 
DirectoryIterator::getOwner(PHP 5) DirectoryIterator::getOwner — Get owner of current DirectoryIterator item 설명
   public int DirectoryIterator::getOwner
    ( void
   ) 
  Get the owner of the current DirectoryIterator item, in numerical format. 인수이 함수는 인수가 없습니다. 반환값The file owner of the file, in numerical format. 예제
 Example #1 DirectoryIterator::getOwner() example This example displays the owner of the directory which contains the script. 
<?php위 예제의 출력 예시: 
Array
(
    [name] => tom
    [passwd] => x
    [uid] => 501
    [gid] => 42
    [gecos] => Tom Cat
    [dir] => /home/tom
    [shell] => /bin/bash
)
참고
 
  |