How to auto-deploy web-app

后端 未结 3 528
春和景丽
春和景丽 2020-12-18 03:36

I\'m trying to make sense on the best way to do automatize a series of things in a row in order to deploy a web-app and haven\'t yet came up with a suitable solution. I woul

3条回答
  •  清酒与你
    2020-12-18 04:04

    You can run php from the command line to do all sorts of fun things.

    $ php script_name.php arg1 arg2
    

    See: command line, argv, argc, exec

    Running PHP from the command line is very fast. I've been doing this a lot lately for various automation tasks.

提交回复
热议问题