Put execution arg into _GET
THIS SITE IS MIRROR || Skip to Full Contents (Read More)
PHP CLI
<?php
if ($argv) {
foreach ($argv as $k=>$v)
{
if ($k==0) continue;
$it = explode(“=”,$argv[$i]);
if (isset($it[1])) $_GET[$it[0]] = $it[1];
}
}
?>
THIS SITE IS MIRROR || Skip to Full Contents (Read More)
All articles in this blog are licensed under CC BY-NC-SA 4.0 unless stating additionally.