PHP - Store Images in SESSION data?

后端 未结 7 997
一向
一向 2020-12-30 01:21

Can you store an image in a PHP SESSION ?

I have a multi-step registration process using PHP on my site. On one of the steps, the users can upload their company log

7条回答
  •  旧巷少年郎
    2020-12-30 01:54

    I'd save the file to disk, you could even name it using the user's session id. Then there could be some sort of clean up script which is run as a cron job and deletes the images of people who never successfully paid.

    If you try and store an image in the session, you're doing it wrong.

提交回复
热议问题