Voting

: min(one, three)?
(Example: nine)

The Note You're Voting On

sony at sony-ak dot com
5 years ago
To send environment variable as long as with PHP built-in web server, type like this.

~$ MYENV=dev php -d variables_order=EGPCS -S 0.0.0.0:8000

On PHP script we can check with this code.

<?php
echo getenv('MYENV'); // print dev

<< Back to user notes page

To Top