Salut,
Si je fais un débug d'une variable le contenu m'afficher mais un error se produit :
Undefined index: file in C:\wamp1\www\Site\Core\functions.php on line 12
copici mon code de function.php
<?php
function debug($var){
if(Conf::$debug>0){
$debug=debug_backtrace();
echo '<p> </p><p><a href="#" ><strong>'.$debug[0]'file'].' </strong> l .'.$debug[0]'line'].'</a></p>';
echo '<ol >';
foreach ($debug as $k => $v) {
if($k>0){
echo'<li><strong>'.$v'file'].'</strong> l.'.$v'line'].'</li>';
}
}
echo '</ol>';
echo'<pre>';
print_r($var);
echo'</pre>';
}
}
?>
merci en avence