Re: [PHP] Silly question - include vs. eval

2009-03-12 Thread Robert Cummings
On Wed, 2009-03-11 at 19:50 -0500, Shawn McKenzie wrote: > Robert Cummings wrote: > > On Wed, 2009-03-11 at 16:16 -0500, Shawn McKenzie wrote: > >> Shawn McKenzie wrote: > >>> Robert Cummings wrote: > On Wed, 2009-03-11 at 13:20 -0500, Shawn McKenzie wrote: > > Robert Cummings wrote: > >>>

[PHP] PHP 5.2.9 - 5.2.9-1 and curl

2009-03-12 Thread Niki
Hi all, I'm using PHP 5.2.9 on a Windows dedicated server. Could you kindly confirm me that I have to update to PHP 5.2.9-1 (http://www.php.net/archive/2009.php#id2009-03-10-1) only if I have "curl" extension enabled (extension=php_curl.dll in php.ini) ? If I run a phpinfo() on my webserver,

[PHP] FW: built-in objects APC or serializatio n‏

2009-03-12 Thread Andrea Giammarchi
... nobody a clue? ... Hi everybody, I am a Certified Zend Engineer with almost 10 years of PHP development experience but for some reason I've never asked question to this ML. As subject says, I would like to know if there a

Re: [PHP] Re: Include File Errors with Comments

2009-03-12 Thread Andrew Ballard
On Wed, Mar 11, 2009 at 7:51 PM, Patrick Moloney wrote: > OK, I think I've got the problem. I had to go back further than where the > problem appeared to be. The 1st error was the comment code on the div line > before the menu is Included. It had the "--" in the comment. > Oddly, it interacts with

Re: [PHP] Re: Working directory of PHP pages?

2009-03-12 Thread haliphax
On Thu, Mar 12, 2009 at 12:47 AM, Clancy wrote: > On Wed, 11 Mar 2009 13:03:19 -0500, halip...@gmail.com (haliphax) wrote: > >>On Wed, Mar 11, 2009 at 12:44 PM, Shawn McKenzie wrote: >>> Clancy wrote: It is my understanding that when you open a page the PHP server looks for index.php i

Re: [PHP] ltrim behavior.

2009-03-12 Thread tedd
At 3:38 PM -0400 3/11/09, Robert Cummings wrote: Just because I'm a nice guy... :) Yeah, me too -- here are three routines I use for cutting the right, left and middle portions of strings. These were keyword routines I used in FutureBasic -- they seemed to make sense to me so I carried them

Re: [PHP] ltrim behavior.

2009-03-12 Thread tedd
At 5:03 PM -0400 3/11/09, Peter van der Does wrote: Thanks and I apologize for the "stupid" question. The only "stupid question" is the one that's not asked. The ltrim() caught me the first time I used it too. I was thinking it was "trim this string off the left" when it was "trim these cha

Re: [PHP] ltrim behavior.

2009-03-12 Thread Steve Holmes
On Thu, Mar 12, 2009 at 9:47 AM, tedd wrote: > At 3:38 PM -0400 3/11/09, Robert Cummings wrote: > >> >> Just because I'm a nice guy... :) >> > > Yeah, me too -- here are three routines I use for cutting the right, left > and middle portions of strings. These were keyword routines I used in > Futu

Re: [PHP] PHP 5.2.9 - 5.2.9-1 and curl

2009-03-12 Thread Thijs Lensselink
Niki wrote: > Hi all, > > I'm using PHP 5.2.9 on a Windows dedicated server. Could you kindly > confirm me that I have to update to PHP 5.2.9-1 > (http://www.php.net/archive/2009.php#id2009-03-10-1) only if I have > "curl" extension enabled (extension=php_curl.dll in php.ini) ? Well nobody forces

Re: [PHP] PHP 5.2.9 - 5.2.9-1 and curl

2009-03-12 Thread Jochem Maas
Niki schreef: > Hi all, > > I'm using PHP 5.2.9 on a Windows dedicated server. Could you kindly > confirm me that I have to update to PHP 5.2.9-1 > (http://www.php.net/archive/2009.php#id2009-03-10-1) only if I have > "curl" extension enabled (extension=php_curl.dll in php.ini) ? > > If I run a p

Re: [PHP] PHP 5.2.9 - 5.2.9-1 and curl

