<?php
 
 
function metodo_acesso(ReflectionMethod $metodo) {
 
    if ($metodo->isPublic())
 
        return 'public';
 
    else if ($metodo->isProtected())
 
        return 'protected';
 
    else
 
        return 'private';
 
}
 
 
function clean_comments($str) {
 
    return str_replace(array('*','/'), '', $str);
 
}
 
 
 |