kuvardin/data-filter

There is no license information available for the latest version (dev-master) of this package.

Simple PHP data filter

Maintainers

Package info

github.com/kuvardin/DataFilter

pkg:composer/kuvardin/data-filter

Statistics

Installs: 160

Dependents: 2

Suggesters: 0

Stars: 0

Open Issues: 0

dev-master 2025-12-06 11:49 UTC

This package is auto-updated.

Last update: 2026-03-06 12:24:39 UTC


README

Usage

<?php
require 'vendor/autoload';

$zero_to_null = true;
$user_id = Kuvardin\DataFilter::getInt($_POST['id'] ?? null, $zero_to_null);
if ($user_id !== null) {
    // ...
}