All pastes #2126072 Raw Edit

Stuff

public text v1 · immutable
#2126072 ·published 2012-03-08 08:00 UTC
rendered paste body
<?php 
$file ='test.txt';
$fp = fopen($file,'w'); 

if(!$fp) 
{ 
    echo 'Could not create a file pointer.'; 
    exit; 
}
else 
{ 
    if(!is_writable($file)) 
    { 
        echo 'Can not write to file [' . $file . ']'; 
        exit; 
    } 
	else
	{
		echo 'Can write to file [' . $file . ']'; 
        exit;
	}

    $close = fclose ($fp); 
} 
?>