代碼:加入功能在PHP不工作
$file=file(example);
$arr[]=$file[0];
$arr[] .="interactions. Sage Publications.";
echo count($arr); //outputs 2
echo $arr[0]; //outputs Multiple Regression: Testing and Interpreting
echo $arr[1]; //outputs interactions. Sage Publications
$str=join(" ",$arr);
//outputs
Multiple Regression: Testing and Interpreting
interactions. Sage Publications
問題:雖然我使用join函數兩個數組不能輸出連接。我得到兩行輸出。我想要一條線。
替代代碼:
$arrp =array("Multiple Regression: Testing and Interpreting","interactions. Sage Publications.");
$str= join(" ",$arrp);
echo $str; //outputs Multiple Regression: Testing and Interpreting interactions. Sage Publications
如果我直接解析陣列值放入變量我得到所需的輸出(ieoutput在單行)。什麼是錯在我以前的code.Are兩代碼不一樣?
在此先感謝。
謝謝你的解釋和答案。它工作正常。 – vidhya