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 Olavo Alexandrino  >  Dictionary  >  test.php  >  Download  
File: test.php
Role: Example script
Content type: text/plain
Description: Test Class
Class: Dictionary
Access arrays with the IDictionary interface
Author: By
Last change:
Date: 2006-03-30 10:53
Size: 308 bytes
 

Contents

Class file image Download
<?php require_once ("Dictionary.php"); ?>
<?php
 
/**
 * @author         oalpb
 * @date         06/03/2006 - 16:41:53
 **/
 
 
 
$objDictionary = new Dictionary();
 
 
$objDictionary->add("carro1","GOL");
 
$objDictionary->add("carro2","PALIO");
  
 
 
 
 
print_r$objDictionary->items() );  
 
 
?>