예제 #1
0
파일: c.php 프로젝트: xiaobudongzhang/lib
<?php

//echo "c.php\n";
class test
{
    function testa()
    {
        echo "me\n";
    }
}
//me();
$t = new test();
$t->testa();