We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
In Scanner::arguments a new Argv object is instantiated and later Argv::parse is called.
Scanner::arguments
Argv
Argv::parse
if (empty($args)) { $args = array_slice($_SERVER['argv'], 1); // First argument removed (php [index.php.php] [<path>] [<functions>]) }
Accessing $_SERVER['argv'] when not running via the CLI will cause an undefined index error.
$_SERVER['argv']
The text was updated successfully, but these errors were encountered:
fb265fa
Hi, fixed and will be available in the next version.
Sorry, something went wrong.
No branches or pull requests
In
Scanner::arguments
a newArgv
object is instantiated and laterArgv::parse
is called.Accessing
$_SERVER['argv']
when not running via the CLI will cause an undefined index error.The text was updated successfully, but these errors were encountered: