我有一個PHP腳本(news-generator.php),當我包含它時,它抓住一堆新聞並打印它們。現在,我爲我的網站(CGI)使用Python。當我在使用PHP,我用這樣的「新聞」頁面上:如何在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
「爲簡單起見,我簡化了示例。」 - 你會簡化它什麼? ;) – 2009-06-29 20:46:55
@musicfreak:咯咯?效率?美女? – 2009-06-29 20:59:24
我曾與「簡化示例」以掩蓋其無能的人一起工作。我希望在這裏不是這樣。 – 2009-06-29 23:19:18