- 01
- 02
- 03
- 04
- 05
- 06
- 07
- 08
- 09
- 10
- 11
- 12
- 13
- 14
- 15
- 16
class Cache {
var $a = 0;
function set($t) {
$this->a = $this->a+$t;
}
}
class Core {
function a() {
return Cache::set(3);
}
}
$Core = new Core;
echo $Core->a();
cheef 27.08.2010 10:27 # −1
user654321 27.08.2010 10:28 # +1
Uchkuma 27.08.2010 11:19 # +7
Vasiliy 27.08.2010 11:36 # −1
3.14159265 27.08.2010 11:45 # +3
БРАУЗОР
mrbig66 27.08.2010 12:16 # −1
GPU
hdkeeper 27.08.2010 13:03 # 0
Lure Of Chaos 27.08.2010 23:12 # −1