Several grammatic edits to introductory topics to improve readability and flow.

This commit is contained in:
James Gill
2014-08-03 20:14:02 -07:00
parent d69678742c
commit 39caad2fa6
4 changed files with 6 additions and 7 deletions

View File

@@ -5,7 +5,7 @@ anchor: command_line_interface
## Command Line Interface {#command_line_interface_title}
PHP was created primarily to write web applications, but it's also useful for scripting command line interface (CLI) programs. Command line PHP programs can help you automate common tasks like testing, deployment, and application administrivia.
PHP was created to write web applications, but is also useful for scripting command line interface (CLI) programs. Command line PHP programs can help automate common tasks like testing, deployment, and application administrivia.
CLI PHP programs are powerful because you can use your app's code directly without having to create and secure a web GUI for it. Just be sure not to put your CLI PHP scripts in your public web root!