本文實例講述了thinkPHP模板算術(shù)運算相關(guān)函數(shù)用法。分享給大家供大家參考,具體如下:
函數(shù)定義如下:
function you($num1,num2){
echo $num1*$num2/100;
}
<volist name="list" id="vo">
<tr>
<td>{$vo.price|you=$vo.discount'}</td>或者:{$vo.price*$vo.discount/100}
</tr>
</volist>
如上寫接收的參數(shù)是Array.discount.需要的運算沒有正確結(jié)果。
修改了一下代碼:
<td>{$vo.price|you=$vo['discount']}</td>
<td>{$vo['price']*$vo['discount']/100}</td>
以上兩種方式都可以,由此可以看出,thinkphp模板不支持object模式的算術(shù)運算和參數(shù)傳遞。
希望本文所述對大家基于ThinkPHP框架的PHP程序設(shè)計有所幫助。