2009-03-12 Thread Niki
Thijs Lensselink ha scritto: Niki wrote: Hi all, I'm using PHP 5.2.9 on a Windows dedicated server. Could you kindly confirm me that I have to update to PHP 5.2.9-1 (http://www.php.net/archive/2009.php#id2009-03-10-1) only if I have "curl" extension enabled (extension=php_curl.dll in php.ini) ?

Re: [PHP] Re: Include File Errors with Comments

2009-03-12 Thread Patrick Moloney
Andrew Ballard wrote: I do use PHP comments (probably not as much as I should), but I don't usually use HTML comments. This is partly (largely?) because HTML comments get passed on to the client which wastes (albeit usually a small amount of) extra space and bandwidth for each request, and they

Re: [PHP] PHP 5.2.9 - 5.2.9-1 and curl

2009-03-12 Thread Jochem Maas
Niki schreef: > Thijs Lensselink ha scritto: >> Niki wrote: >>> Hi all, >>> >>> I'm using PHP 5.2.9 on a Windows dedicated server. Could you kindly >>> confirm me that I have to update to PHP 5.2.9-1 >>> (http://www.php.net/archive/2009.php#id2009-03-10-1) only if I have >>> "curl" extension enable

[PHP] Dynamic Date List Newbie Problem

2009-03-12 Thread revDAVE
Hi folks, My goal was to create a dynamic date related list as follows: - take the current date (3/12/2009) - create a new date from it which would be the *1st* of that month - (3/1/2009) - then create a list that shows the current and previous 11 months like: 03/1/09 02/1/09 01/1/09 12/1/08 11

Re: [PHP] Dynamic Date List Newbie Problem

2009-03-12 Thread TG
$currmonth = date("m"); for ($i = 1; $i <= 11; $i++) { $m[$i] = date("m/d/y"), mktime(0,0,0,$currmonth-$i, 1, 2009)); } Something like that. mktime() is remarkably flexible. If you start on month 3 and you subtract 5, you get month = -2. So that would be -2/1/2009, which mktime will

Re: [PHP] PHP 5.2.9 - 5.2.9-1 and curl

2009-03-12 Thread Niki
Jochem Maas ha scritto: essentially, yes. note that if someone can upload a script and run it, a bug in curl in the least of your worries. you have already been owned. Yes, obviously. :D I agree with you. :) the curl issue is more pertinent to situations where one is using curl with CURLOPT_

Re: [PHP] Dynamic Date List Newbie Problem

2009-03-12 Thread Andrew Ballard
On Thu, Mar 12, 2009 at 12:24 PM, revDAVE wrote: > Hi folks, > > My goal was to create a dynamic date related list as follows: > > - take the current date (3/12/2009) > - create a new date from it which would be the *1st* of that month - > (3/1/2009) > > - then create a list that shows the current

Re: [PHP] ltrim behavior.

2009-03-12 Thread tedd
At 10:18 AM -0400 3/12/09, Steve Holmes wrote: On Thu, Mar 12, 2009 at 9:47 AM, tedd <tedd.sperl...@gmail.com> wrote: Tedd, Just because I'm a nit-picker, your comments are wrong. Exchange the right and left comments and it's right. Steve. Steve: No, my routi

Re: [PHP] PHP 5.2.9 - 5.2.9-1 and curl

2009-03-12 Thread Andrew Ballard
On Thu, Mar 12, 2009 at 12:39 PM, Niki wrote: > Jochem Maas ha scritto: >> >> essentially, yes. note that if someone can upload a script and run it, a >> bug in curl in the least of your worries. you have already been owned. > > Yes, obviously. :D I agree with you. :) > >> >> the curl issue is mor

Re: [PHP] ltrim behavior.

2009-03-12 Thread Robert Cummings
On Thu, 2009-03-12 at 12:46 -0400, tedd wrote: > At 10:18 AM -0400 3/12/09, Steve Holmes wrote: > >On Thu, Mar 12, 2009 at 9:47 AM, tedd > ><tedd.sperl...@gmail.com> wrote: > > > > > >Tedd, > >Just because I'm a nit-picker, your comments are wrong. > >Exchange the r

[PHP] Copy Non-Text file from One Server to Another Issues

