|
php.net | support | documentation | report a bug | advanced search | search howto | statistics | random bug | login |
[2001-06-27 17:47 UTC] alavoor at yahoo dot com
I have a good idea. It is extremely easy to implement private, protected variables in classes. PHP can use the name mangling of variables to implement private variables in classes. This technique is used by python language. What you do is - PHP will read the class and simply change the variable names to <variablename>_timestamp. Where timestamp is unique id got by time() function. Classes need private, protected variables. What do you say?? PatchesPull RequestsHistoryAllCommentsChangesGit/SVN commits
|
|||||||||||||||||||||||||||
Copyright © 2001-2025 The PHP GroupAll rights reserved. |
Last updated: Wed Nov 05 15:00:01 2025 UTC |
for example: class { private: var $myvar; var $myvar2: public: var $myvar3; function myfoo() { print "the variable is : " . $myvar } } will be converted "on the fly" by PHP interpreter to class { var $myvar_993679346; var $myvar2_993679346: var $myvar3; function myfoo() { print "the variable is : " . $myvar_993679346; } } Note that 993679346 is the time stamp got by time(). PHP interpreter when it starts up will store this timestamp value in a global var and use it throught to mangle all the private variables declared in all the classes in all the files..