<?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>';
?>
|