tami: Array zufällig ausgeben und ausgegeben Werte merken - so?

Beitrag lesen

hi,

  
<?php  
class Colors  
{  
    private $_serFileName = "myColorsShuffled.ser";  
    private $_colors = array("blau", "rot", "grün", "schwarz");  
    private $_colorsShuffled = array();  
    private $_nextColor = "";  
    public function __construct() {  
        if(!file_exists($this->_serFileName)) {  
            $this->_createNewShuffledFile();  
        }  
        $this->_read();  
    }  
    private function _createNewShuffledFile() {  
        $this->_colorsShuffled = $this->_colors;  
        shuffle($this->_colorsShuffled);  
        $this->_write();  
    }  
    private function _write() {  
        file_put_contents($this->_serFileName, serialize($this->_colorsShuffled));  
    }  
    private function _read() {  
        $this->_colorsShuffled = unserialize(file_get_contents($this->_serFileName));  
    }  
    public function getNext() {  
        //~ var_dump($this->_colorsShuffled);  
        if (count($this->_colorsShuffled) === 0) {  
            $this->_createNewShuffledFile();  
        }  
        $actualColor = array_shift($this->_colorsShuffled);  
        $this->_write();  
        return $actualColor;  
    }  
};  
$myColors = new Colors();  
echo $myColors->getNext();  

Sollte "funzen". ggfs. mal das Var_dump() wieder einkommentieren ...;

mfg

tami

0 59

Array zufällig ausgeben und ausgegeben Werte merken

Sinje
  • php
  1. 0
    Siri
    • programmiertechnik
  2. 0
    Melvin Cowznofski
    1. 0
      Tom
      1. 0
        Tom
      2. 0
        Melvin Cowznofski
        1. 0
          Tom
    2. 0

      Glossar: "auskommentieren"

      Der Martin
      • programmiertechnik
      1. 0
        Matthias Apsel
    3. 0
      Matthias Apsel
      1. 0
        Melvin Cowznofski
  3. 0
    Tom
    1. 0
      Sinje
      1. 0
        Tom
  4. 0

    Ticken PHP-Programmierer anders?

    Siri
    1. 0
      Matthias Apsel
      1. 0
        Siri
        1. 0

          PHP tickt anders - wie eigentlich jede Programmiersprache

          dedlfix
          1. 0
            Siri
            1. 0
              dedlfix
    2. 0
      Tom
      1. 0
        Siri
        1. 0
          tami
          1. 0
            Tom
        2. 0
          Tom
          1. 0
            Sinje
            1. 0
              Tom
  5. 0
    Claudius L.
    1. 0
      tami
      1. 0
        Claudius L.
    2. 0
      Tom
      1. 0
        Tom
      2. 0
        Claudius L.
        1. 0
          Tom
          1. 0
            Claudius L.
            1. 0
              Tom
            2. 0
              tami
              1. 0
                tami
                1. 0

                  Wirksames File-Locking geht anders!

                  Tom
                  1. 0
                    tami
                    1. 0
                      Tom
                      1. 0
                        tami
                        1. 0

                          gehst Du eine Test-Wette mit mir ein?

                          Tom
                          • menschelei
                          1. 0
                            tami
                            1. 0

                              Und wer testet jetzt?

                              Tom
                              1. 0
                                tami
                                1. 0
                                  Tom
                                  1. 0
                                    Matthias Apsel
                                    1. 0

                                      neue Artikel anlegen, Namen finden

                                      Tom
                                      • selfhtml-wiki
                                      1. 0
                                        Matthias Apsel
                                        1. 0
                                          Tom
                                          1. 0
                                            Matthias Apsel
                                            1. 0
                                              tami
                                  2. 0

                                    Und wer testet jetzt? -> mit SQL?

                                    Gaby
                                    • datenbank
                                    1. 0
                                      Tom
              2. 0
                Tom
  6. 0

    Array zufällig ausgeben und ausgegeben Werte merken - so?

    tami
    1. 0
      Tom
  7. 1
    Tom