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 i

[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.recursiveiterator&redirect=http://www.php.net/manual/de/class.recursiveiterator.php > > >> NaMarPi hat am 19. März 2013 um

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.recursiveiterator&redirect=http://www.php.net/manual/de/class.recursiveiterator.php > NaMarPi hat am 19. März 2013 um 13:01 geschrieben: > > > > > The usage of the examples: > > 1. the name of the php file ref

[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 To: "nam

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 wou

[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

[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. Yo

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 in

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 wrote: > My webcode written in PHP and it is running in the interpreted way. My > problem is it is not giving the des

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 > My webcode written in PHP and it is running in the

[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.