(27-02-2011, 03:30 PM)niahoo a écrit : quand il y a une partie doublée tu en fais une fonction, c'est la base.
:pleure2:
<?php
if($_POST['u']!=''){
$f='scr/'.stripslashes($_POST['u']);
if (file_exists($f)){
if(file_get_contents($f)>$_POST['d']){
file_put_contents($f,$_POST['d']);
w($f);
}
}else{
w($f);
}
}
echo file_get_contents('t');
function w($f){
$dm='scr';
$c=array();
foreach(array_diff(scandir($dm),array('.','..')) as $f){
array_push($c,file_get_contents("{$dm}/{$f}").' '.$f);
}
file_put_contents('t','["'.implode('","', $c).'"]');
}
?>
Comme ça ?