承接 netherphp/input 相关项目开发

从需求分析到上线部署,全程专人跟进,保证项目质量与交付效率

邮箱:yvsm@zunyunkeji.com | QQ:316430983 | 微信:yvsm316

netherphp/input

最新稳定版本:v4.1.1

Composer 安装命令:

composer require netherphp/input

包简介

Input Handling.

README 文档

README

nether.io Code Climate Build Status Packagist Packagist

An input filtering interface. It allows you to define a set of dynamic filters for input to be run applied just-in-time on your specified data source.

Super simple example:

$input = (new Nether\Input\Filter)
->Email(function($t){ return filter_var($t,FILTER_VALIDATE_EMAIL); });

// ... some time later...

$input->SetDataset($_POST);
if(!$input->Email) {
	throw new Exception('valid email address is required.');
}

To pull this off, things like your HTML form field names will need to follow the same rules as properties in PHP (alphanumeric and _ starting with a letter). By default it is case insensitive, so you can send all lowercase from your URL if you want and then reference them in whateverCase YouChoose to use. That can be disabled if you are on a performance powertrip.

You can pass any array or object to the constructor or use SetDataset(). Typical uses would be for _GET and _POST but you could apply it to any named dataset that needs looked at. You can also change datasets at will, keeping any predefined filters intact.

Another Simple Example:

Lets say we want to dump our POST data back into our form because there was some sort of validation error. This is the time where it is very easy to accidentally open yourself up to cross-site scripting problems. Input Filter can take care of that for you though by defining a default filter that all fields which do not have their own special filters for, get run through.

$data = (new Nether\Input\Filter($_POST))
->SetDefaultFunction(function($v){ return htmlspecialchars($v) });

// ... some time later...

<input type="text" name="Username" value="<?php echo $data->Username ?>" />

Creating a new interface.

Wrap any object or array in the OOP interface.

$input = new Nether\Input\Filter($_POST);

Retrieve a value.

Fetch the value from $_POST['myfield'], after running it through any filters we assigned to the field.

$val = $input->MyField

Set a value.

Note, this will not update the original source array. Writing back to the dataset will prompt the copy-on-write, so now you have your own unique dataset and in this example, will not affect the original $_POST['myfield'].

$input->MyField = 'ten';

Set a filter.

You call the field as a method, passing it a callable function with one argument which is the value.

$input->MyField(function($t){
	return str_repalce('a','@',$t);
});

Retrieve a filter.

You invoke the object directly, passing it a string that was the name of the field you originally defined the callback on. Here is an example reusing an existing callback on another field.

$input->MyOtherField($input('MyField'));

Installing

Require this package in your composer.json.

require {
	"netherphp/input": "~1.0.0"
}

Then install it or update into it.

$ composer install --no-dev
$ composer update --no-dev

Testing

This library uses Codeception for testing. Composer will handle it for you. Install or Update into it.

$ composer install --dev
$ composer update --dev

Then run the tests.

$ php vendor/bin/codecept run unit
$ vendor\bin\codecept run unit

统计信息

  • 总下载量: 335
  • 月度下载量: 0
  • 日度下载量: 0
  • 收藏数: 0
  • 点击次数: 1
  • 依赖项目数: 1
  • 推荐数: 0

GitHub 信息

  • Stars: 0
  • Watchers: 0
  • Forks: 0
  • 开发语言: PHP

其他信息

  • 授权协议: BSD-2-Clause
  • 更新时间: 2015-05-13

承接程序开发

PHP开发

VUE

Vue开发

前端开发

小程序开发

公众号开发

系统定制

数据库设计

云部署

网站建设

安全加固