Advertisement
Guest User

Untitled

a guest
Jun 26th, 2017
62
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.47 KB | None | 0 0
  1. $list = new autoList;
  2.  
  3. // Liste 1
  4. $list->factory('das entspricht dem construct');
  5. $list->addOption('irgendwas');
  6. $list->addOption('irgendwas');
  7.    // jetzt hab ich alle optionen, liste generieren
  8.   $list->display();
  9.  
  10. // jetzt hast du einmal den arbeitsspeicher belegt und jetzt fängst du an ihn zu ÜBERSCHREIBEN anstatt ihn weiter zu belegen
  11. $list->factory('ein weiteres statement');
  12. $list->addOption('eine option');
  13.    // liste wieder generieren
  14.    $list->display()
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement