php 5.6 Automatically populating $HTTP_RAW_POST_DATA is deprecated -- ОШИБКА, что за ошибка

Automatically populating $HTTP_RAW_POST_DATA is deprecated and will be removed in a future version. To avoid this warning set 'always_populate_raw_post_data' to '-1' in php.ini and use the php://input stream instead. in Unknownon line 0

Ошибка связана с запретом чтения данных POST-а напрямую, но она появляется даже когда используется:

file_get_contents('php://input')

(что не понятно), а потому чтобы избавиться от предупреждения в php.ini необходимо добавить строку:

always_populate_raw_post_data = -1