Tagged Questions

9
votes
4answers
580 views

Is this a valid email address?

"Françoise Lefèvre"@example.com I'm reading RFC 5321 to try to actually understand what constitutes a valid email address -- and I'm probably making this a lot more difficult than it needs to be -- ...
1
vote
2answers
94 views

Does JSON 'officially' Support Conversion of Native Types?

In PHP, you can use json_encode to encode an object as a json string. $string = json_encode($some_object); However, PHP has the standard slew of datatypes which are not considered objects (ints, ...
1
vote
2answers
508 views

javascript RFC 3986 implementation?

Is there already a javascript function/library/snippet written for the validation of the RFC 1738 URL specifications listed at http://www.ietf.org/rfc/rfc3986.txt?
0
votes
1answer
128 views

PHP verify valid UUID

I found the following Javascript function in another answer: function createUUID() {     var s = [];     var hexDigits = "0123456789abcdef";     for (var i = 0; i < 36; i++) {         s[i] = ...
0
votes
0answers
26 views

Does SSL changes cookie set up behaviour when setting them up from subdomain to domain?

I am wondering if SSL and https protocol changes cookie behaviour or not? Let's say, I have a subdomain http://subdomain.example.com that sets a cookie to domain itself http://example.com, doesn't ...