我用PHP写的:
<?php
function glueString($str1, $str2) {
$tempstr = $str1 + $str2;
return $tempstr;
}
$s1 = 'this is a line.';
$s2 = 'this is another line.';
echo $s1.'<br/>'.$s2.'<br/>'.glueString($s1, $s2);
?>
我收到此错误:
警告:第4行的C:\ xampp \ htdocs \ myProject \ test.php中遇到的非数字值
警告:第4行的C:\ xampp \ htdocs \ myProject \ test.php中遇到的非数字值
this is a line.
this is another line.
0
您需要使用。连接字符串。 +用于连接jquery中的字符串。因此,您在这里混合使用jquery和php。
function glueString($str1, $str2) {
$tempstr = $str1.' '.$str2;
return $tempstr;
}
$s1 = 'this is a line.';
$s2 = 'this is another line.';
echo $s1.'<br/>'.$s2.'<br/>'.glueString($s1, $s2);