php shell script

Solutions on MaxInterview for php shell script by the best coders in the world

showing results for - "php shell script"
Matteo
01 Oct 2016
1<?php
2$output = shell_exec('cat /etc/hosts');
3echo "<pre>$output</pre>";
4?>