473,769 Members | 2,063 Online
Bytes | Software Development & Data Engineering Community
+ Post

Home Posts Topics Members FAQ

serialize() and unserialize()

I've just taken over a PHP website and am converting it to ASP.NET
(don't shoot!). I'm not a PHP guy so I'm doing a lot of searching for
things that I aren't obvious, and I'm hoping I'll be able to get help
from here for things I can't find on the Internet. Here's the first...

Here's the PHP code:

setcookie("site _search_keyword ","", time() - 3600);
$site_search_ke yword =
unserialize(bas e64_decode($sit e_search_keywor d));

Microsoft's PHP to ASP.NET convert translated it to this:

PHP.HttpSupport .SetCookie("sit e_search_keywor d", "",
PHP.DateTimeSup port.Time() - 3600);
site_search_key word =
PHP.TypeSupport .ToString(unser ialize(base64_d ecode(site_sear ch_keyword)));
..Net has no corresponding method for unserialize() and I can't find
where the page/site does the initial serialization. Is there an
underlying serialization when it is creating the cookie? If the first
line is setting a null value to the cookie, why would the second line
try to read it? It's going to be the same every time... right?

Dec 20 '06 #1
7 3560
<po******@maste rs.eduwrote in message
news:11******** **************@ 73g2000cwn.goog legroups.com...
I've just taken over a PHP website and am converting it to ASP.NET

See, there's your problem, right there. Just don't do that and you're fine.
Dec 20 '06 #2
po******@master s.edu wrote:
I've just taken over a PHP website and am converting it to ASP.NET
(don't shoot!). I'm not a PHP guy so I'm doing a lot of searching for
things that I aren't obvious, and I'm hoping I'll be able to get help
from here for things I can't find on the Internet. Here's the first...

Here's the PHP code:

setcookie("site _search_keyword ","", time() - 3600);
$site_search_ke yword =
unserialize(bas e64_decode($sit e_search_keywor d));

Microsoft's PHP to ASP.NET convert translated it to this:

PHP.HttpSupport .SetCookie("sit e_search_keywor d", "",
PHP.DateTimeSup port.Time() - 3600);
site_search_key word =
PHP.TypeSupport .ToString(unser ialize(base64_d ecode(site_sear ch_keyword)));
.Net has no corresponding method for unserialize() and I can't find
where the page/site does the initial serialization. Is there an
underlying serialization when it is creating the cookie? If the first
line is setting a null value to the cookie, why would the second line
try to read it? It's going to be the same every time... right?
There is equivalent functionality available in .NET. Googled it...

http://www.411asp.net/func/search?tr...at=all&x=0&y=0
http://www.google.com/search?q=base6...&start=10&sa=N

Dec 20 '06 #3
powellgg wrote:
.Net has no corresponding method for unserialize() and I can't find
where the page/site does the initial serialization. Is there an
underlying serialization when it is creating the cookie? If the first
line is setting a null value to the cookie, why would the second line
try to read it? It's going to be the same every time... right?
serialize() converts from a nested array structure to a string.
unserialize() converts back the other way. This provides a convenient
method of storing a nested array structure into a file, database or
cookie.

These functions are very PHP-specific, though some people have written
functions to deal with PHP-style serialization in other languages. Of
interest to you might be:

http://csphpserial.sf.net/

In general though, I tend to recommend *against* rewriting code just
because it's in a language you don't know. You may have a very good
reason to be rewriting this website, but do consider whether a full
rewrite is the best solution, or whether it might be better to learn
some PHP and maintain the website that way. It's always a good idea
to expand ones repetoire of skills.

--
Toby A Inkster BSc (Hons) ARCS
Contact Me ~ http://tobyinkster.co.uk/contact

Dec 20 '06 #4

po******@master s.edu schrieb:
.Net has no corresponding method for unserialize() and I can't find
where the page/site does the initial serialization. Is there an
underlying serialization when it is creating the cookie? If the first
line is setting a null value to the cookie, why would the second line
try to read it? It's going to be the same every time... right?
..Net has serialization support, as many other languages too:

http://www.codeguru.com/columns/DotN...cle.php/c6595/

In fact, each language/architeture has its own, often proprietary
format.

In case you'd like to go xplat, you might wish to serialize into an XML
string.

Dec 20 '06 #5
... and I can't find
where the page/site does the initial serialization.
In earlier versions of PHP, it was normal that page parameters were
visible in scripts as variables. So if you requested
http://www.example.com/index.php?user=john , you could use the $user
variable in your script, which would contain 'john' if you did not
overwrite that value.

So it might just be that the variable is set by another page or a form.
In this case, you'll encounter the serialization as well, so you can do
it "the .NET way".

Best regards

--
Willem Bogaerts

Application smith
Kratz B.V.
http://www.kratz.nl/
Dec 20 '06 #6
True... but this is what they hired me for :).
Kimmo Laine wrote:
<po******@maste rs.eduwrote in message
news:11******** **************@ 73g2000cwn.goog legroups.com...
I've just taken over a PHP website and am converting it to ASP.NET


See, there's your problem, right there. Just don't do that and you're fine.
Dec 21 '06 #7
Thanks for the info! Fortunately or unfortunately I was hired for the
purpose of doing this. The organization went through a process of
determining whether to stay with PHP or move to .Net. I wasn't privy
to those meetings so I have no idea what the discussions where like...
but the end result is they hired me to do this. But I am sure I will
definitely learn some PHP along the way :)
Toby Inkster wrote:
powellgg wrote:
.Net has no corresponding method for unserialize() and I can't find
where the page/site does the initial serialization. Is there an
underlying serialization when it is creating the cookie? If the first
line is setting a null value to the cookie, why would the second line
try to read it? It's going to be the same every time... right?

