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.
我有这个请求http://en.wikipedia.org/w/index.php?action=raw&title=Greece 并且我试图从中获取一些信息:语言、货币、long/lat 等。有没有简单的用php获取这些数据的方法?
你可以用 PHP 解析文件,但我找到了一个可以做到这一点的项目。
PHP-维基百科-语法分析器
有一些例子。
编辑:
对于 URL,打开 URL
$wikiString = file_get_contents('http://url.de');
然后你就有了结果,你可以使用它。