Merge pull request #955 from petk/patch-scream

Remove scream PHP extension
This commit is contained in:
Xymph
2023-01-17 09:36:51 +01:00
committed by GitHub

View File

@@ -112,19 +112,13 @@ You can also set this value at runtime with the `ini_set` function
ini_set('xdebug.scream', '1') ini_set('xdebug.scream', '1')
{% endhighlight %} {% endhighlight %}
The "[Scream]" PHP extension offers similar functionality to Xdebug's, although Scream's ini setting is named
`scream.enabled`.
This is most useful when you're debugging code and suspect an informative error is suppressed. Use scream with care, This is most useful when you're debugging code and suspect an informative error is suppressed. Use scream with care,
and as a temporary debugging tool. There's lots of PHP library code that may not work with the error control operator and as a temporary debugging tool. There's lots of PHP library code that may not work with the error control operator
disabled. disabled.
* [Error Control Operators] * [Error Control Operators]
* [SitePoint] * [SitePoint]
* [Xdebug] * [Xdebug]
* [Scream]
### ErrorException ### ErrorException
@@ -152,7 +146,6 @@ More information on this and details on how to use `ErrorException` with error h
[errorreport]: /#error_reporting [errorreport]: /#error_reporting
[Xdebug]: https://xdebug.org/docs/basic [Xdebug]: https://xdebug.org/docs/basic
[Scream]: https://secure.php.net/book.scream
[Error Control Operators]: https://secure.php.net/language.operators.errorcontrol [Error Control Operators]: https://secure.php.net/language.operators.errorcontrol
[SitePoint]: https://www.sitepoint.com/ [SitePoint]: https://www.sitepoint.com/
[Whoops!]: https://filp.github.io/whoops/ [Whoops!]: https://filp.github.io/whoops/