now i understand your pb but have no idea to solve it
good luck...

> I'm soory but your code doesn't make me understand what you want to
> do... Be more precise, it will help you to get some help
>
> I have this code, I would like, if this could be done
>
>> > <?
>> > $array['dim1']['dim2']['dim3'][3] = "value";
>> >
>> > $dim1 = 'dim1';
>> > $dim2 = 'dim2';
>> > $dim3 = 'dim3';
>> > $dim4 = 3;
>> >
>> > $test = "[$dim1][$dim2][$dim3][$dim4]";
>> > $result = "$array$test";
>> >
>> > echo $result;
>> > ?>
>
> The output is : Array[dim1][dim2][dim3][3]
>
> I need that the output was: value
>
> Thanks in advanced for any help.
>
> ----------------------------------------------------------------------------
> ---------
>
> This situation above was presented in a class that I have been
> developing, I want the value of the array, that is "value", but the
> script print Array[dim1][dim2][dim3][3], I don't if there is another way
> to do that but as the way above, I hope
> you can understand my problem, thanks for any help :).

-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php

Reply via email to