Re: [PHP-DEV] Feature Request: inline pseudo-instruction

2016-10-04 Thread Ryan Pallas
6:21 >> >À : Pascal KISSIAN >> >Cc : internals@lists.php.net >> >Objet : Re: [PHP-DEV] Feature Request: inline pseudo-instruction >> > >> >On 2016-10-04 14:33, Pascal KISSIAN wrote: >> >> I have an application where a small file is included at mult

Re: [PHP-DEV] Feature Request: inline pseudo-instruction

2016-10-04 Thread Ryan Pallas
On Tue, Oct 4, 2016 at 8:33 AM, Pascal KISSIAN wrote: > >-Message d'origine- > >De : Lauri Kenttä [mailto:lauri.ken...@gmail.com] > >Envoyé : mardi 4 octobre 2016 16:21 > >À : Pascal KISSIAN > >Cc : internals@lists.php.net > >Objet : Re:

Re: [PHP-DEV] Feature Request: inline pseudo-instruction

2016-10-04 Thread Thomas Nunninger
Hi, On 10/04/2016 01:33 PM, Pascal KISSIAN wrote: Hi everybody, I have an application where a small file is included at multiple places. So far so good. The problem is that this include consists in a small piece of code which is inside a multi-level loop. The include is done about an a

[PHP-DEV] Feature Request: inline pseudo-instruction

2016-10-04 Thread Michael Morris
On Tuesday, October 4, 2016, Pascal KISSIAN > wrote: > « tell me what you need, and I would tell you how to do without it » is a > nonsense answer for me… > > > > I just told you about one among several cases where I found the need for > such a feature. > > > And you've been told that functions an

RE: [PHP-DEV] Feature Request: inline pseudo-instruction

2016-10-04 Thread Pascal KISSIAN
] Envoyé : mardi 4 octobre 2016 17:52 À : Bob Weinand Cc : Pascal KISSIAN; PHP internals list Objet : Re: [PHP-DEV] Feature Request: inline pseudo-instruction 2016-10-04 17:39 GMT+02:00 Bob Weinand : > Am 4.10.2016 um 16:33 schrieb Pascal KISSIAN : > >> -Message d'o

Re: [PHP-DEV] Feature Request: inline pseudo-instruction

2016-10-04 Thread Michał Brzuchalski
al KISSIAN > >> Cc : internals@lists.php.net > >> Objet : Re: [PHP-DEV] Feature Request: inline pseudo-instruction > >> > >> On 2016-10-04 14:33, Pascal KISSIAN wrote: > >>> I have an application where a small file is included at multiple > >>

Re: [PHP-DEV] Feature Request: inline pseudo-instruction

2016-10-04 Thread Bob Weinand
> Am 4.10.2016 um 16:33 schrieb Pascal KISSIAN : > >> -Message d'origine- >> De : Lauri Kenttä [mailto:lauri.ken...@gmail.com] >> Envoyé : mardi 4 octobre 2016 16:21 >> À : Pascal KISSIAN >> Cc : internals@lists.php.net >> Objet

Re: [PHP-DEV] Feature Request: inline pseudo-instruction

2016-10-04 Thread Thomas Hruska
On 10/4/2016 7:33 AM, Pascal KISSIAN wrote: -Message d'origine- De : Lauri Kenttä [mailto:lauri.ken...@gmail.com] Envoyé : mardi 4 octobre 2016 16:21 À : Pascal KISSIAN Cc : internals@lists.php.net Objet : Re: [PHP-DEV] Feature Request: inline pseudo-instruction On 2016-10-04

Re: [PHP-DEV] Feature Request: inline pseudo-instruction

2016-10-04 Thread Thomas Hruska
On 10/4/2016 4:33 AM, Pascal KISSIAN wrote: Hi everybody, I have an application where a small file is included at multiple places. So far so good. The problem is that this include consists in a small piece of code which is inside a multi-level loop. The include is done about an average of 100

RE: [PHP-DEV] Feature Request: inline pseudo-instruction

2016-10-04 Thread Pascal KISSIAN
>-Message d'origine- >De : Lauri Kenttä [mailto:lauri.ken...@gmail.com] >Envoyé : mardi 4 octobre 2016 16:21 >À : Pascal KISSIAN >Cc : internals@lists.php.net >Objet : Re: [PHP-DEV] Feature Request: inline pseudo-instruction > >On 2016-10-04 14:33, Pasca

Re: [PHP-DEV] Feature Request: inline pseudo-instruction

2016-10-04 Thread Lauri Kenttä
On 2016-10-04 14:33, Pascal KISSIAN wrote: I have an application where a small file is included at multiple places. The include is done about an average of 100.000 times . I'm just wondering if you have ever heard of functions? You really should write a function, include it only once, and th

[PHP-DEV] Feature Request: inline pseudo-instruction

2016-10-04 Thread Pascal KISSIAN
Hi everybody, I have an application where a small file is included at multiple places. So far so good. The problem is that this include consists in a small piece of code which is inside a multi-level loop. The include is done about an average of 100.000 times . When I manually rep