Login   Register  
PHP Classes
elePHPant
Icontem

File: error_sample3.php

Recommend this page to a friend!
Stumble It! Stumble It! Bookmark in del.icio.us Bookmark in del.icio.us
  Classes of Tom Schaefer  >  Input Validator  >  error_sample3.php  >  Download  
File: error_sample3.php
Role: Example script
Content type: text/plain
Description: undefined key-value pair
Class: Input Validator
Validate of nested arrays using XML schema rules
Author: By
Last change:
Date: 2012-05-27 03:17
Size: 682 bytes
 

Contents

Class file image Download
<?php

   
// this sample has an error caused by a wrong interface

   
include_once 'InputValidator.php';
  
  
$data = array(
          
"data" => array(
            
"is_active" => true,
            
"name" => "asd",
            
"firstname" => "Schaefer",
            
"born_at" => "2012",
            
"gender" => "1",
            
"address" => array(
              
"city" => "Erftstadt",
              
"zip" => "50374",
              
"phone" => "0049555123456"
            
),
          )
      );
    

  
$check InputValidator::validate($datadirname(__FILE__)."/test.xsd");  
  if(
$check){
    
print_r($check);  
  } else {
    echo 
"valid";
  }