Login   Register  
PHP Classes
elePHPant
Icontem

File: index.php

Recommend this page to a friend!
Stumble It! Stumble It! Bookmark in del.icio.us Bookmark in del.icio.us
  Classes of Rafael Rojas Torres  >  Get the CURP  >  index.php  >  Download  
File: index.php
Role: Example script
Content type: text/plain
Description: Example of the class
Class: Get the CURP
Generate and validate CURP identifier
Author: By
Last change:
Date: 2008-07-15 21:47
Size: 849 bytes
 

Contents

Class file image Download
<?php
$prueva
=1;
include 
"curp.php";
$Curp=new B_CURP();//creamos el objeto de la curp
if($prueva==1)// prueva1 
  
$Curp->SetCURP("HEAP60909HMSRVD03");//introduce una curp a buscar
else// prueva2 
   
$Curp->SetDatos("Pedro""Hernandez""Aviles" "h"99196616);//se meten datos para que calcule una posible curp
echo $Curp->CURP."<br />\r\n";//se obtiene una curp no verificada al leer los datos obtiene la curp ya validad y registrada
ob_start();
if(
$Curp->LeerDatos())//lee cual es la curp si hay algun problema envia error
    
print_r($Curp);//muestra el objeto completo
else{
    
print_r($Curp->errores);//muestra solo los errores
    
print_r($Curp->GetNumberErrors);//muestra los numeros de los errores
}
$buf=ob_get_clean();
ob_end_clean();
echo 
str_replace("    ","&nbsp;&nbsp;&nbsp;",str_replace("\n","<br />\n",$buf));
?>