包含后查看PHP代码

时间:2012-08-02 02:16:17

标签: php

基本上,我需要在包含后查看文件的PHP代码。我想确切地看到PHP代码运行的是什么。例如...

<?php // a.php
    $a = 10;
?>

<?php // b.php
    include('a.php');
    $b = 20;
?>

如果我试图获取b.php的代码,它将显示以下内容:

<?php
    $a = 10;
    $b = 20;
?>

这可能吗?如果是这样,怎么样?

1 个答案:

答案 0 :(得分:3)

// at the end of your script
<?php
$totalRunCode = '';
$scripts = get_included_files();
foreach($scripts as $script)
{
   $totalRunCode .= file_get_contents($script);
}

// do whatever with totalRunCode

虽然我不知道你为什么要这样做。