示例#1
0
<?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();