diff --git a/common/php.md b/common/php.md new file mode 100644 index 0000000000..6b48f94165 --- /dev/null +++ b/common/php.md @@ -0,0 +1,15 @@ +# php + +> PHP Command Line Interface 'CLI' + +- Parse and execute a file + +`php {{file}}` + +- Run PHP interactively + +`php -a` + +- Run PHP code. Notes: a) Don't use tags; b) Escape double quotes with backslash + +`php -r "{{code}}"` \ No newline at end of file