[ Team LiB ] Previous Section Next Section

Q&A

Q1:

Will the include() statement slow down my scripts?

A1:

Because an included file must be opened and parsed by the engine, it will add some overhead. The benefits of reusable code libraries often outweigh the relatively low performance overhead, however.

Q2:

Should I always end script execution if a file cannot be opened for writing or reading?

A2:

You should always allow for this possibility. If your script absolutely depends on the file with which you want to work, you might want to use the die() function, writing an informative error message to the browser. In less critical situations, you still need to allow for the failure, perhaps adding it to a log file.


    [ Team LiB ] Previous Section Next Section