Tried something like class....???
<?php
// Create some silly class:
class SomeClass {
var $properties = array("jake","mufin","larry","ezmirelda");
function SomeClass() {
}
function GetProperties() {
return $this->properties;
}
}
// instantiate the class:
$class = new SomeClass();
// Get the properties array from the class:
$ary = $class->GetProperties();
?>
Have fun...