我在php中有一些代码,我想在我的Android应用程序中编写该代码。 php代码如下。
<?php
$amount = urlencode($amount);
$from_Currency = urlencode($from_Currency);
$to_Currency = urlencode($to_Currency);
$get = file_get_contents("https://www.google.com/finance/converter?a=$amount&from=$from_Currency&to=$to_Currency");
$get = explode("<span class=bld>",$get);
$get = explode("</span>",$get[1]);
echo $converted_amount = preg_replace("/[^0-9\.]/", null, $get[0]);
?>
我希望字符串中$converted_amount
的值。我不知道该怎么做。如果我可以告诉我该怎么办。
答案 0 :(得分:0)
不,你不能写。但如果你非常喜欢php,请创建一个 php脚本来编写上面的代码和某种 HTML 页面,以便在 webview <中显示和加载/ strong>即可。
我没有使用java或android,但你必须在self.view
中拥有与urlencode
,file_get_contents
和explode
等效的内容。