0

Syntax

bool chown ( string $filename, mixed $user );

Definition and Usage

Attempts to change the owner of the file filename to user user. Only the superuser may change the owner of a file.

Paramters

ParameterDescription
pathA path to the file.
userA user name or number.

Return Value

Returns TRUE on success or FALSE on failure.

Example

Following is the usage of this function:

<?php
$path = "/home/httpd/html/index.php";
$user_name = "root";
chown($path, $user_name);         
?>

Post a Comment

 
Top