tech-tips/Языки программирования/PHP/PHP.md

28 lines
923 B
Markdown
Raw Permalink Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

> [!important]
> См. также:
> * [[PhpStorm]]
> * [[NetBeans]]
> * [[LEMP-стек]]
> * [[Docker]]
## Форсировать вывод и логирование ошибок
```PHP
ini_set('error_reporting', E_ALL);
ini_set('display_errors', 1);
ini_set('display_startup_errors', 1);
ini_set('log_errors', 1);
ini_set('error_log', $_SERVER['DOCUMENT_ROOT'] . 'php-errors.log');
```
[https://stackoverflow.com/questions/1053424/how-do-i-get-php-errors-to-display](https://stackoverflow.com/questions/1053424/how-do-i-get-php-errors-to-display)
[[Understanding Static Functions and Static Classes in PHP]]
[[Зачем нужен static при объявлении анонимных функций - Хабр]]
[[Attributes in PHP 8 • PHP.Watch]]
[[Среда разработки PHP на базе Docker - Хабр]]
[[Пишем простого чат-бота для Telegram на PHP - Хабр]]