php

Keep Your Copyright Current Without Doing Anything

It's a small detail, but implies negligence when overlooked: the standard copyright notice at the bottom of a web site. Google has one. I have one. Even these guys have one. Maintaining this manually poses one of two awkward scenarios:

1) Forgetting to do it altogether

2) World's Worst New Years Party

Rotating 2-dimensional arrays

Consider the following 2-dimensional array:
[a][b][c][d][e]
[f][g][h][i][j]
[k][l][m][n][o]
[p][q][r][s][t]
I've come up with a PHP function to rotate this array by 90, 180, or 270 degrees.