回声中的PHP语句

时间:2017-12-28 06:47:41

标签: php echo file-get-contents

我基本上试图结合PHP语句。

<?php echo ROOT_PATH; ?>
<?php echo file_get_contents( "../css/themes/subtitle.php"); ?>

我想实现这样的目标:

<?php echo file_get_contents( "ROOT_PATH/css/themes/subtitle.php"); ?> 

3 个答案:

答案 0 :(得分:2)

如果在单引号或双引号内调用常量,则它将始终被选为字符串。

您需要添加如下内容:

<?php echo file_get_contents( ROOT_PATH."/css/themes/subtitle.php"); ?> 

答案 1 :(得分:0)

.运算符用于连接。

像:

$str = "Hello";
echo $str;
echo "World";

可以写成

$str = "Hello";
echo $str."World";

答案 2 :(得分:0)

非常简单,您可以将其更改为以下

//full path of the file 
$file_name = ROOT_PATH."/css/themes/subtitle.php";
echo file_get_contents($file_name);

它应该有用