serialize() converts from a nested array structure to a string.
unserialize() converts back the other way. This provides a convenient
method of storing a nested array structure into a file, database or
cookie.

These functions are very PHP-specific, though some people have written
functions to deal with PHP-style serialization in other languages. Of
interest to you might be:

http://csphpserial.sf.net/

In general though, I tend to recommend *against* rewriting code just
because it's in a language you don't know. You may have a very good
reason to be rewriting this website, but do consider whether a full
rewrite is the best solution, or whether it might be better to learn
some PHP and maintain the website that way. It's always a good idea
to expand ones repetoire of skills.

--
Toby A Inkster BSc (Hons) ARCS
Contact Me ~ http://tobyinkster.co.uk/contact
Dec 21 '06 #8

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

0
2673
by: James Sleeman | last post by:
Hi all, i just spent an hour rifling through code to find the cause of a problem only to find it's an oddity with serialization and recursive objects, so figured I'd post for the next person who gets the same problem (y'all might find it interesting too)... ********************************* Symptoms ********************************* When unserializing a previously serialized object, the __wakeup() function is mysteriously called more...
8
4254
by: John Smith | last post by:
Hi, I am using a custom Session Handler. session_set_save_handler is working well. But i want to read the data direct from the database. My problem: php don't uses the standard serialize function:
2
2801
by: Andrew | last post by:
Some have suggested that using serialize() and unserialize is faster than reading/writing an array to disk as a simple text file using $array = file('numbers.txt'); Can anyone justify this? It seems to me that there is some overhead associated with calling unserialize().
7
5148
by: richbl | last post by:
Hello all, I have a question about unserializing a single array element from a serialized array. Can this be done, or must I first unserialize the array, and then access the element? For example, given: $data = serialize(array('4.50','0.00','0.00'));
6
1954
by: sandy | last post by:
With java servlets I can declare complex object-oriented class structures as session variables in a servlet. That means I can have a complex HTML form that submits iteratively back to the server for interim updates, before a final save (interim post events allow users to add values to dropdown menus, collapse parts of the form, etc). And it all works because Java so seamlessly takes care of serializing a complex class structure for...
2
2983
by: onefastmustang | last post by:
I have a cookie that I serialize and set as follows.. $searchdata = $state; $searchdata = $country; $searchdata = $radius; $searchdata = $radius_zip; if ($_GET){ foreach ($_GET as $value){ $searchdata = 1; }
1
1635
by: Mark | last post by:
I'd like to take an instance of a class, and serialize it to a file on my computer. No security required on the file. Then, I'd like to be able to unserialize the file later and use the instance again. A quick sample on how to do this would be grand. A little pseudo code below just to clarify what type of class I'd like serialize to a file ... Thanks in advance. Mark
2
2485
by: Derek Martin | last post by:
Hey list, I have an arraylist containing some objects that I want to serialize and send over the internet and then deserialize back into the arraylist of objects. What I have so far: Dim myfeeds As New ArrayList myfeeds = <<method that populates arraylist with objects>> Dim BinFormatter As New System.Runtime.Serialization.Formatters.Binary.BinaryFormatter
1
497
by: VooDoo | last post by:
Hi, I am using the serialize and unserialize to put and get data from mysql database. I think i could optimise the way i handle the data, but not really sure how. What is the best way to happend data to a serialised field? I currently unserialise, parse the table, and my new value a the end of the table... Is there a quick/better way to do it??
0
9416
by: Hystou | last post by:
Most computers default to English, but sometimes we require a different language, especially when relocating. Forgot to request a specific language before your computer shipped? No problem! You can effortlessly switch the default language on Windows 10 without reinstalling. I'll walk you through it. First, let's disable language synchronization. With a Microsoft account, language settings sync across devices. To prevent any complications,...
0
10199
Oralloy
by: Oralloy | last post by:
Hello folks, I am unable to find appropriate documentation on the type promotion of bit-fields when using the generalised comparison operator "<=>". The problem is that using the GNU compilers, it seems that the internal comparison operator "<=>" tries to promote arguments from unsigned to signed. This is as boiled down as I can make it. Here is my compilation command: g++-12 -std=c++20 -Wnarrowing bit_field.cpp Here is the code in...
0
10032
jinu1996
by: jinu1996 | last post by:
In today's digital age, having a compelling online presence is paramount for businesses aiming to thrive in a competitive landscape. At the heart of this digital strategy lies an intricately woven tapestry of website design and digital marketing. It's not merely about having a website; it's about crafting an immersive digital experience that captivates audiences and drives business growth. The Art of Business Website Design Your website is...
1
9979
by: Hystou | last post by:
Overview: Windows 11 and 10 have less user interface control over operating system update behaviour than previous versions of Windows. In Windows 11 and 10, there is no way to turn off the Windows Update option using the Control Panel or Settings app; it automatically checks for updates and installs any it finds, whether you like it or not. For most users, this new feature is actually very convenient. If you want to control the update process,...
0
8861
agi2029
by: agi2029 | last post by:
Let's talk about the concept of autonomous AI software engineers and no-code agents. These AIs are designed to manage the entire lifecycle of a software development project—planning, coding, testing, and deployment—without human intervention. Imagine an AI that can take a project description, break it down, write the code, debug it, and then launch it, all on its own.... Now, this would greatly impact the work of software developers. The idea...
1
7393
isladogs
by: isladogs | last post by:
The next Access Europe User Group meeting will be on Wednesday 1 May 2024 starting at 18:00 UK time (6PM UTC+1) and finishing by 19:30 (7.30PM). In this session, we are pleased to welcome a new presenter, Adolph Dupré who will be discussing some powerful techniques for using class modules. He will explain when you may want to use classes instead of User Defined Types (UDT). For example, to manage the data in unbound forms. Adolph will...
0
5433
by: adsilva | last post by:
A Windows Forms form does not have the event Unload, like VB6. What one acts like?
1
3948
by: 6302768590 | last post by:
Hai team i want code for transfer the data from one system to another through IP address by using C# our system has to for every 5mins then we have to update the data what the data is updated we have to send another system
3
2810
bsmnconsultancy
by: bsmnconsultancy | last post by:
In today's digital era, a well-designed website is crucial for businesses looking to succeed. Whether you're a small business owner or a large corporation in Toronto, having a strong online presence can significantly impact your brand's success. BSMN Consultancy, a leader in Website Development in Toronto offers valuable insights into creating effective websites that not only look great but also perform exceptionally well. In this comprehensive...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.