Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR PHP

scirvere su file php

<?php
$filename = 'file.txt';
$handler = fopen($filename, 'r+');

if (false === $handler) {
    printf('Impossibile aprire il file %s', $filename);
    exit;
}

fclose($handler);Copy
Source by guidaphp.it #
 
PREVIOUS NEXT
Tagged: #scirvere #su #file #php
ADD COMMENT
Topic
Name
1+1 =