Heim > Artikel > Backend-Entwicklung > 在函数里include文件时会何会把文件名打印出来
比如,有下面的执行文件:
echo 111111;
function aa()
{
include('get_file_list_search.php');
echo 'end of aa()',PHP_EOL;
}
aa();
执行时在屏幕上打印出get_file_list_search.php
这是为什么呢?能让它不打印出来吗?
这要看你 get_file_list_search.php 是怎么写的了
重点在 get_file_list_search.php 上。
只有include 貌似不够分析