Skip to content

UndefinedConstant

A reference is made to a constant that has not been defined.

<?php
echo MAX_RETRIES; // constant not defined

Define the constant with define() or const, or fix the spelling.