What is Filesystem filegroup in PHP

In this article I am going to explain about filegroup function in PHP.
  • 955

PHP filegroup() Function

The filesystem filegroup function is used to returns group id of a file.

Syntax of filegroup function

filegroup(filename)

Parameters in filegroup function

It has only one parameter:

Parameter Description
filename It specifies the file to check.

Example of filesystem filegroup function

<html>

<body>

 

<?php

echo filegroup("C:\wamp\www\Dinesh\PhpIntro.txt");

?>

 

</body>

</html>


Output:

filegroupfunctionphp.jpg

You may also want to read these related articles :
here

Ask Your Question 

Got a programming related question? You may want to post your question here

Programming Answers here

Categories

More Articles

© 2020 DotNetHeaven. All rights reserved.