knavely
11-29-2003, 01:07 AM
ok heres what im trying to do:
class X {
var $want_array;
function foo()
{
foreach( $ExistingArray as $current )
{
this->$want_array[$current] = some value...
}
}
for some reason it just wont become an array...not sure what to do
any help would be awsome!
class X {
var $want_array;
function foo()
{
foreach( $ExistingArray as $current )
{
this->$want_array[$current] = some value...
}
}
for some reason it just wont become an array...not sure what to do
any help would be awsome!