简体   繁体   中英

How can i remove block of code in php?

H How can I remove block of code in php from a file like this:

myfile.php contain:

class sample {
    public function test() {
        echo 'yes';
    }

    public function myinfo() {
        function test() {
            echo 'yes';
        }
    }

    public function remove() {
        echo 'tes';
    }
}

and I want to remove test method from this file

Well, you can if you use something like Perl ! :P

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM