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.
コマンドラインsystemを使用せずに出力をファイルに書き込みたい。>filename同じ形式の出力を使用します。
system
>filename
system("ping -n 4 $host",$result);
代わりにexecを使用してください。出力を格納する配列を指定できます。その後、fopenなどを使用してその配列をファイルに書き込むことができます。