Re: [PHP] Bug 51860

2012-01-18 Thread Matijn Woudt
On Wed, Jan 18, 2012 at 1:06 AM, Christian Grobmeier wrote: > Hello folks, > > any chance this one is ever fixed? > https://bugs.php.net/bug.php?id=51860 > > I am a customer of 1&1. They told me they will not upgrade until this > one is fixed. Imagine that there are thousands of customers running

RE: [PHP] sessions and expirations and isolations

2012-01-18 Thread Ford, Mike
> -Original Message- > From: Stuart Dallas [mailto:stu...@3ft9.com] > Sent: 18 January 2012 12:02 > > On 17 Jan 2012, at 23:17, Haluk Karamete wrote: > > > I'm afraid session.cookie_lifetime = 0 keeps all session data ( > that > > is past and present ) in server memory until a server rest

[PHP] Re: SOAP

2012-01-18 Thread Carlos Medina
Am 17.01.2012 11:55, schrieb DPRJ Sistemas (OK Cosméticos): > Hello! > > > > I am looking for some help on Web Services (SOAP) client. > > > > Is there anyone here who has already worked with such client? > > > > Thank you > > > > Deleo > > Yes Me Regards Carlos Medina -- PHP

Re: [PHP] sessions and expirations and isolations

2012-01-18 Thread Stuart Dallas
On 17 Jan 2012, at 23:17, Haluk Karamete wrote: > Back to this session expiration... > > that old quote said... > > The default behaviour for sessions is to keep a session open > indefinitely and only to expire a session when the browser is closed. > This behaviour can be changed in the php.ini

Re: [PHP] How to correctly validate url?

2012-01-18 Thread Tanel Tammik
it doesn't work. please see the results: var_dump(filter_var('http://example.com', FILTER_VALIDATE_URL)); var_dump(filter_var('http://example', FILTER_VALIDATE_URL)); var_dump(filter_var('http://exämple.com', FILTER_VALIDATE_URL)); http://example should be false http://exämple.com should be tr

Re: [PHP] How to correctly validate url?

2012-01-18 Thread Vikash Kumar
Best way is to use filter_var: http://in2.php.net/manual/en/function.filter-var.php filter_var('http://example.com', FILTER_VALIDATE_URL) On 18 January 2012 16:58, Tanel Tammik wrote: > Does anyone have a preg expression to validate the url which includes > these special characters like ÜÕÄÖ in

Re: [PHP] How to correctly validate url?

2012-01-18 Thread Tanel Tammik
Does anyone have a preg expression to validate the url which includes these special characters like ÜÕÄÖ included? Br, Tanel 18.01.2012 12:21, Mokaddim Akm kirjutas: Sent from a handheld device On 18-Jan-2012, at 4:05 PM, Tanel Tammik wrote: Hello, how to correctly validate url? now the

Re: [PHP] How to correctly validate url?

2012-01-18 Thread Mokaddim Akm
Sent from a handheld device On 18-Jan-2012, at 4:05 PM, Tanel Tammik wrote: > Hello, > > how to correctly validate url? now the special local characters like > ÜÕÖÄ etc are allowed as well... > The generic URI syntax mandates that new URI schemes that provide for the representation of character

[PHP] How to correctly validate url?

2012-01-18 Thread Tanel Tammik
Hello, how to correctly validate url? now the special local characters like ÜÕÖÄ etc are allowed as well... Br, Tanel -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php