PHP 回声中的语句

PHP statement within echo

我基本上是在尝试合并成 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"); ?> 

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

您需要添加如下:

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

.运算符用于连接。

喜欢:

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

可以写成

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

很简单你可以改成下面的

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

它应该有效