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
看你的demo,out参数对应的应该是脚本执行日志吧,getProtocol中做了如下处理:
/** * * @param $stream * @return mixed */ protected static function getProtocol($stream) { if(strpos($stream, 'unix') === 0){ return 'unix'; } $stream_info = parse_url($stream); if (!array_key_exists('scheme', $stream_info)) { throw new \InvalidArgumentException("stream format error"); } return $stream_info['scheme']; }
这样一来就抛异常了呀
The text was updated successfully, but these errors were encountered:
No branches or pull requests
看你的demo,out参数对应的应该是脚本执行日志吧,getProtocol中做了如下处理:
这样一来就抛异常了呀
The text was updated successfully, but these errors were encountered: