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(); を使用してアプリケーションを呼び出すかどうかお尋ねしたいと思います。PHP5では、そのアプリケーションの結果をphpに直接取得することは可能ですか? ( SomeApp >> file.txt を実行する代わりに、PHPでファイルを読み取ります)。
例: system('lynx page.html'); 「lynx page.html」の結果を変数に入れたいと思います。
ありがとうございました。
最も簡単な方法は、バックティック演算子を使用することです:
$out = `ls -a`;
を使用することもできますがshell_exec("command")、これは同等です。
shell_exec("command")