PHP Classes

File: examples/exampleImport.php

Recommend this page to a friend!
  Classes of Thomas Björk   Fuse Array   examples/exampleImport.php   Download  
File: examples/exampleImport.php
Role: Example script
Content type: text/plain
Description: Example on how to load data dynamically
Class: Fuse Array
Manage arrays with read only properties
Author: By
Last change: Update of examples/exampleImport.php
Date: 5 months ago
Size: 160 bytes
 

Contents

Class file image Download
<?php
include('../fusearray.php');

$arr = new FuseArray();
$arr->Import(array(1,2,3,4));
foreach(
$arr as $key => $value) {
  echo
$key.' - '.$value.PHP_EOL;
}