我是使用codeigniter cli的新手我正在使用xampp,我的项目位于
c:\xampp\htdocs\mycli\
我的代码是这样的
public function myfunction($to = "WORLD"){
echo "HELLO {$to}!".PHP_EOL;
}
我试图在 cli 上的 codeigniter 教程的基础上使用这个 cmd 行
c:\xampp\htdocs\my_cli\index.php mycontroller myfunction "test"
但它只显示 index.php 文件是行不通的。我还使用 htacess 删除 url 中的 index.php。