我有一个功能的测试类,包括后我可以使用包含页面的此类功能,但我不能在包含页面的功能上使用此功能,例如:
测试类.php:
class test
{
public function alert_test( $message )
{
return $message;
}
}
包括类:在这个使用类中我没有问题
文本.php:
<?php
include 'testClass.php';
$t= new test;
echo alert_test('HELLO WORLD');
?>
但我不能通过这种方法使用 alert_test 函数:
<?php
include 'testClass.php';
$t= new test;
function test1 ( $message )
{
echo alert_test('HELLO WORLD');
/*
OR
echo $t->alert_test('HELLO WORLD');
*/
}
?>
我想在子功能中使用测试类