警告:标题可能不包含多个标题,在第16行的********************。php中检测到新行

时间:2018-05-09 11:34:01

标签: php

出了什么问题?!第16行是:标题('位置:'。$ get_link。'');

<?php

require_once("../libs/proxy.php");
require_once("../libs/config.php");
require_once("../libs/ip.php");

$rnd = intval(rand(1000,9999)); //generate random number
$lnk_lnk = "../$db_name/lnk/$userip.xxx"; //link path
$api_url = "http://btc.ms/?api=$btcms_api&url=$site_url/links/verifier.php? 
id=$rnd&format=text";
$get_link = file_get_contents($api_url);
if (!empty($get_link)) {
    $m_lnk = fopen($lnk_lnk, "w"); //open link file
    fwrite($m_lnk, $rnd); //store random value
    fclose($m_lnk);

    header('Location: '.$get_link.''); //here is line 16!
} else {
    header("Location: ../index.php?lnkmsg=Unknown Error.");
}

?>

感谢您的帮助! 。 。 。 。 。 。 。 。 。 。

1 个答案:

答案 0 :(得分:1)

也许您的网址包含多行。您可以使用函数urlencode()来更正此错误。

试试这个,

header('Location: '.urlencode($get_link)); //here is line 16!