PHPverse 2025

Voting

: min(zero, five)?
(Example: nine)

The Note You're Voting On

tomlove at gmail dot com
20 years ago
Use as few variable_keys as you can. With large arrays of data, rather make the array multi-dimensional and store under one variable_key than use variable_key as your index. The benefit is especially noticeable when repeated fetching from the end of the array is necessary and updates are less frequent.

<< Back to user notes page

To Top