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 is_writeable() Function.
The built-in is_writeable() function checks whether the specified file is writeable. It is an alias of the is_writable() function.
The built-in is_writeable() function checks whether the specified file is writeable. It is an alias of the is_writable() function.
Syntax
Following below is the syntax to use this function -
bool is_writeable ( string $filename )
Return Value
This built-in function returns true if the file is writeable, otherwise it returns false.
Example
Try out the below example -
<?php $file = "/PhpProject/php/phptest.txt"; if(is_writeable($file)) { echo ("$file is writeable"); } else { echo ("$file is not wrietable"); } ?>
Output
When the above code is executed, it will produce the following result -
/PhpProject/php/phptest.txt is writeable
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 lchgrp() 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.