Running a Zend Framework action from command line

后端 未结 10 1336
佛祖请我去吃肉
佛祖请我去吃肉 2020-11-29 17:01

I would like to run a Zend Framework action to generate some files, from command line. Is this possible and how much change would I need to make to my existing Web project t

10条回答
  •  甜味超标
    2020-11-29 17:23

    I have used wget command

    wget http://example.com/module/controller/action -O /dev/null

    -O /dev/null if you dont want to save the output

提交回复
热议问题