FREE Web Template Download
HTML CSS JAVASCRIPT SQL PHP BOOTSTRAP JQUERY ANGULARJS TUTORIALS REFERENCES EXAMPLES Blog
 

PHP chown() Function


PHP Filesystem Reference Complete PHP Filesystem Reference

Definition and Usage

The chown() function changes the owner of the specified file.

Returns TRUE on success and FALSE on failure.

Syntax

chown(file,owner)

Parameter Description
file Required. Specifies the file to check
owner Required. Specifies the new owner. Can be a user name or a user ID.

Example

<?php
chown("test.txt","charles")
?>

PHP Filesystem Reference Complete PHP Filesystem Reference