变量不会在字符串中回显

时间:2011-07-20 00:37:38

标签: php

我正在尝试回复$theurl内部的变量$image_all,但它无效。

$theurl = OF_DIRECTORY;
$image_all =  $theurl.$image_path;

这应该很简单,对吧?它只显示$image_path等于的内容,即使我只是$theurl也会回显<?php echo $theurl; ?>

我错过了什么?

1 个答案:

答案 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。