使用exec调用/调用php类中的方法

时间:2011-11-12 11:53:28

标签: php exec

在php中假设test.php中有一个名为'test_class'的类,有两种方法:method_1method_2

这是我的test.php文件:

    class test_class  
    { 
       function method_1
       { .......   }

       function method_2
       { .......   }

    }

现在,使用其他php文件中的“exec”命令,我想只在test_class中运行method_1。

我想知道如何实现这一目标?

2 个答案:

答案 0 :(得分:1)

您可以这样做:

include_once 'test.php'; // correct path if needed
$test = new test_class();
// call method1
$test->method_1();

答案 1 :(得分:0)

您是否阅读过manual

exec并不打算调用方法,它习惯于:

  

exec - 执行外部程序