downloads | documentation | faq | getting help | mailing lists | licenses | wiki | reporting bugs | php.net sites | links | conferences | my php.net

search for in the

fileinode> <filectime
Last updated: Fri, 20 Nov 2009

view this page in

filegroup

(PHP 4, PHP 5)

filegroupGets file group

Descrierea

int filegroup ( string $filename )

Gets the file group. The group ID is returned in numerical format, use posix_getgrgid() to resolve it to a group name.

Parametri

filename

Path to the file.

Valorile întroarse

Returns the group ID of the file, or FALSE in case of an error. The group ID is returned in numerical format, use posix_getgrgid() to resolve it to a group name. Upon failure, FALSE is returned.

Exemple

Example #1 Finding the group of a file

<?php
$filename 
'index.php';
print_r(posix_getgrgid(filegroup($filename)));
?>

Erori/Excepţii

Upon failure, an E_WARNING is emitted.

Note

Notă: Rezultatele acestei funcţii sunt stocate în cache. Accesaţi clearstatcache() pentru mai multe detalii.

Sfat

Începând cu PHP 5.0.0 această funcţie poate fi utilizată de asemenea cu unele învelişuri URL. Referiţi-vă la List of Supported Protocols/Wrappers pentru lista învelişurilor care susţin familia de funcţionalitate stat().

Vedeţi de asemenea



add a note add a note User Contributed Notes
filegroup
There are no user contributed notes for this page.

fileinode> <filectime
Last updated: Fri, 20 Nov 2009
 
 
show source | credits | stats | sitemap | contact | advertising | mirror sites