# SerializedPhpParser **Repository Path**: tx7do/SerializedPhpParser ## Basic Information - **Project Name**: SerializedPhpParser - **Description**: Php Serialized Parser - **Primary Language**: C++ - **License**: Not specified - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2023-02-05 - **Last Updated**: 2023-11-01 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README # Php Serialized Parser # HOW TO USE: ```cpp auto str = "a:2:{s:4:\"tool\";s:15:\"php unserialize\";s:6:\"author\";s:13:\"1024tools.com\";}"; SerializedPhpParser parser(str); auto arrItem = parser.parse(); auto strTool = arrItem["tool"].asCString(); auto strAuthor = arrItem["author"].asCString(); printf("tool:[%s] author:[%s]\n", strTool, strAuthor); ```