file_get_contents函数采用php文件的名称,并读取文本文件的内容并将其显示在控制台上。获取内容,并将其回显。
<?php echo file_get_contents( "filename.php" ); ?>
filename.php的内容将作为输出。
在上面的代码中,通过传递php文件名来调用函数'file_get_contents'。输出将是php文件中存在的内容。