我多次见过这个符号->
这是什么?似乎是一个逻辑运算符或其他东西
完整示例:
get_categories->category_count
答案 0 :(得分:0)
它被称为object operator
。
例如:
$myObject = new stdClass();
$myObject->Hello = "world";
echo $myObject->Hello; //Returns world
您还可以使用此运算符从类中调用属性或方法。例如:
Class MyClass {
public function hello(){
return "world";
}
}
echo (new MyClass())->hello(); //Returns world
答案 1 :(得分:0)
它被称为PHP对象操作符(T_OBJECT_OPERATOR)。
示例:
$car = new Car();
$car->color = 'Red';
echo $car->color; // returns the color of the car.