假设我有一个如下的php循环:
while($row = mysql_fetch_array($result)){
$phones = $row['phone'];
$text = $row['message'];
$url = 'http://abcwebsite.com/user.php? '&mobileno=' . $phones . '&message=' . $text;
}
这是如何在循环中运行url直到循环完成?
答案 0 :(得分:1)
您可以使用数组收集所有网址:
喜欢:$ urls = array();
可以在循环中使用$ url。
答案 1 :(得分:1)
$i = 0;
$url = array();
while($row = mysql_fetch_array($result)){
$phones = $row['phone'];
$text = $row['message'];
$url[$i] = 'http://abcwebsite.com/user.php? '&mobileno=' . $phones . '&message=' . $text;
$i++;
}
之后,您可以使用包含所有网址的数组$url
。