-6

这是我的代码

 <?php
    $addition = print $stats->getLastMonthGirl($userid); + print $stats->getLastMonthMale($userid);
    echo "Total:".$addition.""; 
 ?>

不工作。

4

3 回答 3

0

实际上你在做一些很奇怪的事情,对你来说最好学习一些 PHP 语言的编程概念和语法。

据我了解您的想法,正确的代码将是

<?php
$addition = $stats->getLastMonthGirl($userid) + stats->getLastMonthMale($userid);
echo "Total:".$addition.""; 
?>
于 2013-05-28T11:16:08.437 回答
0
$addition = $stats->getLastMonthGirl($userid) + $stats->getLastMonthMale($userid);
于 2013-05-28T11:16:30.320 回答
0

删除print语句:

$addition = $stats->getLastMonthGirl($userid) + $stats->getLastMonthMale($userid); 

echo "Total:".$addition.""; 

在 PHP 中,函数调用返回一个不需要打印即可使用的值。

此外,如果不删除分号,您无法将分号分隔的语句组合在一起。

于 2013-05-28T11:16:48.073 回答