Bueno si tienes razón, jeje, pero sigue sin funcionar mira:
Código PHP:
Ver originalclass clase_plazo_borrado_perfil
{
function __construct($fecha_registro, $dias_transcurridos)
{
$this->fecha_registro = $fecha_registro;
$this->dias_transcurridos = $dias_transcurridos;
}
function dias_transcurridos()
{
$fecha_registro = date_create($this->fecha_registro);//fecha registro el cliente $diferencia = date_diff($this->fecha_registro, $fecha_actual);//diferencia entre fecha registro y la actual
return $diferencia->format('%a');
}
}
Me dice:
Warning: Missing argument 1 for clase_plazo_borrado_perfil::__construct(),
Notice: Undefined variable: fecha_registro
Warning: date_diff() expects parameter 1 to be DateTimeInterface, null given in
Fatal error: Call to a member function format() on boolean in