如何在PHP Codeigniter 3.1.9中声明全局变量?

时间:2019-01-31 08:04:05

标签: php codeigniter variables global declaration

我写了一个带有全局变量的函数,它在正常运行的php中可以正常工作,但不能在php codeigniter中执行。请检查下面的代码,并帮助我了解如何在Codeigniter 3.1.9中声明全局变量

function getEmi($t)
{
    global $i, $upto, $totalint, $rate, $monthly, $payment_date, $arr, $_SESSION, $tp; 
    $i++;
    $r = $t*$rate; $p = round($monthly-$r); $e = round($t-$p);
    if ($upto <= 0){ return 0; }
    if ($upto == 2){ $_SESSION['tl'] = $e; }
    if ($upto == 1){ $p = $_SESSION['tl']; $e = round($t-$p); $monthly = round($p+$r); }
    $totalint = $totalint + $r; $tp = $tp+$monthly; $upto--;
    echo '<tr><td>'.$i.'</td>'; 
    $arrDate1 = explode('-', $arr[$i-1]);
    echo '<td>'.date("d-M-Y", mktime(0,0,0,$arrDate1[1],$arrDate1[2],$arrDate1[0])).'</td>';
    echo '<td>Rs.'.number_format(round($r)).'</td>';
    echo '<td>Rs.'.number_format($t).'</td>';
    echo '<td>Rs.'.number_format($p).'</td>';
    echo '<td>Rs.'.number_format($monthly).'</td>';
    echo '<td>Rs.'.number_format(round($e)).'</td>'; 
    echo '</tr>';
    return getEmi($e);
}

1 个答案:

答案 0 :(得分:1)

您可以在常量文件中添加全局变量
文件路径:\ application \ config \ constants.php



您可以在配置文件中添加全局变量
文件PATH:\ application \ config \ config.php

define('ThemeColor', 'blue');//key and value

现在ThemeColor是您的全局变量,您可以在整个MVC页面中使用它,无需像在define中所写的那样在变量之前使用它之前就可以写'$'