php-general Digest 16 Nov 2011 12:13:49 -0000 Issue 7570

2011-11-16 Thread php-general-digest-help
php-general Digest 16 Nov 2011 12:13:49 - Issue 7570 Topics (messages 315704 through 315710): Re: Think I found a PHP bug 315704 by: Jim Lucas Re: Safari and PDF 315705 by: HallMarc Websites 315708 by: Tamara Temple 315709 by: Tim Streater 315710 by:

php-general Digest 17 Nov 2011 01:14:42 -0000 Issue 7571

2011-11-16 Thread php-general-digest-help
php-general Digest 17 Nov 2011 01:14:42 - Issue 7571 Topics (messages 315711 through 315720): Re: Safari and PDF 315711 by: Tim Streater 315714 by: Tommy Pham Re: Sniping on the List 315712 by: Ashley Sheridan {} forms 315713 by: Tim Streater 315715

Re: RE: [PHP] Safari and PDF

2011-11-16 Thread Tim Streater
On 16 Nov 2011 at 00:43, HallMarc Websites m...@hallmarcwebsites.com wrote: And in conclusion; sorry, I get uppity after a long day LOL. It's as I already thought; the answer is NO. So here is what I will do for any of you looking for an answer and stumbling across my slight rant, I will

RE: RE: [PHP] Safari and PDF

2011-11-16 Thread HallMarc Websites
I have to say that I still really have no clue what you are talking about. Why would anyone with OS X want Acrobat Reader, when there is a perfectly good [1] application (note: application, not feature) available that does the task just as well. And when the PDF shows up in Safari you can

Re: RE: RE: [PHP] Safari and PDF

2011-11-16 Thread Tim Streater
On 16 Nov 2011 at 12:13, HallMarc Websites m...@hallmarcwebsites.com wrote: Seems strange that you are given a choice. My clients have been telling me that they are told to get the latest Acrobat Reader by Safari. Which they have done (again why allow a plugin that isn't supported get

Re: [PHP] Re: Sniping on the List

2011-11-16 Thread Ashley Sheridan
Now, if you have ANY idea who I am Does anyone know who this guy is, as he seems to have forgotten :p -- Thanks! -Shawn http://www.spidean.com Thanks, Ash http://www.ashleysheridan.co.uk -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit:

[PHP] {} forms

2011-11-16 Thread Tim Streater
I'm looking at the source of a web sockets server and I see these various forms: ws://{$host}{$path} HTTP/1.1 ${status}\r\n Are these simply equivalent to: ws:// . $host . $path HTTP/1.1 . $status . \r\n; and if so, is there any particular benefit to using that form? Or if not, what

Re: RE: [PHP] Safari and PDF

2011-11-16 Thread Tommy Pham
On Wed, Nov 16, 2011 at 4:13 AM, HallMarc Websites m...@hallmarcwebsites.com wrote: Seems strange that you are given a choice. My clients have been telling me that they are told to get the latest Acrobat Reader by Safari. Which they have done (again why allow a plugin that isn't supported get

Re: [PHP] {} forms

2011-11-16 Thread Richard Quadling
On 16 November 2011 13:56, Tim Streater t...@clothears.org.uk wrote: I'm looking at the source of a web sockets server and I see these various forms:  ws://{$host}{$path}  HTTP/1.1 ${status}\r\n Are these simply equivalent to:  ws:// . $host . $path  HTTP/1.1 . $status . \r\n; and if

Re: Re: [PHP] {} forms

2011-11-16 Thread Tim Streater
On 16 Nov 2011 at 14:27, Richard Quadling rquadl...@gmail.com wrote: If you want to embed $array[CONSTANT], then the {} is used. I use {} out of habit for non arrays. Not sure if there is an impact. http://docs.php.net/manual/en/language.types.string.php#example-71 shows the use. Oh.

Re: [PHP] Think I found a PHP bug

2011-11-16 Thread Geoff Shang
On Tue, 15 Nov 2011, Jim Lucas wrote: Also, I recalled something from the early 5.1.0 version that was related to the introduction of the date_timezone_set() function. So, from there I searched Google for php changelog and found the changelog for php v5. Then I searched that document for

Re: [PHP] Think I found a PHP bug

2011-11-16 Thread Geoff Shang
On Wed, 15 Nov 2011, Tim Streater wrote: I find I need to do this: date_default_timezone_set (@date_default_timezone_get ()); in all my scripts since 5.x.x to avoid rude messages. Apart from the fact that I've not seen the rude messages of which you speak, even though I expected to, this

Re: [PHP] {} forms

2011-11-16 Thread Robert Cummings
On 11-11-16 09:27 AM, Richard Quadling wrote: On 16 November 2011 13:56, Tim Streatert...@clothears.org.uk wrote: I'm looking at the source of a web sockets server and I see these various forms: ws://{$host}{$path} HTTP/1.1 ${status}\r\n Are these simply equivalent to: ws:// . $host .