PHP变量在echo上返回

时间:2013-05-05 23:17:20

标签: php

我正在使用此声明,但出于某种原因,当我的变量为0而不是获得输出“See Description”时 - 我得到输出“0见描述”。

为什么会这样?

$sinput = get_field('fl_area');
$soutput = sqFeetToMeters($sinput); 
if(trim($sinput) == "0"){echo ' See Description ' ;} else {echo $soutput . ' sq. m (' . number_format($sinput ) . ' sq. f)' ;} 

1 个答案:

答案 0 :(得分:0)

为了测试你的其他功能没有回应任何东西,请在

之前回声
if(trim...

语句。如果您的回复现在是

0 [your echo output] See Description

你会知道这是什么问题。