如何在由php中的斜杠分隔的锚中回显正确的2个变量

时间:2016-04-29 19:53:27

标签: php anchor

我有这个变量: $dir = 'uploads/sfm/'.$UserID;

$file代表一个文件(如image.jpg)

回调锚点的正确方法是什么,其中这两个变量由/?

分隔

以下是我现在的工作方式,它确实工作正常,但我认为这不是正确的方法:

echo "<a href='$dir/$file' target='_blank'></a>";

2 个答案:

答案 0 :(得分:0)

我会这样做的:

echo "<a href='" . $dir . "/" . $file . "' target='_blank'></a>";

答案 1 :(得分:0)

试试这个

echo '<a href="' . $dir.'/' . $file.'" target="_blank"></a>';

或者

<a target="_blank" href="<?php echo $dir .'/'. $file; ?>"></a>