PHP | chgrp( ) Function
The chgrp() function in PHP is an inbuilt function which is used to change the user group of the specified file. It returns true on success and false on failure. Only the superuser has the right to change the group of a file arbitrarily.
Syntax:
bool chgrp ( $filename, $group )
Parameters: The chown() function in PHP accepts two parameters which are filename and user.
- $filename: It specifies the file whose user group you want to change.
- $group: It specifies the new user group. It can be a group name or a number.
Return Value: The chgrp() function returns true on success and false on failure.
Errors And Exception:
- The chgrp() function in PHP doesn’t works for remote files.It only works on files which are accessible by the server’s filesystem.
- PHP checks whether the files or directories which are being operated have the same owner as the script that is being executed or not when safe mode is enabled.
Examples:
Input : chgrp("gfg.txt", "administrator")
Output :true
Input : $filename = "/user/Desktop/geeksforgeeks/gfg.txt";
chgrp( $filename, "guest" );
Output :true
Below programs illustrate the chgrp() function:
Program 1:
<?php // changes the file group to administrator chgrp("gfg.txt", "administrator") ?> |
Output:
true
Program 2:
<?php // Changes the file group to guest $filename = "/user/Desktop/geeksforgeeks/gfg.txt"; chgrp ( $filename, "guest" ); chown($path, $user_name); ?> |
Output:
true
Reference:
http://php.net/manual/en/function.chgrp.php
Recommended Posts:
- How to call a function that return another function in JavaScript ?
- How to get the function name from within that function using JavaScript ?
- PHP | dir() Function
- p5.js | nf() Function
- PHP | ord() Function
- p5.js | box() Function
- p5.js | nfc() function
- CSS | hsl() Function
- p5.js | day() function
- p5.js | arc() Function
- D3.js | d3.map.has() Function
- PHP | tan( ) Function
- CSS | rgb() Function
- D3.js | d3.map.get() Function
- PHP | exp() Function
If you like GeeksforGeeks and would like to contribute, you can also write an article using contribute.geeksforgeeks.org or mail your article to contribute@geeksforgeeks.org. See your article appearing on the GeeksforGeeks main page and help other Geeks.
Please Improve this article if you find anything incorrect by clicking on the "Improve Article" button below.



