添加函数到 PHP file_get_contents 路径
Add function to PHP file_get_contents path
我有这段代码可以获取 SVG 图像的源并将其添加到 HTML:
<?php echo file_get_contents("assets/images/lightening.svg"); ?>
我想添加一个函数 root(); (我已经在工作了)开始路径告诉它网站的根在哪里(我在多个位置提升网站)。
我想要的是一个有效的版本:
<?php echo file_get_contents("'root();'.assets/images/lightening.svg"); ?>
如有任何帮助,我们将不胜感激。
谢谢
取决于函数是否 root()
returns 没有尾随的路径:
<?php echo file_get_contents(root() . "/assets/images/lightening.svg"); ?>
或尾部斜杠:
<?php echo file_get_contents(root() . "assets/images/lightening.svg"); ?>
我有这段代码可以获取 SVG 图像的源并将其添加到 HTML:
<?php echo file_get_contents("assets/images/lightening.svg"); ?>
我想添加一个函数 root(); (我已经在工作了)开始路径告诉它网站的根在哪里(我在多个位置提升网站)。
我想要的是一个有效的版本:
<?php echo file_get_contents("'root();'.assets/images/lightening.svg"); ?>
如有任何帮助,我们将不胜感激。 谢谢
取决于函数是否 root()
returns 没有尾随的路径:
<?php echo file_get_contents(root() . "/assets/images/lightening.svg"); ?>
或尾部斜杠:
<?php echo file_get_contents(root() . "assets/images/lightening.svg"); ?>