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
Great library, thanks 👍
When using safe functions you lose access to $http_response_header. $http_response_header is created in the local scope.
I guess there is no fix for this? I could not find anything about this issue after searching a bit.
<?php require_once "vendor/autoload.php"; use function Safe\file_get_contents; file_get_contents("https://google.com"); var_dump($http_response_header); // -> Warning: Undefined variable $http_response_header in ...
It is the same with e.g. fopen.
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Great library, thanks 👍
When using safe functions you lose access to $http_response_header.
$http_response_header is created in the local scope.
I guess there is no fix for this? I could not find anything about this issue after searching a bit.
It is the same with e.g. fopen.
The text was updated successfully, but these errors were encountered: