Thursday, September 4, 2025
HomeLanguagesPHP | SplFileInfo getGroup() Function

PHP | SplFileInfo getGroup() Function

The SplFileInfo::getGroup() function is an inbuilt function of Standard PHP Library (SPL) in PHP which is used to get the file group.
Syntax: 
 

int SplFileInfo::getGroup( void)

Parameters: This function does not accept any parameter.
Return Value: This function returns an integer which contains group id.
Below programs illustrate the SplFileInfo::getGroup() function in PHP:
Program 1: 
 

PHP




<?php
// PHP Program to illustrate
// Splfileinfo getGroup function
  
// Create new SPlFileInfo Object
$file = new SplFileInfo("gfg.txt");
  
// Print result
print_r($file->getGroup());
  
?>


Output: 
 

0

Program 2: 
 

php




<?php
 
// PHP program to use array to check multiple files
   
$GFG = array (
    "/home/rajvir/Desktop/neveropen/dummy.php",
    "/home/rajvir/Desktop/gfg.txt",
    "/var/www/html/gfg.php",
    "demo.c"
);
   
foreach ($GFG as $file_name) {
       
    // Create new SPlFileInfo Object
    $file = new SplFileInfo($file_name);
       
    // Print result
    print_r($file->getGroup());
      
}
?>


Output: 
 

1000

Reference: http://php.net/manual/en/splfileinfo.getgroup.php
 

Dominic
Dominichttp://wardslaus.com
infosec,malicious & dos attacks generator, boot rom exploit philanthropist , wild hacker , game developer,
RELATED ARTICLES

Most Popular

Dominic
32263 POSTS0 COMMENTS
Milvus
81 POSTS0 COMMENTS
Nango Kala
6626 POSTS0 COMMENTS
Nicole Veronica
11799 POSTS0 COMMENTS
Nokonwaba Nkukhwana
11857 POSTS0 COMMENTS
Shaida Kate Naidoo
6749 POSTS0 COMMENTS
Ted Musemwa
7025 POSTS0 COMMENTS
Thapelo Manthata
6696 POSTS0 COMMENTS
Umr Jansen
6716 POSTS0 COMMENTS