$this-Stack: Mal wieder Brett vorm Kopf

Einklappen
X
 
  • Filter
  • Zeit
  • Anzeigen
Alles löschen
neue Beiträge

  • $this-Stack: Mal wieder Brett vorm Kopf

    Hi!

    Ich habe folgendes Problem:
    PHP-Code:
           ....

        
    /**
        * @var    array
        * @access protected
        * @author <xxxxxxxxx@xxxxxxxx.com>
        */
        
    var $_timecase = array(); 

        
    /**
        * Adds the time beginning running the testcase in microseconds.
        * 
        * @access public
        * @author <xxxxxxxxx@xxxxxxxx.com>
        */
        
    function addStartTime() {
            
    $this->_timecase[] = microtime();
        }
        
        
    /**
        * Remove starttime and push the deltatime running of testcase in microseconds.
        * 
        * @access public
        * @author <xxxxxxxxx@xxxxxxxx.com>
        */
        
    function builtDeltaTime(){
            
    $starttime array_pop($this->_timecase[]);
            
    array_push($this->_timecase[],(microtime()-$starttime));
        }
                   
                    ...... 
    Jetzt bekomme ich:

    Warning: The argument needs to be an array on line 93
    Warning: First argument to array_push() needs to be an array on line 94

    Wieso nimmt er die Array-Deklaration der Klassen nicht?

    cu

    El´Blindo
    Yuppi, endlich Elite ...

  • #2
    $this->_timecase is dein array, $this->_timecase[] das aktuelle element.
    also: [ ] weg bei array_push - u. _pop
    eval(str_pad(aa|db,4,slarti^~äü_i_)." \"áú¾ïùû䶳Ðäýï©üèíþç£þé\"^~\"no bugs, only features\";");

    Kommentar


    • #3
      Hatte ich doch probiert ... ... Aua!

      Shoot me! => Blaster <= Shoot me!

      Trotzdem Super!
      Vielen, vielen Dank!

      Ich gehe ins Exil ...

      bye!

      Blaster
      Yuppi, endlich Elite ...

      Kommentar


      • #4
        ...mit nem brett vor'm kopf sieht man sowas auch nicht
        ich mach mir bei sowas immer erstmal ne kippe an und stöbere nen bissle im forum...
        eval(str_pad(aa|db,4,slarti^~äü_i_)." \"áú¾ïùû䶳Ðäýï©üèíþç£þé\"^~\"no bugs, only features\";");

        Kommentar


        • #5
          Wäre jemand so nett, den ganzen code vollständig einmal zu posten, weil ich überhaupt nicht klar komme.


          Danke im Voraus.

          Kommentar

          Lädt...
          X