无法在函数中附加字符串

问题描述 投票:0回答:1

我用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
php append
1个回答
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);
© www.soinside.com 2019 - 2024. All rights reserved.