March 14, 2012
variable key name
Question by thelolcat
Can I check for a variable key without using a temporary variable.
$var = 'blabla';
$key = "{$var}_abc";
if(isset($someobject->$key))...
?
with arrays you can do this… $array[“{$var}_abc”]
Answer by salathe
Yes. You can use curly braces containing an expression resulting in a string, where that string is the name of the property you want to check.
$someobject->{"{$var}_abc"}
$someobject->{$var."_abc"}
Answer by Starx
You can do this, using property_exists() method
if(property_exists($object, $var."_abc")) {
// do stuff
}