php输出在firefox和komodo IDE中有所不同

时间:2014-11-23 08:54:09

标签: php firefox komodo

我安装了komodo IDE 8.5来编写和测试php代码。我试图测试的第一个程序是:

<?php   // test_1.php
     $username = "fred Smith";
     echo $username;
     echo "<br>";
     $current_user = $username;
     echo $current_user;

?>

当我在Firefox中运行该程序时,它可以正常工作,并在2个单独行中打印fred smith 2次。但是当我在komodo上运行时,输出是

fred Smith<br>fred Smith

什么错误的白名单程序或IDE?

0 个答案:

没有答案