-4

我想连接以下两个变量$path1$path2得到$path,然后$path$filename得到连接$fullpath。任何帮助,将不胜感激。

$path1="images"  
$path2= "\"    

$path = $path1+$path2

$fullpath=$path + $filename 
4

4 回答 4

2
$path1="images"  
$path2= "\\"    

$path = $path1.$path2

$fullpath=$path.$filename

请记住,您必须转义字符\(使用转义字符\)。.最后,使用运算符执行 PHP 中的字符串连接

于 2012-10-29T12:34:07.913 回答
1

您可以在 php 中使用连接运算符 ('.')。

$path1 = "images";  
$path2 = "\";    

$path = $path1.$path2;

$fullpath = $path.$filename; 
于 2012-10-29T12:33:40.720 回答
1

PHP 使用.(dot) 来连接字符串,而不是+,所以试试吧。

手册参考: http: //php.net/manual/en/language.operators.string.php

于 2012-10-29T12:34:33.667 回答
0

您可以使用 dot(.) 在 php 中进行连接,例如

$path = $path1.$path2

$fullpath=$path.$filename 
于 2012-10-29T12:34:20.763 回答