PHP Classes

File: example/index.php

Recommend this page to a friend!
  Classes of Boss Ibrahim Mussa   Wepesi Validation   example/index.php   Download  
File: example/index.php
Role: Auxiliary script
Content type: text/plain
Description: Auxiliary script
Class: Wepesi Validation
Validate a set of values using rule classes
Author: By
Last change:
Date: 1 year ago
Size: 609 bytes
 

Contents

Class file image Download
<?php
/*
 * Copyright (c) 2022. Wepesi validation.
 * @author Boss Ibrahim Mussa
 */

$data_source = [
   
"name" => "ibrahim",
   
"age" => 12,
   
"country" => "DRC",
   
"state" => "North Kivu",
   
"password"=>"1234567",
   
"new_password"=>123456,
   
"city" => "Goma",
   
"email"=>"infos@wepesi.com",
   
"link"=> "https://github.com/bim-g/wepesi_validation/",
   
"status"=> true,
   
"birth_day"=>"2021-05-23",
   
"date_created"=>"2021-05-23"
];

// include_once __DIR__."/string.php";
// include __DIR__."/number.php";
// include __DIR__."/date.php";
   
include __DIR__."/boolean.php";