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.
csv を string に変換する最良の方法は何ですか?
1,2,3,4,5 のように file_get_contents() で変数に読み込まれる csv file.txt があり、12345 に変換する必要があります。配列に分解して結合することもできますが、もっと効率的な方法があるかもしれませんやれ ?
1,2,3,4,5から12345だけが必要な場合は、次のようにします。
$string = str_replace(",","", file_get_contents("file.txt"));