我正在制作图片幻灯片
$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是一个动态值
提前致谢
答案 0 :(得分:0)
试
define ('IMGDIR', '/articles/' . $article . '/');
如果您需要文章
中的双引号define ('IMGDIR', '/articles/"' . $article . '"/');
希望它有所帮助:)