(PHP) 包含函数只包含文件的某些部分
(PHP) The include function only includes some parts of the file
我在包含 php 文件时遇到问题。我在网上查了三个小时,用不同的方法排查,但我自己搞不定。
我有一个名为 "side9test.php" 的文件,代码如下:
<?php
include "styret/fil-liste.php";
?>
文件 "fil-liste.php" 包含:
<?php
echo "</br>";
echo file_get_contents("filsystem_navn/m_0.txt");
?>
文件 "m_0.txt" 包含以下内容:
forste mappa
问题是,当我 运行 "side9test.php" 时,它给我的只是:
</br>
感谢所有反馈!
我认为您的文件路径是正确的,只需将您的代码更改为
echo file_get_contents("filsystem_navn/m_0.txt",true);
设置为 true
或 1
将搜索包含路径 :)
我在包含 php 文件时遇到问题。我在网上查了三个小时,用不同的方法排查,但我自己搞不定。
我有一个名为 "side9test.php" 的文件,代码如下:
<?php
include "styret/fil-liste.php";
?>
文件 "fil-liste.php" 包含:
<?php
echo "</br>";
echo file_get_contents("filsystem_navn/m_0.txt");
?>
文件 "m_0.txt" 包含以下内容:
forste mappa
问题是,当我 运行 "side9test.php" 时,它给我的只是:
</br>
感谢所有反馈!
我认为您的文件路径是正确的,只需将您的代码更改为
echo file_get_contents("filsystem_navn/m_0.txt",true);
设置为 true
或 1
将搜索包含路径 :)