如何获取原始 php 内容?

How to get raw php content?

我正在尝试从 php 文件中获取文件内容。

$content = file_get_contents('test.php');
var_dump($content);

//outputs
addUser();

test.php

<?php
$client->addUser();

为什么 file_get_contents 删除 $client->

你有 2 个 HTML 个括号 <>

试试这个

echo htmlentites($content);

它可能没有删除任何内容,但您正在浏览器中读取结果,浏览器认为 <> 之间的任何内容都是 html 标记.

使用浏览器中的 "view source" 功能查看全部内容。