PHP code example of simfatic / boar

1. Go to this page and download the library: Download simfatic/boar library. Choose the download type require.

2. Extract the ZIP file and open the index.php.

3. Add this code to the index.php.
    
        
<?php
require_once('vendor/autoload.php');

/* Start to develop here. Best regards https://php-download.com/ */

    

simfatic / boar example snippets


$v = Boar::create()
$v->field("name")->isRequired()->alphabetic()->maxLen(50)
$v->fields(["email", "address"])->areRequired()->maxLen(50)

$res = $v->validate($post_values)

if($res->hasErrors())
{
    echo json_encode($res->errors);    
}


$v->field("name")->maxLength(10)->withMessage("name should be shorter than {{max_length}}");


$v->field("name")->maxLength(10)->alphabetic();

$res = $v->validate([]); //No Error. 


$v->field("name")->isRequired()->maxLength(10)->alphabetic();

$res = $v->validate([]); //Error. 


$v->field("weight")->min(100);

$res = $v->validate(["weight"=>"not a number"]); //No Error. 


$v->field("weight")->isNumber()->min(100);

$res = $v->validate(["weight"=>"not a number"]); //Error.