我在一个while循环中动态创建了一些变量名:
while($count < $agendaItemsCount) {
$tr_mcs_agendaitem_[$count]_1 = get_post_meta( $post->ID, '_tr_mcs_agendaitem_' . $count . '_1', true );
++ $count
}
但此代码会导致意外的字符串解析错误。如何编写这段代码,以便使用count变量output和var名称的其余部分声明新的var?
发布于 2012-02-20 14:23:42
所以你想创建像$tr_mcs_agendaitem_1_1
,$tr_mcs_agendaitem_2_1
等这样的变量?虽然我建议使用数组,但您可以执行以下操作:
$collection = array();
while($count < $agendaItemsCount) {
$collection['tr_mcs_agendaitem_'.$count.'_1'] =
get_post_meta( $post->ID, '_tr_mcs_agendaitem_' . $count . '_1', true );
++ $count;
}
extract($collection);
另一种解决方案是使用"variable variables":
while($count < $agendaItemsCount) {
$varname = 'tr_mcs_agendaitem_'.$count.'_1';
$$varname = get_post_meta( $post->ID, '_tr_mcs_agendaitem_' . $count . '_1', true );
++ $count;
}
https://stackoverflow.com/questions/9362354
复制