I have php script, that take some arguments from command line. Something like:
php script.php user create
I need to create windows cmd file, that will call my php script, and it will pass arguments to php script.
I need to call it like:
command.cmd user create
Command.cmd source now:
php script.php
What I need to add, to send undefined number of arguments from cmd file to php script.