PHP Classes

File: examples/exampleConvert.php

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

Contents

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

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