php 如何从Pimcore设置中获取当前网站的URL?

yiytaume  于 2023-03-16  发布在  PHP
关注(0)|答案(1)|浏览(113)

我们需要在Pimcore的CSV导出中生成缩略图的链接。从哪里可以正确地获得域和协议?

bnlyeluc

bnlyeluc1#

不需要使用$_SERVER [“HTTP_HOST”];因为Pimcore提供了获取Pimcore URL的方法:

\Pimcore\Tool::getHostUrl($useProtocol = null, Request $request = null): string

下面是如何使用它的多个示例:https://hotexamples.com/examples/pimcore/Tool/getHostUrl/php-tool-gethosturl-method-examples.html

相关问题