-1
Parse error: syntax error, unexpected T_CONSTANT_ENCAPSED_STRING in C:\xampp\htdocs\system\reporting\download.php on line 136 

第 136 行是$filename=strtoupper($_SESSION["SystemNameStr"])'_LOGINHISTORY_'.date('Ymd').'.CSV';

if ($numlog>=1)
    {
    $filename=strtoupper($_SESSION["SystemNameStr"])'_LOGINHISTORY_'.date('Ymd').'.CSV';
    header("Pragma: public");  // Added to allow IE to download through SSL tunnels.
    header("Cache-Control: private");
    header("Content-Type: text/csv");
    header("Content-Disposition: attachment; filename=$filename ");
4

2 回答 2

2

尝试使用“。” 在 strtoupper 函数之后。

$filename=strtoupper($_SESSION["SystemNameStr"]).'LOGINHISTORY'.date('Ymd').'.CSV';
于 2013-03-28T16:41:33.530 回答
0

$filename=strtoupper($_SESSION["SystemNameStr"])'_LOGINHISTORY_'.date('Ymd').'.CSV';

您并没有像您认为的那样连接...使用:

$filename=strtoupper($_SESSION["SystemNameStr"]).'_LOGINHISTORY_'.date('Ymd').'.CSV';

于 2013-03-28T16:44:30.767 回答