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

  • Home
  • SEARCH
  • 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 6641883
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 25, 20262026-05-25T23:51:48+00:00 2026-05-25T23:51:48+00:00

Should I use php serialization? Is there a limit of file size to serialize?

  • 0

Should I use php serialization?

Is there a limit of file size to serialize? JPGs can go up to 10mb.

  • 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-25T23:51:49+00:00Added an answer on May 25, 2026 at 11:51 pm

    PHP sessions are limited by the memory usage limit of PHP. So 10mb would probably be ok, but…

    I don’t think “session” is the correct choice to store a large binary data. Uploaded files goes to a temporary folder on the server and you can reach them for a while from that directory. So, if you need to reach that file later, you can simply store the temporary file path to the session.

    Example code:

    session_start();
    $_SESSION["uploaded_file"] = $_FILES["file"];
    

    Then, when you need to copy that file to the real path, you can do something like:

    move_uploaded_file($_SESSION["uploaded_file"]["tmp_name"], "images/".$_SESSION["uploaded_file"]["name"]);
    

    You can also reach “type”, “size” and “error” items from $_SESSION[“uploaded_file”] if you need them.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

Is there any reason you should not use PHP to overcome some of the
Should I use php PDO or normal mysql_connect to execute database queries in PHP?
I'm having trouble with grep.. Which four patterns should I use with PHP's preg_grep
In PHP: When should I use require vs. include ? When should I use
Possible Duplicate: Why should I use templating system in PHP? I was just curious
Anonymous functions are available from PHP 5.3 . Should I use them or avoid
I'm quite experienced in PHP but I don't quite use mod_rewrite (although I should).
MSDN says that you should use structs when you need lightweight objects. Are there
I use php files in my website and in those file I include my
According to php.net I should use mysql_real_escape_string() and turn off magic quotes , because

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.