i bir sınıf var
böyle
class im_a_class
{
static function not_empty() {...}
function render() { return array_filter($array,'self::not_empty') };
}
Bu kod php 5.3.0 çalışır ancak sürüm 5.2.8 çalışmaz.
i had to put it out and use it böyle
function not_empty() {...}
class im_a_class
{
function render() { return array_filter($array,'not_empty'); }
}
Bu yolu ancak çalışıyor ...
i seçenekler i var mı bilmek istiyorum.
teşekkürler lütfen yardım.