|
|
|
|
|
by notRobot
2159 days ago
|
|
> Strict typing mode. In PHP the declare(strict_types = 1); directive enables strict mode. In strict mode, only a variable of exact type of the “type declaration” will be accepted, or a TypeError will be thrown. The only exception to this rule is that an integer may be given to a function expecting a float. https://www.brainbell.com/php/strict-type.html |
|