What is fileowner in PHP Filesystem

In this article I am going to explain about fileowner function in PHP.
  • 1147

PHP fileowner() Function

The filename fileowner function is used to get file owner.

Syntax of fileowner function

fileowner(filename)

Parameters in fileowner function

It has only one parameter:

Parameter Description
filename It specifies the file to check.

Example of filesystem fileowner function

<html>

<body>
 

<?php

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

?>
 

</body>

</html>


Output:

fileownerfunctionphp.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.