私は PHP スクリプト (news-generator.php) を持っています。これを含めると、一連のニュース項目を取得して出力します。現在、Web サイト (CGI) に Python を使用しています。PHPを使っていたとき、「ニュース」ページで次のようなものを使用しました。
<?php
print("<h1>News and Updates</h1>");
include("news-generator.php");
print("</body>");
?>
(簡単にするために例を省略しました。)
Python にスクリプト (news-generator.php) を実行させ、クロスプラットフォームで動作する出力を返す方法はありますか? そうすれば、私はこれを行うことができます:
page_html = "<h1>News and Updates</h1>"
news_script_output = php("news-generator.php") //should return a string
print page_html + news_script_output