2009-03-12 Thread Alice Wei
Hi, I have a simple code as shown in the following: http://remote_server/copy/play.txt";; $file2 = "http://remote_server/copy/test.jpg";; $file3 = "http://remote_server/copy/sample.pdf";; //directory to copy to (must be CHMOD to 777) $copydir = "."; $data = file_get_contents($file); $file2

Re: [PHP] Copy Non-Text file from One Server to Another Issues

2009-03-12 Thread Daniel Brown
On Thu, Mar 12, 2009 at 14:51, Alice Wei wrote: > > Warning: file_get_contents() expects parameter 1 to be string, resource > given in C:\Inetpub\wwwroot\test\hello.php on line > 18 Freshman mistake. $file2 = fopen($copydir . "/play.txt", "w+"); You're trying to read a data stream i

[PHP] Re: Copy Non-Text file from One Server to Another Issues

2009-03-12 Thread Shawn McKenzie
Alice Wei wrote: > Hi, > >I have a simple code as shown in the following: > > > //original file > $file = "http://remote_server/copy/play.txt";; > $file2 = "http://remote_server/copy/test.jpg";; > $file3 = "http://remote_server/copy/sample.pdf";; > > //directory to copy to (must be CHMOD

[PHP] password field validation

2009-03-12 Thread Jason Todd Slack-Moehrle
Hi All, I have an input field with type="password". I am trying to do some error checking to see if the user puts a value in after they submit the form (i.e not left it blank) Here is what I have: on form: Password: size="15"> In PHP error checking: if (empty($_POST[PASSSWORD])) { $GERRO

[PHP] Re: password field validation

2009-03-12 Thread Shawn McKenzie
Jason Todd Slack-Moehrle wrote: > Hi All, > > I have an input field with type="password". > > I am trying to do some error checking to see if the user puts a value in > after they submit the form (i.e not left it blank) > > Here is what I have: > > on form: > Password: > > In PHP error checki

Re: [PHP] password field validation

2009-03-12 Thread Andrew Ballard
On Thu, Mar 12, 2009 at 3:05 PM, Jason Todd Slack-Moehrle wrote: > Hi All, > > I have an input field with type="password". > > I am trying to do some error checking to see if the user puts a value in > after they submit the form (i.e not left it blank) > > Here is what I have: > > on form: > Passw

Re: [PHP] password field validation

2009-03-12 Thread Daniel Brown
On Thu, Mar 12, 2009 at 15:05, Jason Todd Slack-Moehrle wrote: > > if (empty($_POST[PASSSWORD])) > { $GERROR="TRUE";} [snip!] > What am I doing wrong? Spelling. "Password" only has two S's. -- daniel.br...@parasane.net || danbr...@php.net http://www.parasane.net/ || http://www.pilot

Re: [PHP] Dynamic Date List Newbie Problem

2009-03-12 Thread Paul M Foster
Crap, I hit the wrong button and sent this only to the OP... On Thu, Mar 12, 2009 at 09:24:48AM -0700, revDAVE wrote: > Hi folks, > > My goal was to create a dynamic date related list as follows: > > - take the current date (3/12/2009) > - create a new date from it which would be the *1st* of t

Re: [PHP] password field validation

2009-03-12 Thread Afan Pasalic
Andrew Ballard wrote: On Thu, Mar 12, 2009 at 3:05 PM, Jason Todd Slack-Moehrle wrote: Hi All, I have an input field with type="password". I am trying to do some error checking to see if the user puts a value in after they submit the form (i.e not left it blank) Here is what I have: on

Re: [PHP] PHP 5.2.9 - 5.2.9-1 and curl

2009-03-12 Thread Jochem Maas
Andrew Ballard schreef: > On Thu, Mar 12, 2009 at 12:39 PM, Niki wrote: >> Jochem Maas ha scritto: >>> essentially, yes. note that if someone can upload a script and run it, a >>> bug in curl in the least of your worries. you have already been owned. >> Yes, obviously. :D I agree with you. :) >> >

Re: [PHP] password field validation

2009-03-12 Thread Jason Todd Slack-Moehrle
if (empty($_POST[PASSSWORD])) { $GERROR="TRUE";} If that's a direct copy/paste from your actual code, there is an extra S in PASSWORD. Also, you should enclose the array key in quotes: if (empty($_POST['PASSWORD'])) { $GERROR='TRUE'; } It is official I am a DOPE! Thank you, yes, I did not s

Re: [PHP] password field validation

