nexssp / language_php

PHP implementation for Nexss PROGRAMMER 2.0

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

PHP Implementation for Nexss Programmer

To Install Nexss Programmer please go to Nexss Programmer CLI for more information.

Example

nexss file add myprogram.php # this will display templates (from the folder templates)
nexss myprogram.php # will compile and execute

PHP related

<!-- https://stackoverflow.com/questions/732832/php-exec-vs-system-vs-passthru -->
+----------------+-----------------+----------------+----------------+
|    Command     | Displays Output | Can Get Output | Gets Exit Code |
+----------------+-----------------+----------------+----------------+
| system()       | Yes (as text)   | Last line only | Yes            |
| passthru()     | Yes (raw)       | No             | Yes            |
| exec()         | No              | Yes (array)    | Yes            |
| shell_exec()   | No              | Yes (string)   | No             |
| backticks (``) | No              | Yes (string)   | No             |
+----------------+-----------------+----------------+----------------+

About

PHP implementation for Nexss PROGRAMMER 2.0

License:MIT License


Languages

Language:JavaScript 64.6%Language:PHP 33.1%Language:Shell 2.1%Language:PowerShell 0.2%