tags:

views:

96

answers:

3

New to PHP. Can someone please explain this syntax.

$var1->$var2  //note the second $

Thanks

+2  A: 

$var1 is an object

$var2 is (possibly) the name of a variable inside $var1.

If $var2="test"; this is evaluated to:

$var1->test;

You can do this with all sorts of things:

$test = array();
$name="test";
print_r($$name);// prints array();

$test = new stdClass;
$test->hello = "hi";
$name2="hello";
echo $test->$name2; // echos hi

You can even get really fancy

echo $$name->$name2; // echos hi
Chacha102
A: 

It means dynamically query a property in an object.

class A {
  public $a;
}

// static property access
$ob = new A;
$ob->a = 123;
print_r($ob);

// dynamic property access
$prop = 'a';
$ob->$prop = 345; // effectively $ob->a = 345;
print_r($ob);

so $var1 is an instance of some object, -> means access to a member of that object and $var2 contains the name of a property.

cletus
+5  A: 

You are calling a property on $var1 that is named the same as the value of $var2

For example:

$var2 = "name";

// the following are equivalent
$var1->name;
$var1->$var2;
Kyle Trauberman