您好,假设我的应用程序中有以下结构。
<?
include('includes/functions.php');
include('includes/classes/login.class.php');
$login = new login();
?>
我想要的是在 login 类中调用在 functions.php 中定义的函数。但我无法让它工作。
您好,假设我的应用程序中有以下结构。
<?
include('includes/functions.php');
include('includes/classes/login.class.php');
$login = new login();
?>
我想要的是在 login 类中调用在 functions.php 中定义的函数。但我无法让它工作。