Am 07.02.2019 um 10:01 schrieb Benjamin Morel <benjamin.mo...@gmail.com>:
> IMO, @ can be safely removed the day PHP converts current warnings to 
> exceptions.

Please don't do that either, I don't want to convert
        @mkdir("foo");
to
        try { mkdir("foo"); } catch (Exception $e) {}
just to stop my script from exiting if the directory already exists.

- Chris


--
PHP Internals - PHP Runtime Development Mailing List
To unsubscribe, visit: http://www.php.net/unsub.php

Reply via email to