2009-03-12 Thread Jochem Maas
Afan Pasalic schreef: > > > Andrew Ballard wrote: >> On Thu, Mar 12, 2009 at 3:05 PM, Jason Todd Slack-Moehrle >> wrote: >> >>> Hi All, >>> >>> I have an input field with type="password". >>> >>> I am trying to do some error checking to see if the user puts a value in >>> after they submit the

Re: [PHP] password field validation

2009-03-12 Thread haliphax
On Thu, Mar 12, 2009 at 2:39 PM, Jason Todd Slack-Moehrle wrote: >>> >>> if (empty($_POST[PASSSWORD])) >>> { $GERROR="TRUE";} >>> >> >> If that's a direct copy/paste from your actual code, there is an extra >> S in PASSWORD. Also, you should enclose the array key in quotes: >> >> if (empty($_POST[

Re: [PHP] password field validation

2009-03-12 Thread Afan Pasalic
Jochem Maas wrote: Afan Pasalic schreef: Andrew Ballard wrote: On Thu, Mar 12, 2009 at 3:05 PM, Jason Todd Slack-Moehrle wrote: Hi All, I have an input field with type="password". I am trying to do some error checking to see if the user puts a value in after they submit t

Re: [PHP] password field validation

2009-03-12 Thread Andrew Ballard
On Thu, Mar 12, 2009 at 3:39 PM, Jason Todd Slack-Moehrle wrote: >>> >>> if (empty($_POST[PASSSWORD])) >>> { $GERROR="TRUE";} >>> >> >> If that's a direct copy/paste from your actual code, there is an extra >> S in PASSWORD. Also, you should enclose the array key in quotes: >> >> if (empty($_POST[

Re: [PHP] password field validation

2009-03-12 Thread Afan Pasalic
haliphax wrote: On Thu, Mar 12, 2009 at 2:39 PM, Jason Todd Slack-Moehrle wrote: if (empty($_POST[PASSSWORD])) { $GERROR="TRUE";} If that's a direct copy/paste from your actual code, there is an extra S in PASSWORD. Also, you should enclose the array key in quotes: if (empty($_

[PHP] Knowledge Base software - looking for opinions

2009-03-12 Thread mike
http://puresw.com/products/lore/ - paid http://www.knowledgebase-script.com/ - paid http://68kb.com/ - free Free is good. Just needs to be basic, nothing crazy. A Wiki -almost- meets the needs but a) I hate wikis and b) they don't match up 100% -- PHP General Mailing List (http://www.php.net/)

Re: [PHP] password field validation

2009-03-12 Thread Rodrigo Escares
prueba con trim() : $pass=trim($_POST[PASSSWORD]); if (empty($pass)) { $GERROR="TRUE"; } Atte. Rodrigo (09) 7 7996571 On Thu, Mar 12, 2009 at 4:05 PM, Jason Todd Slack-Moehrle < mailingli...@mailnewsrss.com> wrote: > Hi All, > > I have an input field with type="password". > > I am trying to

Re: [PHP] Knowledge Base software - looking for opinions

2009-03-12 Thread haliphax
On Thu, Mar 12, 2009 at 2:55 PM, mike wrote: > http://puresw.com/products/lore/ - paid > http://www.knowledgebase-script.com/ - paid > http://68kb.com/ - free > > Free is good. > > Just needs to be basic, nothing crazy. > > A Wiki -almost- meets the needs but a) I hate wikis and b) they don't > ma

Re: [PHP] Knowledge Base software - looking for opinions

2009-03-12 Thread mike
Yeah, I have.. but it's just another wiki. Does integrate with its own style of bug tracking + svn, but I think an actual KB system would be neat. Especially if it had the capability to have page level security. So I can make KB articles just for admins... On Thu, Mar 12, 2009 at 1:05 PM, halipha

Re: [PHP] password field validation

2009-03-12 Thread Daniel Brown
On Thu, Mar 12, 2009 at 16:04, Rodrigo Escares wrote: > prueba con trim() : > $pass=trim($_POST[PASSSWORD]); > if (empty($pass)) > { >   $GERROR="TRUE"; > } Incorrecto, Rodrigo. Tambien, utilice por favor solamente el ingles en esta lista --- usted puede encontrar la lista de usuario espanola

RE: [PHP] Copy Non-Text file from One Server to Another Issues

