need help understanding the declaration of class properties
i was following an ACL tut. which has used this piece of code.
class ACL
{
var $perms = array();
var $userID = 0;
var $userRoles = array();
function __constructor($userID = '')
{
}
}
however i am unable to understand some of the above declarations.
a) the class property is declared starting with var keyword in the above class, in data encapsulation is it not necessary we use public,private, or protected keywords before the declaration of the property.? is the above method meant for PHP4 ? or will it work for php5 too?
b) my IDE(Panic Coda). takes __construct as the correct syntax for constructor. the above code has used __constructor . which one is correct ? to my knowledge in PHP4 the constructor name should be the same as class name if that is the case then is __construct and __constructor one and the same in PHP5?
thank you
a) The var
keyword is indeed probably meant for PHP 4 compatibility. var
is equivalent with PHP 5's public
. It will work in PHP 5 as well, but seeing as PHP 4's time has passed, it is safe to move on to public
, private
, and protected
.
b) __construct
, or the name of the class for a PHP 4 compatible declaration, is the only correct way. __constructor()
will not declare a constructor method.
In PHP4 all members and methods are static and public. var
is definitely PHP4 syntax. In PHP5 you should use public
, private
and protected
.
__construct() is correct method name for constructor. Since PHP 5.3 method that has the same name as the class is no longer treated as a constructor - it's just a regular method.
You should definitely find an up to date tutorial.
This example class has mix of PHP4 and PHP5.
private
, public
or protected
. private
, public
or protected
. Since you're a learner, please do adhere to PHP's naming convention, name the script file containing classes using class name. And don't use more than one class inside the same script file. All PHP files must be ended up with the extension .php
to ensure security.
Further you can have static methods inside classes (don't mix static and dynamic methods inside the same class), and they can be invoked without creating objects such as Http::DoPost(...)
. But then $this
cannot be used inside static methods.
上一篇: 检测受保护的方法并避免致命错误
下一篇: 需要帮助理解类属性的声明