请检查以下代码。
$imagebaseurl = 'support/content_editor/uploads/$name';
这$imagebaseurl
是一个变量,其中包含指向我的图像文件夹(上传)的链接,并且在该文件夹中,我还有一些以我的用户名命名的其他文件夹。例如:我有一个名叫 john 的用户,所以链接应该看起来像 this-> support/content_editor/uploads/john
。
主要想法是当任何用户登录并浏览他的图片库时,我想带他到他自己的画廊,该画廊基本上是以他的名字命名的。
当他访问画廊时$name
,链接中的值将来自用户的登录名(来自会话)。现在的问题是,您可能已经了解$name
上述链接中的放置位置是错误的,这就是它不起作用的原因。我得到了整个 URL> (support/content_editor/uploads/$name) 而不是 (support/content_editor/uploads/john)
现在你能告诉我如何$name
在这个中使用$imagebaseurl = 'support/content_editor/uploads/$name';