/
spirzen
/
it-code-examples
Обзор
Документация
Войти
/
spirzen
/
it-code-examples
Код
Запросы
0
Задачи
Вики
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
examples/php/php-507-154-002/main.php
17 строк
513 B
Spirzen
Code migration pack
09 июн 2026, 01:41
09 июн 2026, 01:41
cebc284
Код
Авторство
О чём код?
<?php declare(strict_types=1); final class Input { public static function intFromGet(string $key, int $default = 0): int { $value = filter_input(INPUT_GET, $key, FILTER_VALIDATE_INT); return $value === false || $value === null ? $default : $value; } public static function stringFromPost(string $key, string $default = ""): string { $value = filter_input(INPUT_POST, $key, FILTER_UNSAFE_RAW); return $value === null ? $default : trim((string)$value); } }