Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

Can anybody help me to store the below as an array?

I got the result as

Array (
    [TblCollectionReference] => Array ( 
            [content] => Array ( 
                    [0] => PBA_CA_FTL00003
                    [1] => PBA_CA_FTL00006
            )
    )
)

Now i need the 15 digit code.

individually i can get the code as

$this->data['TblCollectionReference']['content'][0]

But how to store it as array?

share|improve this question
Do you want to store each digit as an element of the array? – KillerX Aug 20 '12 at 8:40
1  
It is already an array? – PeeHaa 埽 Aug 20 '12 at 8:42
you find PBA_CA_FTL00003, which is probably is defined as a string if its 15 digits long - what is it you'd want to store precisely? – mschr Aug 20 '12 at 8:43

closed as too localized by PeeHaa 埽, tereško, j0k, Lusitanian, bažmegakapa Aug 21 '12 at 8:48

This question is unlikely to help any future visitors; it is only relevant to a small geographic area, a specific moment in time, or an extraordinarily narrow situation that is not generally applicable to the worldwide audience of the internet. For help making this question more broadly applicable, see the FAQ.

2 Answers

up vote 0 down vote accepted

you can use JSON

$toStore = json_encode($this->data['TblCollectionReference']['content']);

and then you user json_decode() where you need it.

share|improve this answer
i got the output as – user1581029 Aug 20 '12 at 9:11

There is a SerializableBehavior by CakeDC for handling this almost automatically. You can find it at https://github.com/CakeDC/utils/blob/master/Model/Behavior/SerializableBehavior.php

I think this is what you are looking for. It basically does what Mihai Iorga suggested above... in a reusable way

share|improve this answer

Not the answer you're looking for? Browse other questions tagged or ask your own question.