PHP Classes

File: Vourto/bin/example5.php

Recommend this page to a friend!
  Classes of Mauro Junior   Vourto   Vourto/bin/example5.php   Download  
File: Vourto/bin/example5.php
Role: Example script
Content type: text/plain
Description: Example script
Class: Vourto
Validate request values of different types
Author: By
Last change:
Date: 6 years ago
Size: 443 bytes
 

Contents

Class file image Download
<?php

require_once "../autoload.php";

//example1.php?name=mauro

$create = Prop::exec(
   
$_GET,
    array(
"profile" => array(
       
"name" => array(
       
"minlegth" => array("value" => 4, "callback" => "Name must be at least 4 characters"),
       
"pattern" => array("value" => '/^David/', "callback" => "Name must be \"David\" "),
       
"callback" => "Name cannot be empty"
       
)
    )),
    function(){
       
//do anything
});

echo
$create->getStd();

$create->close();