我正在从XML文件($ image)创建变量,我需要创建一个将$ image与'.jpg'组合在一起的新变量。我试过了:
$image = $record->getElementsByTagName( "name_id" );
echo $image.".jpg";
$image = $image->item(0)->nodeValue;
但是这不会将.jpg添加到脚本中的变量中。我需要这样做的原因是XML文件没有jpg文件扩展名,只有图像引用作为一个数字序列。有什么想法吗?
答案 0 :(得分:0)
如果$image
是一个字符串,只需将字符串与.
一起编制。
您可以将此视为一个示例:
<?php
$img = hello;
$imgfinal = $img . ".jpg";
echo $img;
?>
正如预期的那样,输出为hello.jpg
。希望这有帮助。
答案 1 :(得分:0)
您在寻找:
$image = $record->getElementsByTagName( "name_id" );
$image = $image->item(0)->nodeValue;
$image = $image . ".jpg";
现在$ image应该包含文件扩展名为
的文件名