gpt4 book ai didi

php - Smarty,总值不可能

转载 作者:搜寻专家 更新时间:2023-10-31 21:35:24 25 4
gpt4 key购买 nike

使用 Smarty 变量 [{$ getCnt | var_dump}] 我有以下值:

int (3) int (1) int (1)

但是现在我想要总值。也就是说,在这个例子中:5

PHP:

我怎样才能对变量中的对象进行计数?

我在 PHP 中使用 var_dump ($ getCnt) 得到了它。

对象(选择)#214 (4) {values }对象(选择)#215(4){值 }对象(选择)#216(4){值 }对象(选择)#217(4){值 }对象(选择)#218 (4) {值 }

共有 5 个对象。我如何使用 PHP 找出有多少个对象有一个变量?

提前谢谢!

最佳答案

像这样在 smarty 中使用 {$getCnt|array_sum} 使用 php 函数并获取数组的总数,其中 $getCnt 需要是数组

在这里检查我的代码

<?php
$array=array(3,2,1);
$smarty->assign('test',$array);
$smarty->display('test.tpl');
?>

并在 test.tpl 中

{$test|array_sum}

正在使用 Smarty-3.1.12

关于php - Smarty,总值不可能,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/21308397/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com