PHP Classes

File: testFileAccess.php

Recommend this page to a friend!
  Classes of zinsou A.A.E.Moïse   PHP File Access   testFileAccess.php   Download  
File: testFileAccess.php
Role: Example script
Content type: text/plain
Description: example script
Class: PHP File Access
Access and manipulate files
Author: By
Last change:
Date: 6 years ago
Size: 1,468 bytes
 

Contents

Class file image Download
<?php
require 'FileAccess.class.php';
echo
'<pre>';

$x=new FileAccess(__FILE__,'\n');




  
var_dump(
  
// $x->getMimeType(),
   // $x->getMd5(),
   // $x->getSha1(),
   // $x->end(),
   // $x->key(),
   // $x->count(),
  
count($x) ,
  
// $x[1],
   // $x->fstat(),
   // $x->max_chunk_length(),
   // $x->length(),
   // array_map('htmlspecialchars',$x->getArrayCopy()),
   // $x->getMoreOptions(),
   // $x->getMoreinfos(),
   // $x->ftell(),
    // $x->seek(265),
   // $x->current(),
   // $x->prev() ,
   // $x->current() ,
  
$x->ftell()
  
// ,
   // $x->offsetGet(31) ,
   // $x->offsetExists(28),
   // $x->fseek(50),
   // $x->ftell() ,
   // $x->fread(512),
   // $x->reset(),
   // $x->fscanf( "%s",$php),
   // $x->fgets(),
   // htmlspecialchars($php) ,
   // $x->rewind(),
        // htmlspecialchars($x->current()),
    // $x->next(),
    // $x->current(),
    // $x->prev(),
    // $x->current()
  
);
  
// $x->fpassthru() ;
   
   
   
    /*
    $x->rewind();
    while(!$x->eof()){
       
        echo htmlspecialchars($x->current()), "\n"; $x->next();

    }
     echo htmlspecialchars($x->current()), "\n";



 
   

 
    $i=0;
    while($x->seek($i)){
        echo htmlspecialchars($x->current()), "\n";
        $i++;
    }
   


    foreach($x ->Filter_FileAccess() as $k=>$l){
         echo $k.':'.htmlspecialchars($l);
    }
  
    */
   
foreach($x as $k=>$v){
        echo
$k.':'.htmlspecialchars($v).'<br>';
    }
   
    echo
'<pre>';
?>