PHP 8.5.0 Alpha 4 available for testing

Voting

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

The Note You're Voting On

greg at apparel dot com
11 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