19 lines
294 B
PHP
19 lines
294 B
PHP
<?php
|
|
|
|
namespace IO\Input;
|
|
|
|
trait ArgvAccess
|
|
{
|
|
protected static function getScriptArgs(): array
|
|
{
|
|
// local copy of $argv
|
|
global $argv;
|
|
$arguments = $argv;
|
|
|
|
// shift off the script name
|
|
array_shift($arguments);
|
|
|
|
return $arguments;
|
|
}
|
|
}
|