我的函数应该接受两个参数:$message
,它只是一个单词字符串,以及$color
,它是一个带有颜色名称的字符串。
我想这样做,以便将变量中的颜色$color
添加到$message
,返回的最终结果将是span
颜色应用于消息的样式。我一直在网上寻找解决方案,但没有运气。这是到目前为止的代码。我错过了什么?
function speak($message,$color) {
//supposed to convert $message into <span style='color:$color;'>$message</span>
return "$message$color";
};
//red as the span style color
$red="red";
//message that will accept span style
$mess="Hello World";
//invoke function speak to style them both
$total=speak($mess,$red);
//output total
echo $total;