PHP 8.4.24 Released!

Voting

: max(seven, zero)?
(Example: nine)

The Note You're Voting On

greg at apparel dot com
12 years ago
Coming to PHP from classic ASP I am used to the Left() and Right() functions built into ASP so I did a quick PHPversion. hope these help someone else making the switch

function left($str, $length) {
    return substr($str, 0, $length);
}

function right($str, $length) {
    return substr($str, -$length);
}

<< Back to user notes page

To Top