定义包含变量的路径(php)

时间:2016-04-05 04:03:54

标签: php variables constants

我正在制作图片幻灯片

$article = "This is the title of the slide show images";

现在想要定义路径

// set the absolute path to the directory containing the images
define ("IMGDIR", "./pathsubdir/$article/");

并尝试了

define ('IMGDIR', '/articles/" . $article . "/');

不起作用(均在上面)

define ('IMGDIR', '/articles/"This is the title of the slide show images"/');

那可行^

但我怎么能把它变成一个变量才能起作用呢?因为$ article是一个动态值

提前致谢

1 个答案:

答案 0 :(得分:0)

define ('IMGDIR', '/articles/' . $article . '/');

如果您需要文章

中的双引号
define ('IMGDIR', '/articles/"' . $article . '"/');

希望它有所帮助:)