- 01
- 02
- 03
- 04
- 05
- 06
- 07
- 08
- 09
- 10
- 11
- 12
- 13
- 14
- 15
- 16
- 17
- 18
- 19
- 20
- 21
- 22
- 23
- 24
- 25
- 26
- 27
- 28
- 29
- 30
- 31
- 32
- 33
- 34
- 35
- 36
- 37
- 38
- 39
- 40
- 41
- 42
- 43
- 44
- 45
- 46
- 47
class happy
{
public $today = 0;
public $text = null;
public function __construct($text)
{
if (!$text){
exit('ничего не пришло!:(');
}
if ($text)
{
$this->text = $text;
}
}
public function today()
{
$date = date('z');
$this->today = $date;
return $this->today;
}
public function echotext()
{
if (!$this->text)
{
echo 'нет текста!';
}
if ($this->text)
{
echo $this->text;
}
}
}
if (date('z') == 256)
{
$obj = new happy('С днём программиста!');
if ($obj->today == 0)
{
$obj->today();
}
if ($obj->today == 256)
{
$obj->echotext();
}
}
tirinox 12.09.2012 14:07 # +4
virtual_cia 12.09.2012 15:57 # +4
Наверное секретарша пыталась поздравить 'С днём программиста!'
3.14159265 12.09.2012 16:12 # +6
Писать 265, имея в языке сдвиги - моветон.
Lure Of Chaos 12.09.2012 17:30 # +2
volhv 13.09.2012 10:18 # +1
Vasiliy 13.09.2012 10:46 # +1
Steve_Brown 13.09.2012 10:51 # +1
Vasiliy 13.09.2012 11:39 # +1
Lure Of Chaos 12.09.2012 17:34 # +4
Vasiliy 13.09.2012 11:43 # 0
и if (date('z') == 256) это зачем ?