如何使用 - >用PHP

时间:2010-08-06 14:36:05

标签: php

  

可能重复:
  What does this php construct mean: $html->redirect(“URL”)?

嗨,我一直在寻找这个运营商“ - >”是的,但我似乎无法找到它的参考,只有人们来使用它,我无法弄清楚它在做什么,一个解释将不胜感激。

4 个答案:

答案 0 :(得分:3)

->与对象方法/属性一起使用,例如:

class foo{
  function bar(){
    echo 'Hello World';
  }
}

$obj = new foo;
$obj->bar(); // Hello World

更多信息:

答案 1 :(得分:2)

答案 2 :(得分:2)

- >操作员访问属性和对象的方法。

可能你应该阅读PHP OOP介绍:http://php.net/manual/en/language.oop5.php

答案 3 :(得分:1)

扩展sarfraz的答案,演示如何访问属性:

class foo{
  public $value = "test"; 
  function bar(){
     //// code
  }
}

$obj = new foo;
$obj->bar();
echo $obj->value;     //displays "test"