nhpiash/php-input-filter

A lightweight and reusable PHP package to sanitize and validate user inputs like strings, integers, emails, URLs, booleans, and arrays.

v1.0.0 2025-05-17 04:03 UTC

This package is auto-updated.

Last update: 2025-05-17 04:32:14 UTC


README

A lightweight, reusable PHP packagez for sanitizing and validating user inputs. Designed to prevent XSS, malformed inputs, and improve form data consistency.

📌 Features

  • Sanitize and validate:
    • Strings
    • Integers
    • Emails
    • URLs
    • Booleans
    • Arrays
  • Centralized input handling
  • PSR-4 autoloading (Composer ready)
  • No framework dependency

🚀 Installation

You can use Composer to install this package:

composer require nhpiash/php-input-filter

Or include manually:

require 'src/InputFilter.php'

✨ Usage

use Nhpiash\InputFilter\InputFilter;

$name     = InputFilter::getString($_POST['name']);
$age      = InputFilter::getInt($_POST['age']);
$email    = InputFilter::getEmail($_POST['email']);
$website  = InputFilter::getSanitizedURL($_POST['website']);
$agreed   = InputFilter::getBoolean($_POST['terms']);
$filtered = InputFilter::getFilteredArray($_POST, 'string');

📂 Project Structure

php-input-filter/
├── vendor/                  ← Composer autoloading
│   └── autoload.php
├── src/
│   └── InputFilter.php      ← Core Library
├── examples/
│   ├── form.php             ← Bootstrap Example Form
│   └── validate-form.php    ← Input Handling Example
├── README.md
├── documentation.txt
├── composer.json
└── composer.lock

🙌 Contributing

Contributions, issues, and feature requests are welcome!
Feel free to check the issues page if you'd like to collaborate.

📄 License

This project is open source and available under the MIT License.

📬 Contact

If you like this project or have any questions, feel free to reach out!