Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 7403887
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 29, 20262026-05-29T05:10:31+00:00 2026-05-29T05:10:31+00:00

Can someone tell me why this string won’t unserialize? I’ve tried just about everything

  • 0

Can someone tell me why this string won’t unserialize? I’ve tried just about everything (stripslashes, addslashes, trim, etc etc…)

a:10:{s:8:"order_id";s:13:"9006710350464";s:5:"buyer";s:10:"1303912674";s:3:"app";s:15:"223615011031939";s:8:"receiver";s:10:"1303912674";s:6:"amount";s:2:"20";s:11:"time_placed";s:10:"1326235812";s:11:"update_time";s:10:"1326235818";s:4:"data";s:0:"";s:5:"items";a:1:{i:0;a:7:{s:7:"item_id";s:4:"1_48";s:5:"title";s:49:"I\'m Not Jesus Mommy (Full Movie) - 48 Hour Stream";s:11:"description";s:204:"This is a purcahse to watch I\'m Not Jesus Mommy on FilmDemic Movie Streaming for a period of 48 hours. Once you complete the purchase, your account will have access to watch the movie for up to 48 hours.";s:9:"image_url";s:144:"https://filmdemic.com/apps/fb-streaming/wp-main/wp-content/themes/fd-fb-stream-wpf-child/library/images/titles/slidersize/im_not_jesus_mommy.jpg";s:11:"product_url";s:46:"http://filmdemic.com/apps/fb-streaming/film-1";s:5:"price";s:2:"20";s:4:"data";s:37:"film_id=1&wp_user_id=4&view_length=48";}}s:6:"status";s:6:"placed";}

I get “Error at offset 370 of 952 bytes”, but that doesn’t make sense, the “m” in Stream is the 370th byte.

Thanks!

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-29T05:10:31+00:00Added an answer on May 29, 2026 at 5:10 am

    There is a slash that shouldn’t be there at position 324. Serializing data in PHP uses character counting. For example:

    s:49:"I\'m Not Jesus Mommy (Full Movie) - 48 Hour Stream"
    

    Says that there will be a string of 49 characters coming in the following quotes. But if you calculate correctly, there is a \ in this string that makes the count 50 character. If you tried to escape it, please unescape it to fix your issue.

    There seems to be also another error after fixing this at position 844 which is the end of your product_url, it seems to be missing one character, probably a trailing slash in the url because the url is 45 characters long but it is expecting a 46 character long url…

    So after correcting your serialized data i get this:

    a:10:{s:8:”order_id”;s:13:”9006710350464″;s:5:”buyer”;s:10:”1303912674″;s:3:”app”;s:15:”223615011031939″;s:8:”receiver”;s:10:”1303912674″;s:6:”amount”;s:2:”20″;s:11:”time_placed”;s:10:”1326235812″;s:11:”update_time”;s:10:”1326235818″;s:4:”data”;s:0:””;s:5:”items”;a:1:{i:0;a:7:{s:7:”item_id”;s:4:”1_48″;s:5:”title”;s:49:”I’m
    Not Jesus Mommy (Full Movie) – 48 Hour
    Stream”;s:11:”description”;s:204:”This is a purcahse to watch I\’m Not
    Jesus Mommy on FilmDemic Movie Streaming for a period of 48 hours.
    Once you complete the purchase, your account will have access to watch
    the movie for up to 48
    hours.”;s:9:”image_url”;s:144:”https://filmdemic.com/apps/fb-streaming/wp-main/wp-content/themes/fd-fb-stream-wpf-child/library/images/titles/slidersize/im_not_jesus_mommy.jpg”;s:11:”product_url”;s:46:”http://filmdemic.com/apps/fb-streaming/film-1/”;s:5:”price”;s:2:”20″;s:4:”data”;s:37:”film_id=1&wp_user_id=4&view_length=48″;}}s:6:”status”;s:6:”placed”;}

    And it results into

    array (
      'order_id' => '9006710350464',
      'buyer' => '1303912674',
      'app' => '223615011031939',
      'receiver' => '1303912674',
      'amount' => '20',
      'time_placed' => '1326235812',
      'update_time' => '1326235818',
      'data' => '',
      'items' => 
      array (
        0 => 
        array (
          'item_id' => '1_48',
          'title' => 'I'm Not Jesus Mommy (Full Movie) - 48 Hour Stream',
          'description' => 'This is a purcahse to watch I\'m Not Jesus Mommy on FilmDemic Movie Streaming for a period of 48 hours. Once you complete the purchase, your account will have access to watch the movie for up to 48 hours.',
          'image_url' => 'https://filmdemic.com/apps/fb-streaming/wp-main/wp-content/themes/fd-fb-stream-wpf-child/library/images/titles/slidersize/im_not_jesus_mommy.jpg',
          'product_url' => 'http://filmdemic.com/apps/fb-streaming/film-1/',
          'price' => '20',
          'data' => 'film_id=1&wp_user_id=4&view_length=48',
        ),
      ),
      'status' => 'placed',
    )
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

Can someone tell me why this http://hupcapstudios.com/projects/calendar.html won't load in IE? The error message:
Can someone tell me exactly what is this regex doing? new StringTokenizer(string,:/.@\\;,+ ); I
Can someone tell me if this is valid code: get { return string.IsNullOrEmpty(TopicID) ?
Can someone tell me how to convert this string 2012-01-01T08:44:36+01:00 to 2012-01-01 08:44:36 in
Can someone tell me why this processes all the files and then does it
Can someone tell me why this unit test that checks for exceptions fails? Obviously
this must be such a simple problem but can someone tell me why this
Can someone tell what is wrong with this query? sqltext = SELECT utyp, count(*)
Can someone tell me how to accomplish this mapping using Fluent NHibernate? It's simply
Can someone tell me how to install this? I go here: http://api.jquery.com/browser/ and click

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.