Código PHP:
class CPrueba
{
public function hola($value) {
return 'hola' . $value;
}
}
echo CPrueba::hola('1');
| ||||
Re: Alcance del operador de resolución (::) Cito el manual de PHP: Cita: Es decir si tu estas corriendo PHP y habilitas los errores E_STRICT te lanzará un Warning.Calling non-static methods statically generates an E_STRICT level warning. Saludos. |