2009-03-12 Thread Alice Wei
> Date: Thu, 12 Mar 2009 14:55:52 -0400 > Subject: Re: [PHP] Copy Non-Text file from One Server to Another Issues > From: danbr...@php.net > To: aj...@alumni.iu.edu > CC: php-general@lists.php.net > > On Thu, Mar 12, 2009 at 14:51, Alice Wei wrote: > > > > Warning: file_get_contents() expects

[PHP] Replies to list - Was (Re: [PHP] PHP 5.2.9 - 5.2.9-1 and curl)

2009-03-12 Thread Micah Gersten
Jochem Maas wrote: > > we use Reply-All because hitting Reply doesn't reply to the list but > to the OP ... and discussions should generally stay on the list. This is true unless you're reading the list as a newsgroup. :) -- Micah -- PHP General Mailing List (http://www.php.net/) To unsubscr

Re: [PHP] Knowledge Base software - looking for opinions

2009-03-12 Thread Ashley Sheridan
On Thu, 2009-03-12 at 13:24 -0700, mike wrote: > Yeah, I have.. but it's just another wiki. Does integrate with its own > style of bug tracking + svn, but I think an actual KB system would be > neat. > > Especially if it had the capability to have page level security. So I > can make KB articles j

Re: [PHP] Knowledge Base software - looking for opinions

2009-03-12 Thread mike
that's kind of what i was going with here. a general purpose knowledgebase, and i can organize info hierarchically, and also be searchable, but also have the ability to limit pages to only specific user groups, so i can put in sensitive server details and such only admins can see.. On Thu, Mar 12

Re: [PHP] Knowledge Base software - looking for opinions

2009-03-12 Thread Ashley Sheridan
On Thu, 2009-03-12 at 13:32 -0700, mike wrote: > that's kind of what i was going with here. > > a general purpose knowledgebase, and i can organize info > hierarchically, and also be searchable, but also have the ability to > limit pages to only specific user groups, so i can put in sensitive > se

Re: [PHP] Knowledge Base software - looking for opinions

2009-03-12 Thread haliphax
On Thu, Mar 12, 2009 at 3:32 PM, Ashley Sheridan wrote: > On Thu, 2009-03-12 at 13:24 -0700, mike wrote: >> Yeah, I have.. but it's just another wiki. Does integrate with its own >> style of bug tracking + svn, but I think an actual KB system would be >> neat. >> >> Especially if it had the capabi

Re: [PHP] Knowledge Base software - looking for opinions

2009-03-12 Thread Paul M Foster
On Thu, Mar 12, 2009 at 12:55:54PM -0700, mike wrote: > http://puresw.com/products/lore/ - paid > http://www.knowledgebase-script.com/ - paid > http://68kb.com/ - free > > Free is good. > > Just needs to be basic, nothing crazy. > > A Wiki -almost- meets the needs but a) I hate wikis and b) the

Re: [PHP] Knowledge Base software - looking for opinions

2009-03-12 Thread haliphax
On Thu, Mar 12, 2009 at 3:44 PM, Paul M Foster wrote: > On Thu, Mar 12, 2009 at 12:55:54PM -0700, mike wrote: > >> http://puresw.com/products/lore/ - paid >> http://www.knowledgebase-script.com/ - paid >> http://68kb.com/ - free >> >> Free is good. >> >> Just needs to be basic, nothing crazy. >> >

Re: [PHP] Dynamic Date List Newbie Problem

2009-03-12 Thread revDAVE
On 3/12/2009 9:39 AM, "TG" wrote: > $currmonth = date("m"); > > for ($i = 1; $i <= 11; $i++) { > $m[$i] = date("m/d/y"), mktime(0,0,0,$currmonth-$i, 1, 2009)); > } > > Something like that. mktime() is remarkably flexible. If you start on > month 3 and you subtract 5, you get month = -2.

Re: [PHP] Dynamic Date List Newbie Problem

2009-03-12 Thread revDAVE
On 3/12/2009 12:25 PM, "Paul M Foster" wrote: > Crap, I hit the wrong button and sent this only to the OP... > > On Thu, Mar 12, 2009 at 09:24:48AM -0700, revDAVE wrote: > Thanks for your help Paul - that makes sense! > > Here is working code to do it better: > > // get your starting date

Re: [PHP] Knowledge Base software - looking for opinions

