Sophie

Sophie

distrib > Mageia > 4 > x86_64 > by-pkgid > 022f809f8abf0ab06bc8c4ebf0a1b175 > files > 5

php-pear-PHP_Parser-0.2.2-3.mga4.noarch.rpm

<?php


require_once 'PHP/Parser.php';

//this uses gregs more advanced parser
//pulls out more detailed information from the file.

$p = PHP_Parser::factory('Structure','Structure');
print_r($p->parseString(file_get_contents(__FILE__)));



class test { 
    function test() {
       echo "hello world";
    }
}