Ver Mensaje Individual
  #3 (permalink)  
Antiguo 13/02/2012, 22:19
Avatar de ahaugas
ahaugas
 
Fecha de Ingreso: agosto-2011
Ubicación: Madrid
Mensajes: 249
Antigüedad: 13 años, 3 meses
Puntos: 21
Respuesta: problema con clases y funciones

ok pero como haria una funcion de esto?:

Código PHP:
Ver original
  1. //UserCake check debug mode and maintenance is true or false
  2.     if ($debug_mode === false) {  
  3.         error_reporting(0);
  4.         $myFile = $logfiles_dir."usercake-$today.log";
  5.         $fh = fopen($myFile, "a");
  6.         $configa = "config";  
  7.         $pageuser = takeURL();
  8.         $ipuser = $_SERVER["REMOTE_ADDR"];
  9.         $datelog = date("D M j G:i:s T Y");
  10.         $stringData = "userCake Notice: [ $ipuser ] --> [ Anonymous ] -->  [$datelog] -->  [ $pageuser ] \n";
  11.             fwrite($fh, $stringData);
  12.             fclose($fh);  
  13.         }