在php中假设test.php
中有一个名为'test_class'的类,有两种方法:method_1
和method_2
。
这是我的test.php
文件:
class test_class
{
function method_1
{ ....... }
function method_2
{ ....... }
}
现在,使用其他php文件中的“exec”命令,我想只在test_class中运行method_1。
我想知道如何实现这一目标?
答案 0 :(得分:1)
您可以这样做:
include_once 'test.php'; // correct path if needed
$test = new test_class();
// call method1
$test->method_1();
答案 1 :(得分:0)