Re: [PHP] variable array name
- From: parasane@xxxxxxxxx ("Daniel Brown")
- Date: Thu, 29 Nov 2007 10:09:26 -0500
On Nov 29, 2007 7:47 AM, Mark Head <mark.head@xxxxxxxxxxxx> wrote:
I seem to be having a problem in assigning a value to an array where the
array is called dynamically.
e.g. the physical name for the array is "my_array", so:
my_array[1] = "test";
works fine.
$array_name = "my_array";
$array_name[1] = "test";
does not work.
I have tried $$array_name[1] = "test"; but to no avail.
Any Ideas?
Cheers,
Mark
--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php
<?
$array_name = "mine";
$$array_name = array("This","is","how","it","should","be","done.");
print_r($mine);
$$array_name = array($$array_name,"Then","do","this","to","nest","inside","the","array.");
print_r($$array_name);
?>
--
Daniel P. Brown
[office] (570-) 587-7080 Ext. 272
[mobile] (570-) 766-8107
If at first you don't succeed, stick to what you know best so that you
can make enough money to pay someone else to do it for you.
.
- References:
- variable array name
- From: "Mark Head"
- variable array name
- Prev by Date: Re: [PHP] Dynamic Display of Images Stored in DB
- Next by Date: Re: [PHP] One more data formatting question
- Previous by thread: variable array name
- Next by thread: One more data formatting question
- Index(es):
Relevant Pages
|