phower/escaper 问题修复 & 功能扩展

解决BUG、新增功能、兼容多环境部署,快速响应你的开发需求

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

phower/escaper

最新稳定版本:0.2.3

Composer 安装命令:

composer require phower/escaper

包简介

A PHP class which offers a way to escape output and defend from XSS and related vulnerabilities by introducing HTML, CSS and Javascript escaping context.

README 文档

README

A PHP class which offers a way to escape output and defend from XSS and related vulnerabilities by introducing HTML, CSS and Javascript escaping context.

Phower\Escaper is inspired in Zend's escaper component and both attempt to minimize the risks from the second most important OWASP web security risk.

Instalation

This package uses Composer tool for auto-loading and dependency management. From your project root folder just run:

composer require phower/escaper

Usage

Simply instantiate your object as usual:

``` php
use Phower\Escaper;

$escaper = new Escaper();
```

Class constructor supports a argument which allows to specify a given encoding format. E.g you can escape code from iso-8859-1 using:

``` php
use Phower\Escaper;

$escaper = new Escaper('iso-8859-1');
```

This package is meant to be used for code output escaping only. Looking the implemented interface there are five methods available for that:

  • escapeHtml: escape a string for the HTML Body context.
  • escapeHtmlAttr: escape a string for the HTML Attribute context.
  • escapeJs: escape a string for the Javascript context.
  • escapeCss: escape a string for the CSS context.
  • escapeUrl: escape a string for the URI or Parameter contexts.

统计信息

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

GitHub 信息

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

其他信息

  • 授权协议: MIT
  • 更新时间: 2015-07-23