php-general Digest 5 Sep 2009 08:12:10 -0000 Issue 6323

2009-09-05 Thread php-general-digest-help
php-general Digest 5 Sep 2009 08:12:10 - Issue 6323 Topics (messages 297690 through 297723): Re: Searching on AlphaNumeric Content Only 297690 by: Eddie Drapkin 297692 by: Robert Cummings 297711 by: Tommy Pham 297712 by: Paul M Foster 297719 by:

php-general Digest 5 Sep 2009 23:19:35 -0000 Issue 6324

2009-09-05 Thread php-general-digest-help
php-general Digest 5 Sep 2009 23:19:35 - Issue 6324 Topics (messages 297724 through 297733): Who kown this memcache_get_stats function ? 297724 by: hack988 hack988 Re: PHP6 Stable Release Schedule 297725 by: Richard Heyes 297726 by: Kevin Waterson 297727 by:

Re: [PHP] PHP6 Stable Release Schedule

2009-09-05 Thread Richard Heyes
Hi, Also, will PHP ever implement the Strict mode similar to Perl's 'using Strict'? Don't know if it's similar having never used Pearl, but there's always the E_STRICT error level. ?php error_reporting(E_STRICT); ? -- Richard Heyes HTML5 graphing: RGraph - www.rgraph.net (updated 5th

[PHP] Who kown this memcache_get_stats function ?

2009-09-05 Thread hack988 hack988
I found memcache_get_stats for memcached in some php code. I'm search it at php.net's function list,but it no matched result :(. I had found explain for Memcache::getStats() at this link http://www.php.net/manual/en/function.memcache-getstats.php In this link,tell me that

Re: [PHP] PHP6 Stable Release Schedule

2009-09-05 Thread Richard Heyes
Hi (again), ?php  error_reporting(E_STRICT); ? This might work better: ?php error_reporting(E_ALL | E_STRICT); ? -- Richard Heyes HTML5 graphing: RGraph - www.rgraph.net (updated 5th September) Lots of PHP and Javascript code - http://www.phpguru.org 50% reseller discount on licensing

Re: [PHP] PHP6 Stable Release Schedule

2009-09-05 Thread Kevin Waterson
On Sat, 2009-09-05 at 16:11 +0100, Richard Heyes wrote: Hi (again), ?php error_reporting(E_STRICT); ? This might work better: ?php error_reporting(E_ALL | E_STRICT); ? E_STRICT is now part of E_ALL Kevin -- PHP General Mailing List (http://www.php.net/) To unsubscribe,

Re: [PHP] PHP6 Stable Release Schedule

2009-09-05 Thread Bobby Pejman
Very nice! Use of E_STRICT notifies the user of deprecated functions. Thanks for the note. :) I read that E_ALL forces variable declaration, though I have yet to get that working in my code. --Original Message-- From: Richard Heyes Sender: richard.he...@gmail.com To: Bobby Pejman Cc:

Re: [PHP] PHP6 Stable Release Schedule

2009-09-05 Thread Richard Heyes
Hi, E_STRICT is now part of E_ALL Oopsy. Shows how much PHP I do these days... -- Richard Heyes HTML5 graphing: RGraph - www.rgraph.net (updated 5th September) Lots of PHP and Javascript code - http://www.phpguru.org 50% reseller discount on licensing now available - ideal for web designers

Re: [PHP] PHP6 Stable Release Schedule

2009-09-05 Thread J DeBord
On Sat, Sep 5, 2009 at 6:19 PM, Richard Heyes rich...@php.net wrote: Hi, E_STRICT is now part of E_ALL *In PHP 6 * Oopsy. Shows how much PHP I do these days... -- Richard Heyes HTML5 graphing: RGraph - www.rgraph.net (updated 5th September) Lots of PHP and Javascript code -

[PHP] mail attachment

2009-09-05 Thread Grega Leskovšek
How do I attach a file in mail function or do I have to use PEAR (and if how ...). What are the advantages of PEAR? When do You suggest to use PEAR? Thanks in advance, -- Peace refuge: http://users.skavt.net/~gleskovs/ When the sun rises I receive and when it sets I forgive;) Grega Leskovšek

[PHP] [Formaldehyde] The Most Basic Ajax - PHP Error Debugger

2009-09-05 Thread Andrea Giammarchi
Hi everybody, I'd love to receive your feedback about my last zero dependencies, easily integrable, scalable, fast, lightweight, etc etc Ajax / PHP debugger. The project has Mit Style License and it is hosted in Google Code: http://code.google.com/p/formaldehyde/ While this is my blog

Re: [PHP] mail attachment

2009-09-05 Thread Bastien Koert
RTFM Bastien On Saturday, September 5, 2009, Grega Leskovšek legr...@gmail.com wrote: How do I attach a file in mail function or do I have to use PEAR (and if how ...). What are the advantages of PEAR? When do You suggest to use PEAR? Thanks in advance, -- Peace refuge:

[PHP] Error message

2009-09-05 Thread Bruce Dobson
Hi folks, I am new on this list and to php. I have just downloaded and gotten php 5.3.0 working with IIS on one computer but my efforts to install it on another computer come up with the error message: 14001 (0x36b1) Can anybody tell me what this relates to? Thanks Bruce

Re: [PHP] Error message

2009-09-05 Thread Tommy Pham
- Original Message From: Bruce Dobson bruce_...@yahoo.co.nz To: php-general@lists.php.net Sent: Saturday, September 5, 2009 4:19:29 PM Subject: [PHP] Error message Hi folks, I am new on this list and to php. I have just downloaded and gotten php 5.3.0 working with IIS on one

Re: [PHP] Who kown this memcache_get_stats function ?

2009-09-05 Thread hack988 hack988
Nobody Kown this?This is my second question in this mail-list :(.I don't kown why it's no reply by anybody. 2009/9/5 hack988 hack988 hack...@dev.htwap.com: I found memcache_get_stats for memcached in some php code. I'm search it at php.net's function list,but it no matched result :(. I had

Re: [PHP] Who kown this memcache_get_stats function ?

2009-09-05 Thread Eddie Drapkin
On Sun, Sep 6, 2009 at 12:16 AM, hack988 hack988hack...@dev.htwap.com wrote: Nobody Kown this?This is my second question in this mail-list :(.I don't kown why it's no reply by anybody. 2009/9/5 hack988 hack988 hack...@dev.htwap.com: I found memcache_get_stats for memcached in some php code.

Re: [PHP] Who kown this memcache_get_stats function ?

2009-09-05 Thread Jonathan Tapicer
I think that the documentation for memcache_get_stats should be exactly the same as the one given for the method Memcache::getStats except that memcache_get_stats should receive as the first parameter a reference to the Memcache connection. Hope that helps. Jonathan On Sun, Sep 6, 2009 at 1:16

Re: [PHP] Who kown this memcache_get_stats function ?

2009-09-05 Thread hack988 hack988
thank Jonathan ,Eddie :),I think that,i have to read libmemcached's manual first. Now I kown one thing: All function Memcache:: can replace to memcache_xxx,some diffrent is memcache_xxx has an fixed param 0,it's used for pass a memcached link resource except memcache_connect function.

Re: [PHP] Who kown this memcache_get_stats function ?

2009-09-05 Thread Tommy Pham
- Original Message From: hack988 hack988 hack...@dev.htwap.com To: PHP General List php-general@lists.php.net Sent: Saturday, September 5, 2009 9:16:51 PM Subject: Re: [PHP] Who kown this memcache_get_stats function ? Nobody Kown this?This is my second question in this mail-list

Re: [PHP] Who kown this memcache_get_stats function ?

2009-09-05 Thread Tommy Pham
- Original Message From: Tommy Pham tommy...@yahoo.com To: PHP General List php-general@lists.php.net Sent: Saturday, September 5, 2009 10:41:39 PM Subject: Re: [PHP] Who kown this memcache_get_stats function ? - Original Message From: hack988 hack988 To: PHP General