Question

I want to write batch file for my own php framework. for example i will use it to create controller or modul .If you have already used Zend or symfony you may know how to use .bin file of framework. I only know coding with php so i need clear description of how to write batch file .I looked symfony.bin's source code but code is very simple i think there is a something which send commands to php files and returns response.

Was it helpful?

Solution

If you only know PHP, then do the setup script in it as well. PHP has excellent support for writing CLI applications (Command Line Interface). This also gives you several advantages over a shell script solution, such as access to reflection classes, which you could use to automatically extract the structure of abstract classes and interfaces and generate code templates.

Licensed under: CC-BY-SA with attribution
Not affiliated with StackOverflow
scroll top