我有2个文件
文件1.php
<?php
Class A
{
public static function _test
{
}
}
function get_sql($id)
{
}
function get_data($ids)
{
}
?>
在 file2.php 我写过
require_once('file1.php');
$a = get_sql($id);
为什么我不能调用函数并得到我的结果?