Update: 2026-07-30 02:27:45

This commit is contained in:
Hamza-Ayed
2026-07-30 02:27:45 +03:00
parent 5f62455113
commit ca4a7c2e70
56 changed files with 3391 additions and 709 deletions
+2 -1
View File
@@ -10,7 +10,8 @@ if (!function_exists('env')) {
}
if (!function_exists('input')) {
function input(string $key = null, $default = null) {
// ?string, not string: implicit nullable params are deprecated in PHP 8.4.
function input(?string $key = null, $default = null) {
static $inputData = null;
if ($inputData === null) {
$json = file_get_contents('php://input');