2009-03-12 Thread mike
> http://kbpublisher.sourceforge.net/ - actually is almost perfect i think but > $398 ... -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP] Daily and Weekly Calendar classes

2009-03-12 Thread Jason Todd Slack-Moehrle
Hi All, Does anyone have classes for creating a nice daily calendar? I can put the data in MySQL and be queried, etc. Something that when I add events to the calendar it puts them in the right time slot, etc, etc. I can do the rest of the coding Free is best! -Jason -- PHP General Mail

[PHP] htmlentities is incomplete: does not cover rsquo etc

2009-03-12 Thread Heddon's Gate Hotel
The string function htmlentities seems to have very incomplete coverage of the HTML entities listed in the HTML 4 spec. For example, it does not know about rsquo, lsquo, rdquo, ldquo, etc. This is confirmed by looking at the output of get_html_translation_table, which does not list these enti

Re: [PHP] Daily and Weekly Calendar classes

2009-03-12 Thread Bastien Koert
On Thu, Mar 12, 2009 at 9:05 PM, Jason Todd Slack-Moehrle < mailingli...@mailnewsrss.com> wrote: > Hi All, > > Does anyone have classes for creating a nice daily calendar? I can put the > data in MySQL and be queried, etc. > > Something that when I add events to the calendar it puts them in the ri

Re: [PHP] RE: non-auto increment question

2009-03-12 Thread Jim Lucas
PJ wrote: am resending as this was erroneously ccd to mysql. sorry! Ashley Sheridan wrote: On Thu, 2009-02-26 at 11:27 -0500, PJ wrote: Jerry Schwartz wrote: Being rather new to all this, I understood from the MySql manual that the auto_increment is to b e used immediately after an insertion

[PHP] Re: [PHP-DEV] How expensive are function_exists() calls?

2009-03-12 Thread mike
For templating ideas ... Would bytecode caches (APC) be able to work properly with this: function print_something($args, $output = 'html') { switch($output) { 'iphone': print_something_iphone($args); break; default: print_so

Re: [PHP] Re: [PHP-DEV] How expensive are function_exists() calls?

2009-03-12 Thread Robert Cummings
On Thu, 2009-03-12 at 21:55 -0700, mike wrote: > For templating ideas ... > > Would bytecode caches (APC) be able to work properly with this: > > function print_something($args, $output = 'html') { > switch($output) { >'iphone': >print_something_iphone($args); >

Re: [PHP] Re: [PHP-DEV] How expensive are function_exists() calls?

2009-03-12 Thread mike
On Thu, Mar 12, 2009 at 10:10 PM, Robert Cummings wrote: > I thought we covered a question just like this a week ago... yes this > will not pose a problem for a bytecode cache. Apologies. I saw an example of some OOP thing from internals before it moved to -general. So even using call_user_func

Re: [PHP] Re: [PHP-DEV] How expensive are function_exists() calls?

2009-03-12 Thread Robert Cummings
On Thu, 2009-03-12 at 22:27 -0700, mike wrote: > On Thu, Mar 12, 2009 at 10:10 PM, Robert Cummings > wrote: > > > I thought we covered a question just like this a week ago... yes this > > will not pose a problem for a bytecode cache. > > Apologies. I saw an example of some OOP thing from intern

[PHP] 2 forms, same page, 1st is file upload - works in IE, 'dies' in non-IE browsers

2009-03-12 Thread scubak1w1
Hello, Banging my head against this one... Briefly: - I have two forms on the same page - both forms are: action="" method="post" - both forms gave unique ids - both forms have a hidden file of the type which is checked directly below the form with an "if(array_key_exists('_add_new_module_

[PHP] PHP to create an ERD (sic) on the fly on a web page based on current DB records?

2009-03-12 Thread scubak1w1
Hello, Seeking some advice on how to create an ERD (sic) graphically on the page on the fly when the page is 'called'... That is, I have a backend PostgreSQL database that I am getting data from and putting data into via web page/s and PHP... I would like to be able to show graphically to the

Re: [PHP] Re: [PHP-DEV] How expensive are function_exists() calls?

2009-03-12 Thread mike
On Thu, Mar 12, 2009 at 10:35 PM, Robert Cummings wrote: > The only thing that should defeat the usefulness of a bytecode cache is > the use of eval since the cache has no reference point upon which to > determine if the eval'd code has been previously compiled and has > changed since. I guess I