We all know that you should always check input variables, but PHP does not

offer really good functionality for doing this in a safe way.
The Input Filter extension is meant to address this issue by implementing
a set of filters and mechanisms that users can use to safely access their
input data.

WWW: http://pecl.php.net/package/filter

PR:		ports/92198
Submitted by:	Alexander Zhuravlev <zaa@zaa.pp.ru>
This commit is contained in:
Renato Botelho 2006-01-24 17:09:46 +00:00
parent 14c69e7e68
commit 774d0244c1
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=154359
4 changed files with 42 additions and 0 deletions

View File

@ -449,6 +449,7 @@
SUBDIR += pear-LiveUser
SUBDIR += pear-LiveUser_Admin
SUBDIR += pear-Text_Password
SUBDIR += pecl-filter
SUBDIR += pecl-hash
SUBDIR += pecl-ssh2
SUBDIR += pft

View File

@ -0,0 +1,31 @@
# Ports collection makefile for: pecl-filter
# Date created: 2006-01-23
# Whom: Alexander Zhuravlev <zaa@zaa.pp.ru>
#
# $FreeBSD$
#
PORTNAME= filter
DISTVERSION= 0.9.4
CATEGORIES= security
MASTER_SITES= http://pecl.php.net/get/
PKGNAMEPREFIX= pecl-
EXTRACT_SUFX= .tgz
DIST_SUBDIR= PECL
MAINTAINER= zaa@zaa.pp.ru
COMMENT= PHP extension for safely dealing with input parameters
LIB_DEPENDS+= pcre:${PORTSDIR}/devel/pcre
USE_PHP= yes
USE_PHPIZE= yes
USE_PHPEXT= yes
PHP_MODNAME= filter
DEFAULT_PHP_VER= 5
BROKEN_WITH_VER= 4
CONFIGURE_ARGS+= --with-pcre-dir=${LOCALBASE}
.include <bsd.port.mk>

View File

@ -0,0 +1,3 @@
MD5 (PECL/filter-0.9.4.tgz) = bd1e15d31d89776f80e192f0828a46a8
SHA256 (PECL/filter-0.9.4.tgz) = 8fa653b5aec6560ca93be29c70fd4956c88ff4e6c542895e9fdca9b838641793
SIZE (PECL/filter-0.9.4.tgz) = 13586

View File

@ -0,0 +1,7 @@
We all know that you should always check input variables, but PHP does not
offer really good functionality for doing this in a safe way.
The Input Filter extension is meant to address this issue by implementing
a set of filters and mechanisms that users can use to safely access their
input data.
WWW: http://pecl.php.net/package/filter