という名前のテキスト ファイルがありますSe7enPlug.dspl
。このファイルには、次のようにフォーマットされた 1 行のテキストしかありません。
text1,text2,text3
このファイルを読み取って、次のようなものを返す必要があります。
public function rconGetNextMap() {
$myFile = "E:\mw3-server\admin\Se7enPlug.dspl";
$fh = fopen($myFile, 'r');
$theData = fread($text1,$text2,$text3);
fclose($fh);
echo $theData;
if ($theData) {
$next = array("map" => $text1, "gametype" => $text2, 0=>$text1, 1=>$text2);
}
elseif (!$theData)) {
$next = array("map" => "Unknown", "gametype" => "Unknown", 0=>"Unknown",1=>"Unknown");
}
return $next;
}
ご覧のとおり、多くの問題があります。どうすれば修正できますか?