require_once('db_lib.php');
$oDB = new db;
$result = $oDB->select('select * from tweet_urls');
while ($row = mysqli_fetch_row($result)) {
//echo $row['1'].'</br>';
echo get_follow_url($row['1']);
}
function get_follow_url($url) {
$ch = curl_init();
curl_setopt_array($ch, array(
CURLOPT_URL => $url,
CURLOPT_HEADER => false,
CURLOPT_NOBODY => true,
CURLOPT_FOLLOWLOCATION => true,
));
curl_exec($ch);
$follow_url = curl_getinfo($ch, CURLINFO_EFFECTIVE_URL);
curl_close($ch);
return $follow_url;
}
我从twitter中提取推文网址,我想将短网址更改为原始的长网址。 我的代码有什么问题。我在while循环中调用函数get_follow_url($ url)。我想我在调用函数中调用数组get_follow_url($ row ['1'])时会犯一些错误。
答案 0 :(得分:0)
您需要使用不带引号的$ row [1]字段位置。如果有一个名为1的字段,则需要使用mysqli_fetch_assoc()或mysqli_fetch_array()方法