Home Tutorial Php Phpfiles PHP is_writable Function with example

 
 

PHP is_writable Function with example
Posted on: October 30, 2009 at 12:00 AM
In this part of the PHP tutorial we will learn about the function is_writable in context of file handling. And also we will see the example related to the is_writable function

Syntax for PHP is_writable Function
bool is_writable(file_name)

  • It states whether the given file is a writable file or not.


Example of PHP is_writable Function

Code
<?php

    $a
=is_writable("c:/rose1/ram.txt");
    if
($a)
       echo
"file is writable ";
    else
       echo
"file ss not writable ";
?>


Output
file is writable

Related Tags for PHP is_writable Function with example:


Ask Questions?

If you are facing any programming issue, such as compilation errors or not able to find the code you are looking for.

Ask your questions, our development team will try to give answers to your questions.