我正在尝试回复$theurl
内部的变量$image_all
,但它无效。
$theurl = OF_DIRECTORY;
$image_all = $theurl.$image_path;
这应该很简单,对吧?它只显示$image_path
等于的内容,即使我只是$theurl
也会回显<?php echo $theurl; ?>
。
我错过了什么?
答案 0 :(得分:0)
让我们举一个非常简单的例子:
define(OF_DIRECTORY, 'blabla/test/');
$image_path = 'file.php';
$theurl = OF_DIRECTORY;
$image_all = $theurl.$image_path;
echo $image_all;
顺便提一下!但是,为什么要使用$ theurl呢?为什么不$image_all = OF_DIRECTORY . $image_path;
。您需要向我们提供更多信息或代码,但就您的规格而言,一切都应该是OKAY。