пример (+/-)
<?php
class Text {
public function MultiColor(){
static $a = null;
$a ++;
return $a;
}
}
echo Text::MultiColor();<?php
class Text {
public function MultiColor(){
static $a = null;
$a ++;
return $a;
}
}
echo Text::MultiColor();