1
2
3
<?php
echo "Copyright &copy; 2007" . ((intval(date('Y')) != 2007) ? date(' - Y') : '') . " - All Rights Reserved - Design by scott2010_h";
?>

PHP On Copyright Year

by Mike Cochrane, October 08, 2007 05:13 Star_fullStar_fullStar_fullStar_full

@JWvdV: Close, but you miss...

D8941b726b5851b8ebad73f458e58268 Talk

PHP On Bytes to Readable

by Mike Cochrane, October 08, 2007 05:07

> Make this simpler?

No, I...

D8941b726b5851b8ebad73f458e58268 Talk
1
2
3
4
<?php
function getsize($size) {
    $si = array('B', 'KB', 'MB', 'GB', 'TB', 'PB', 'EB', 'ZB', 'YB');
...

PHP On Bytes to Readable

by Mike Cochrane, October 08, 2007 02:17

Okay, there was a bug in my...

D8941b726b5851b8ebad73f458e58268 Talk
1
2
3
4
function getsize($size) {
    $si = array('B', 'KB', 'MB', 'GB', 'TB', 'PB', 'EB', 'ZB', 'YB');
    $remainder = $i = 0;
...

PHP On Bytes to Readable

by Mike Cochrane, October 08, 2007 01:52

My code does everything wit...

D8941b726b5851b8ebad73f458e58268 Talk
1
2
3
4
function isbn10_to_13($isbn) {
    if (!preg_match('{^([0-9]{9})[0-9xX]$}', $isbn, $matches)) {
        # number is not 10 digits
...

PHP On ISBN10 to ISBN13

by Mike Cochrane, October 03, 2007 17:25

Thanks James. You're right ...

D8941b726b5851b8ebad73f458e58268 Talk
1
2
3
function v1() {
    switch($_GET['id'])
...

PHP On Content Page Include

by Mike Cochrane, October 03, 2007 03:45 Star_fullStar_fullStar_full

I did a quick performance t...

D8941b726b5851b8ebad73f458e58268 Talk