예제 #1
0
파일: test2.php 프로젝트: jpchristie/Scisr
<?php

/**
 * Another Foo file used for testing
 */
$b = Foo::quark();
예제 #2
0
파일: test.php 프로젝트: jpchristie/Scisr
<?php

/**
 * A simple test class
 */
class Foo
{
    function quark()
    {
    }
}
$f = new Foo();
$b = $f->quark();