|
php.net | support | documentation | report a bug | advanced search | search howto | statistics | random bug | login |
PatchesPull RequestsHistoryAllCommentsChangesGit/SVN commits
[2004-06-10 09:03 UTC] derick@php.net
[2010-05-17 02:49 UTC] markus at malkusch dot de
|
|||||||||||||||||||||||||||||||||||||
Copyright © 2001-2025 The PHP GroupAll rights reserved. |
Last updated: Wed Dec 03 09:00:01 2025 UTC |
Description: ------------ i need to execute a static block of code only one time per class this is a OOP improvement to php i wish this class foo{ $var=123; function __static(){ $this->var+=40; } } like static { } java statement :P thanks..