从命令行运行CodeIgniter站点

时间:2013-05-14 08:17:28

标签: php html macos codeigniter console

好的,我需要的是相当简单的。

我有一个基于CodeIgniter的网站,带有控制器等,我希望能够使用控制台对其进行测试。

例如

http://localhost/mysite/some-controller?u=someParam

$> ci some-controller?u=someParam

这有可能吗?如果是这样,怎么样?


旁注:我正在使用XAMPP for Mac OS X 10.6.8

2 个答案:

答案 0 :(得分:3)

从用户指南Running CodeIgniter via the CLI

可能会有所帮助

答案 1 :(得分:0)

在命令行中尝试:

php /path/to/index.php/controller/function/param1/param2/param3 ...

php /path/to/index.php controller function param1 param2 param3 ...