从file.php中回显/打印变量

时间:2014-03-02 16:54:32

标签: php html html5

我在php(sum.php)中有一个包含此代码的文件:

<?php

// Get json from url
$json = file_get_contents("file.json");
// Decode json into an array
//$json = json_decode($content, true);
$data =  json_decode($json, TRUE);

// Set default
global $total;

// Loop through the array created when decoding json
foreach ($data as $key) 
{
    // remove symbol from the end leaving only digits
    $value = substr(utf8_decode($key['initialContractualPrice']), 0, -1);
    // remove the decimal point
    $value = str_replace('.', '', $value);
    // replace the comma with a decimal point
    $value = str_replace(',', '.', $value);
    // add this number to the total value
    $total += $value;
}

//echo $total;

?>

和php中的其他文件有一个buttom我需要做sum.php的动作并显示结果($total)而不重定向sum.php。

我该怎么做?

请帮帮我:D

1 个答案:

答案 0 :(得分:1)

您可以在其他PHP文件中include文件sum.php,在隐藏的$total中打印div的值,然后使用Javascript取消隐藏{{1}单击一个按钮。该计划的一个非常基本的实施将是这样的:

div