php之获取程序源码的⽅法⽂件hello.php和index.php在同⼀⽬录
hello.php
<?php
class  hello{
public function __construct()
{
echo 'hello world';
}
}
index.php
$file = file('hello.php');
print_r($file);
输出结果为:
Array
(
[0] => <?php
[1] =>
[2] => class  hello{
[3] =>
[4] =>    public function __construct()php文件下载源码
[5] =>    {
[6] =>        echo 'hello world';
[7] =>    }
[8] =>
[9] => }
)

版权声明:本站内容均来自互联网,仅供演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系QQ:729038198,我们将在24小时内删除。