Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
次のような複数行のファイルがあります。
5 2 1 10 20 30
各行を読み取り、値を配列に入れるにはどうすればよいですか?
$array1最初の行の値を含め、2 行目の値を含める必要があります$array2。
$array1
$array2
私はこれを試しましたが、あまり成功しませんでした:
define("STDIN", "php://stdin"); $fr = fopen(STDIN, "r"); fscanf($fr, "%d\n", $array);