Naming a method that converts raw data into an object

Posted by Emanuil on Stack Overflow See other posts from Stack Overflow or by Emanuil
Published on 2010-05-12T21:08:04Z Indexed on 2010/05/12 21:24 UTC
Read the original article Hit count: 281

Filed under:
|
|

Say you have data in the format:

name=john;age=33;gender=male

How would you call a method that converts data like that into an an object / associative array?

I've been thinking about:
- unserialize_variables
- parse_variables

© Stack Overflow or respective owner

Related posts about naming

Related posts about General