PHP Classes

File: ejemplo.php

Recommend this page to a friend!
  Classes of XYOX   FicheroV2   ejemplo.php   Download  
File: ejemplo.php
Role: Example script
Content type: text/plain
Description: demo
Class: FicheroV2
Read and search local or remote files
Author: By
Last change:
Date: 16 years ago
Size: 160 bytes
 

Contents

Class file image Download
<?php
   
require "ficheroV2.class.php";
   
$fp = new Fichero("hi.txt");
   
$fp->Escribir("Hello word, Hola mundo!");
    echo
$fp->Gets_Cont();
   
$fp->Cierra();
?>