Işlevi PHP son kez denir olmadığını kontrol nasıl

0 Cevap php

Ben bir işlev son kez çağrıldığında olup olmadığını kontrol etmek ister. Aşağıdaki örnek kodu düşünün,

function foo(){
    if( this is the last call ) {
         echo 'this is the last call of this function';
    }
}

foo(); // should not print
foo(); // should not print
foo(); // since this is the last call, it should print

Benim proje, i işlev içinde mevcut olması koşulu deyimi gerekir.

Ben sabitler / global değişkenler / sayaçları kullanarak bir fikrim yoktu ama fonksiyonunun son çağrı algılamak için fikirler implement.Any nasıl yok yok?

0 Cevap