PHP - Funzione Worker :: stack ()
Worker :: stack - Stacking
Sintassi
public int Worker::stack( Stackable $work )
La funzione Worker :: stack () può aggiungere un Stackable referenziato allo stack di un Worker referenziato.
La funzione Worker :: stack () può restituire una nuova lunghezza di uno stack.
Esempio
<?php
class Work extends Stackable {
public function run(){
/** ... **/
}
}
class My extends Worker {
public function run(){
/** ... **/
}
}
$my = new My();
var_dump($my->stack(new Work()));
?>