我可以在android中编写php代码吗?

时间:2015-08-11 13:01:01

标签: java php android html

我在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的值。我不知道该怎么做。如果我可以告诉我该怎么办。

1 个答案:

答案 0 :(得分:0)

不,你不能写。但如果你非常喜欢php,请创建一个 php脚本来编写上面的代码和某种 HTML 页面,以便在 webview <中显示和加载/ strong>即可。

我没有使用java或android,但你必须在self.view中拥有与urlencodefile_get_contentsexplode等效的内容。