2012-05-20 69 views
0

我有一個問題,首先,我有一個變量$ num_newlines改變了文件的行數。然後我想要做的就是將一條線複製到小於$ num_newlines等於的線。該生產線是:複製PHP行

$tweetcpitems->post('statuses/update', array('status' => wordFilter("The item $array[1] has been released on Club Penguin."))); 

我想下一步要做的是,對每個重複行我想要的序列號來改變,例如:

$tweetcpitems->post('statuses/update', array('status' => wordFilter("The item *$array[1]* has been released on Club Penguin."))); 

然後第二行是這樣的:

$tweetcpitems->post('statuses/update', array('status' => wordFilter("The item *$array[2]* has been released on Club Penguin."))); 

然後第三行有$ array [3]等等。主要的問題是我不想手動添加代碼行並更改數字,因爲變量$ num_newlines總是在變化。任何幫助將高度讚賞,因爲我一直在研究如何做到這一點,但什麼也沒有找到。

回答

4
for ($i=0; $i<($numlines - 1); $i++) { 
    $tweetcpitems->post('statuses/update', array('status' => wordFilter("The item $array[$i] has been released on Club Penguin."))); 
} 
2

使用一個for循環

for($i=1,$i<=$lines,$i++) 
{ 
// ............'status' => wordFilter("The item $array[$i] has been released on Club Penguin."))); 
}