Looking for more information on how to do PHP the right way? Check out PHP: The Right Way

WebDevLogs.com:
Which way to get the PHP self script name is the fastest?
Jan 12, 2007 @ 21:36:00

From the WebDevLogs.com blog today, there's some benchmarking results from Mgcci's look at PHP's methods for grabbing some common data - the script's own name. This includes the "magic" call to __FILE__:

The result shows that __FILE__ is the fastest, so use that when you don't have to use any other method to find the script's self. __FILE__ is a built in constant show the location of the running script.

He gives the benchmark output (time measurement) and includes the code that he used to perform the tests.

tagged: sheel script name fastest benchmark results sheel script name fastest benchmark results

Link:

WebDevLogs.com:
Which way to get the PHP self script name is the fastest?
Jan 12, 2007 @ 21:36:00

From the WebDevLogs.com blog today, there's some benchmarking results from Mgcci's look at PHP's methods for grabbing some common data - the script's own name. This includes the "magic" call to __FILE__:

The result shows that __FILE__ is the fastest, so use that when you don't have to use any other method to find the script's self. __FILE__ is a built in constant show the location of the running script.

He gives the benchmark output (time measurement) and includes the code that he used to perform the tests.

tagged: sheel script name fastest benchmark results sheel script name fastest benchmark results

Link:


Trending Topics: