我有一个从 1 到 10 的循环并在
$entity_object->field_question_1
通过 10 所以...
$entity_object->field_question_1
, $entity_object->field_question_2
, 等
我想在这个循环中打印这个,我怎样才能得到变量?我试着做
$var = "entity_object->field_question_".$i;
print $$var;
但这没有用......
我怎样才能得到这些值?