Back to top

Autore Topic: ottimizzazione get classi  (Letto 1206 volte)

Offline v1nc3nz0

  • Esploratore
  • **
  • Post: 65
    • Mostra profilo
ottimizzazione get classi
« il: 12 Set 2007, 19:09:09 »
Ho ottimizzato il get delle classi
Da codice:

public function get( $_property ) {
   if(isset( $this->$_property )) {
      return $this->$_property;
   } else {
      return null;
   }
}


A codice:

public function get($_property) {
   return isset($this->$_property) ? $this->$_property : null;
}


Che ne pensate?

 



Web Design Bolzano Kreatif