KLanding/config/test2.php

9 lines
142 B
PHP
Raw Normal View History

2016-02-06 18:23:54 +00:00
<?php
$p = popen('Update.bat', 'r');
if ($p)
{
while (!feof($p))
echo gets($p); // get output line-by-line
pclose($p);
}
?>