2
我有一個非常簡單的WordPress while循環:PHP while循環
$loop = new WP_Query(args));
while ($loop->have_posts()) : $loop->the_post();
$data = grab_something(args);
echo $data;
echo "<br/";
endwhile;
這給了我這樣的:
datastring1
datastring2
anotherdata
somethingelse
and else
and so forth
(...)
我想從while循環這些設置保存爲一個數組或變量,例如。
$data1 = "datastring1";
$data2 = "datastring2";
$data3 = "anotherdata";
(...)
如何? :)
謝謝!
也許還會提及賦予動態變量名稱的能力,這個名稱本質上是OP之後的,而不是數組(不是它更有效),用'$ {$ name}`...... – 2011-04-15 15:32:43
這不是工作,當我在while循環之外做var_dump($ array)時,它只給出我最後一個$ data字符串... – Wordpressor 2011-04-15 15:39:09