Hello folks! welcome back to a new edition of our tutorial on PHP. In this tutorial guide, we are going to be studying about the PHP lchgrp() Function.
The built-in PHP lchgrp() function changes the group ownership of a symlink.
The built-in PHP lchgrp() function changes the group ownership of a symlink.
Syntax
Following below is the syntax to use this function -
bool lchgrp ( string $filename , mixed $group )
This built-in function can attempt to change the group of the symlink filename to group. Only superuser may be able to change the group of a symlink arbitrarily, other users may only change the group of a symlink to any group in which that user is a member.
Return Value
This PHP function returns true on success, or false on failure.
Example
Try out the below example -
<?php $target = "/PhpProject/PhpTest.php"; $link = "/PhpProject/test.html"; symlink($target, $link); lchgrp($link, 8); ?>
Alright guys! This is where we are rounding up for this tutorial guide. In our next tutorial guide, we are going to be discussing about the PHP lchown() Function.
Do feel free to ask your questions where necessary and we will attend to them as soon as possible. If this tutorial was helpful to you, you can use the share button to share this tutorial.
Follow us on our various social media platforms to stay updated with our latest tutorials. You can also subscribe to our newsletter in order to get our tutorials delivered directly to your emails.
Thanks for reading and bye for now.
Do feel free to ask your questions where necessary and we will attend to them as soon as possible. If this tutorial was helpful to you, you can use the share button to share this tutorial.
Follow us on our various social media platforms to stay updated with our latest tutorials. You can also subscribe to our newsletter in order to get our tutorials delivered directly to your emails.
Thanks for reading and bye for now.