这里的职能简单。
function hello($name) {
$message = Hello .$name. How are you feeling today? ;
return $message;
}
And as you know, when I execute this function it returns a message.
<?php
echo hello(Stackoverflow);
?>
产出:
Hello Stackoverflow How are you feeling today?
如果不使用回馈(至少在这里)来显示这一信息,是否有办法。
like <?php hello(Stackoverflow); ?>
and it should return the message.