Unserialize in Java a serialized php object

前端 未结 15 1089
闹比i
闹比i 2020-11-29 11:31

Does anyone know if it is possible, actually if it has been done, to serialize an object in php and unserialize it in Java (java-php communication). Maybe an adapter will be

15条回答
  •  醉话见心
    2020-11-29 11:43

    You can somehow make use of PHP's var_export() function for this, which returns a parseable string representation of the object you want to serialize.

提交回复
热议问题