Accessing PHP serialized data in C++

Collapse
This topic is closed.
X
X
 
  • Time
  • Show
Clear All
new posts
  • Aditya Agarwal

    Accessing PHP serialized data in C++

    Hi,

    I was wondering if there is a C++ library to deserialize PHP data
    structures. I would like to access the PHP data structures in some C++
    code that I need to write.

    Any help on this would be great.

    Thanks,
    - Aditya

  • Colin McKinnon

    #2
    Re: Accessing PHP serialized data in C++

    Aditya Agarwal wrote:
    [color=blue]
    > Hi,
    >
    > I was wondering if there is a C++ library to deserialize PHP data
    > structures. I would like to access the PHP data structures in some C++
    > code that I need to write.
    >[/color]
    It should be deaed easy to write one - the structure is fairly self evident.
    The only issue is that AFAIK the current serialized format is not an
    established standard.

    C.

    Comment

    • Chung Leong

      #3
      Re: Accessing PHP serialized data in C++

      No, not unless your use the code from the PHP source. A better solution
      might be to use WDDX.

      Comment

      Working...