Ver Mensaje Individual
  #3 (permalink)  
Antiguo 25/08/2012, 20:33
Avatar de GatorV
GatorV
$this->role('moderador');
 
Fecha de Ingreso: mayo-2006
Ubicación: /home/ams/
Mensajes: 38.567
Antigüedad: 17 años, 11 meses
Puntos: 2135
Respuesta: variable tipo null

Exacto y es muy útil para casos como definir una variable antes de usarla, por ejemplo:
Código PHP:
Ver original
  1. <?php
  2. $var = null;
  3. if (other_stuff()) {
  4.       $var = 'yes';
  5. }
  6.  
  7. if ($var) echo $var;