smarty convert string to number

37.3k Views Asked by At

I need to do deviding:

{math equation="x/y" x=$x y=$y} // $x = '2', $y = '3'

How to convert strings to numbers exactly in Smarty, coz I don't have access to proprietary code of CMS? Thanx!

UPD: Smarty version: 2.6.18

3

There are 3 best solutions below

1
On

If it's already assigned to a variable, say $var, you can set the type of a variable like this:

{$converted = settype ($var, 'integer')}

You don't have to use the $converted value, but if you don't assign it, the bool will show up in your page.

or you could try

{$variable|intval}
0
On

You can try this {$variable|intval}

and also ((int)$variable)

For Instance:

$x_new = (int) $x;
$y_new = (int) $y;

In your case:

{math equation="x/y" x=(int)$x y=(int)$y}
0
On

It works without modifications in:

PHP:

$x = '2' ;
$y = '3' ;

$smarty->assign('x',$x);
$smarty->assign('y',$y);

$smarty->display('index.tpl');

Smarty:

{math equation="x/y" x=$x y=$y}

Displayed result is: 0.66666666666667

It was tested in the last available Smarty version 2.6.28

So you should consider trying upgrading to the newest Smarty (of course you have to backup everything in case it will cause any problems) because there were many bugs in older versions.

You also in your question haven't written what results shows you smarty and what are variables x and y values displayed in Smarty/