Login   Register  
PHP Classes
elePHPant
Icontem

File: test.php

Recommend this page to a friend!
Stumble It! Stumble It! Bookmark in del.icio.us Bookmark in del.icio.us
  Classes of Alex Fourth  >  Binary search  >  test.php  >  Download  
File: test.php
Role: Example script
Content type: text/plain
Description: Example how to use the class
Class: Binary search
Search for data in files using binary search
Author: By
Last change:
Date: 2008-08-28 13:35
Size: 386 bytes
 

Contents

Class file image Download
<?php

include 'binary_search.class.php';

$token 'Zorita Wilkinson2';
try
{
  
$email BinarySearch::find'data.csv'$token );
}
catch(
Exception $e)
{
   echo 
'Exception: ' htmlspecialchars$e->getMessage() ) . '<hr/>';
}

if( empty( 
$email ) )
{
  echo 
'Sorry, email of ' $token ' was not found';
}
else
{
  echo 
'Email of ' $token ': ' $email;
}