我有一个问题,首先,我有一个变量 $num_newlines 可以更改文件的行数。然后我想要做的是将一行复制到比 $num_newlines 等于少一。该行是:
$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 总是在变化。任何帮助将不胜感激,因为我一直在研究如何做到这一点,但一无所获。