|
Caching output in PHP can
Alternating row colors is a
Brief introduction into using
The purpose of this tutorial
reduce server load and speed
very good way to make big
PHP's overload extension to
is to talk about two
up your site. This tutorial
tables more ergonomic and
overload property access and
seperate concepts; profiling
explains how to alter your
esthetic. Script and
method calls within a class.
and object oriented
site to save your server
explanation here. Also
programming (OOP). In this
from processing scripts and
explains the modulus
tutorial we'll create a
querying databases more than
operator.
simple class to allow you to
is needed.
create one or more timers.
You can then use these
timers to show you how long
a script or function takes
to run, which can help you
determine what portions of
your script are eating up
the most processing time.
This is sometimes referred
to as profiling. You can
also use timer objects to
provide generic timer
display in your scripts.
Date: Jun, 10 2004 Date: Jun, 01 2004 Date: Jan, 29 2004 Date: Jan, 03 2004 |
|
If you want to have more
Anyone that has to do a large
This from IBM developerWorks,
Templates provide a simple
control over your scripts,
sum of unusual data
targets the PHP developer
means to seperate server
the output buffering
manipulation will always
who already understands PHP,
side code from client side
functions are the way to go.
choose to use regular
but either wants to write
code in our scripts. This
Anything from error handling
expressions ('regex') over
more efficient PHP code or
article looks at when
to multiple header()
native functions because of
wants to improve the
template systems are useful,
commands in a single
one thing: power. In PHP the
performance of existing PHP
their shortcomings and why
document. Not only does
'ereg_' functions are what
applications. Requires
template engines are a bad
output buffering offer a
utilize ERE POSIX, and the
registration to read the
idea.
powerful API for handling
'preg_' functions utilize
article on the IBM
content, you can also
PCRE. In this 'introduction
developerWorks site.
compress data before its
to regular expressions' the
sent to the browser.
author will assume no prior
knowledge of regex, and will
try to give you the most
thorough explanation of this
powerful tool as possible.
Date: Feb, 27 2003 Date: Feb, 27 2003 Date: Feb, 12 2003 Date: Dec, 04 2002 |