Use private
to prevent outside code or derived classes from modifying a property:
<?php
class MyClass {
private $number = 0;
public function add1() {
$this->number++;
}
public function getNumber() {
return $this->number;
}
}
$obj = new MyClass();
$obj->add1();
echo "The number is " . $obj->getNumber();
?>
Try it Yourself »
The private
keyword is an access modifier. It marks a property or method as private.
Private properties and methods can only be used by the class in which the property or method was defined. Derived classes and outside code cannot use them.
The protected
keyword
The public
keyword
Learn more about access modifiers in our PHP OOP - Access Modifiers Tutorial.
截取页面反馈部分,让我们更快修复内容!也可以直接跳过填写反馈内容!