php-general Digest 19 Mar 2013 08:46:29 -0000 Issue 8169

2013-03-19 Thread php-general-digest-help
php-general Digest 19 Mar 2013 08:46:29 - Issue 8169 Topics (messages 320631 through 320648): Re: [PHP-DEV] feature request : easy shared memory 320631 by: Matijn Woudt Re: significance of escape character in string in PHP 320632 by: Stuart Dallas 320634 by: Matijn

[PHP] Compiler for the PHP code

2013-03-19 Thread Kevin Peterson
My webcode written in PHP and it is running in the interpreted way. My problem is it is not giving the desired performance so want to try the compiler if any. Please suggest if we have any compiler option available for the PHP code and more important is this new option.

Re: [PHP] Compiler for the PHP code

2013-03-19 Thread Camille Hodoul
Googling compile php code gave me this : http://stackoverflow.com/questions/1408417/can-you-compile-php-code It looks like you have some options but I haven't tried any yet, so I can't help you with the installation 2013/3/19 Kevin Peterson qh.res...@gmail.com My webcode written in PHP and it

Re: [PHP] Compiler for the PHP code

2013-03-19 Thread Vincent Tumwijukye
Dear Kevin, please install and use the PECL bcompiler extension. You will need to use the approprate version for your php regards On Tue, Mar 19, 2013 at 11:46 AM, Kevin Peterson qh.res...@gmail.comwrote: My webcode written in PHP and it is running in the interpreted way. My problem is it is

Re: [PHP] Compiler for the PHP code

2013-03-19 Thread Adam Nicholls
Checkout HipHop by the Facebook guys, it turns PHP into C code and compiles down to binary. ...although I don't think it's for the faint hearted. Have you tried other optimisation techniques first - eg Caching, and Profiling?? If this is a production environment you might wanna think about

[PHP] Re: Compiler for the PHP code

2013-03-19 Thread Alessandro Pellizzari
Il Tue, 19 Mar 2013 08:46:22 +, Kevin Peterson ha scritto: My webcode written in PHP and it is running in the interpreted way. My problem is it is not giving the desired performance so want to try the compiler if any. PHP gets compiled to bytecode on the server before being executed. You

[PHP] SPL Recursive Iterator Examples

2013-03-19 Thread NaMarPi
I have not found enough documents about Recursive Iterators on the net, so started to collect my mini-examples here: https://github.com/namarpi/PHP-SPL-Recursive-Examples -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] SPL Recursive Iterator Examples

2013-03-19 Thread Alain Williams
On Tue, Mar 19, 2013 at 04:40:59AM -0700, NaMarPi wrote: I have not found enough documents about Recursive Iterators on the net, so started to collect my mini-examples here: https://github.com/namarpi/PHP-SPL-Recursive-Examples If you are putting them up as examples, then it would be

[PHP] Re: SPL Recursive Iterator Examples

2013-03-19 Thread NaMarPi
The usage of the examples: 1. the name of the php file reflects to the method(s) under consideration - find the related php.net manual page for more information 2. scroll down in the file, and you will find the result of the execution - Original Message - From: NaMarPi

Re: [PHP] Re: SPL Recursive Iterator Examples

2013-03-19 Thread ma...@behnke.biz
Why don't you post them on php.net? http://www.php.net/manual/add-note.php?sect=class.recursiveiteratorredirect=http://www.php.net/manual/de/class.recursiveiterator.php NaMarPi nama...@yahoo.com hat am 19. März 2013 um 13:01 geschrieben: The usage of the examples: 1. the name of the php

[PHP] Re: Re: SPL Recursive Iterator Examples

2013-03-19 Thread NaMarPi
Thanks, I have heard about that feature for the first time. I will examine it. Why don't you post them on php.net? http://www.php.net/manual/add-note.php?sect=class.recursiveiteratorredirect=http://www.php.net/manual/de/class.recursiveiterator.php NaMarPi nama...@yahoo.com hat am 19.

RE: [PHP] Re: Compiler for the PHP code (memecached)

2013-03-19 Thread Daevid Vincent
-Original Message- From: Alessandro Pellizzari [mailto:a...@amiran.it] Sent: Tuesday, March 19, 2013 2:06 AM To: php-general@lists.php.net Subject: [PHP] Re: Compiler for the PHP code Il Tue, 19 Mar 2013 08:46:22 +, Kevin Peterson ha scritto: My webcode written in PHP and