目前只是学习PHP和Codeigniter而且我一直处于琐碎的状态。我创建了一个帮助器来计算两个数字的百分比:
# Below is the Helper
function percentage($num1 = NULL, $num2 = NULL)
{
$res = $num1/$num2*100;
return $res;
}
现在我使用以下代码调用控制器中的辅助函数:
public function tester()
{
$this->load->helper('sums_helper');
$num1 = 36;
$num2 = 137;
percentage($num1, $num2);
// Need to print the result here.
// Tried: $percentage->$res;
}
我调用该函数并传递两个必需的变量但是无法打印结果。任何建议都会非常感激。
提前谢谢!!尼尔
答案 0 :(得分:1)
您需要将函数返回值赋给变量:
$result = percentage($num1, $num2);
所以你可以打印出来:
print_r($result);