我需要在php中使用exec命令执行一个函数。我有这个: exec(“php ./myfile.php>> ./log.txt&”);
但是我想在myfile.php
中执行一个特定的函数“myFunction”我怎么能这样做?
<?php
class A {
exec("php ./myfile.php >> ./log.txt &");
}
?>
myfile.php
<?php
class B {
function myFunction(){
....
}
function otherFunction(){
....
}
}
?>
我需要将几个函数作为并行进程抛出