定制 seromenho/xml-validator 二次开发

按需修改功能、优化性能、对接业务系统,提供一站式技术支持

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

seromenho/xml-validator

最新稳定版本:v1.0

Composer 安装命令:

composer require seromenho/xml-validator

包简介

Validates your XML against a xsd schema file.

README 文档

README

Build Status Packagist

Validate Xml against a xsd schema file.

Installation

Library

$ git clone https://github.com/seromenho/XmlValidator.git

Composer

$ composer require seromenho/xml-validator:dev-master

Usage

<?php
require "./vendor/autoload.php";
use XmlValidator\XmlValidator;

$xml = "<sample>my xml string</sample>";
$xsd = "path_to_xsd_file.xsd";

// Validate
$xmlValidator = new XmlValidator($xml, $xsd);
try{
    $xmlValidator->validate($xml,$xsd);
    
    // Check if is valid
    if(!$xmlValidator->isValid()){
        
        // Do whatever with the errors.
        foreach ($xmlValidator->errors as $error) {
            /*echo sprintf('[%s %s] %s (in %s - line %d, column %d)',
                $error->level, $error->code, $error->message, 
                $error->file, $error->line, $error->column
            ); */
        }
    }
} catch (\InvalidArgumentException $e){
    // catch InvalidArgumentException
}

Based on XmlUtils from Symfony config component.

统计信息

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

GitHub 信息

  • Stars: 12
  • Watchers: 1
  • Forks: 7
  • 开发语言: PHP

其他信息

  • 授权协议: MIT
  • 更新时间: 2014-11-08