Files
EasySoft-ZenTaoPMS/test/model/misc/hello.php
T
2022-03-18 11:14:36 +08:00

10 lines
296 B
PHP
Executable File

#!/usr/bin/env php
<?php
include dirname(dirname(dirname(__FILE__))) . '/lib/init.php';
include dirname(dirname(dirname(__FILE__))) . '/class/misc.class.php';
$misc = new Misc('admin');
r($misc->hello()) && p() && e('hello world from hello()<br />'); //简单打印,maybe test function。
?>