PHP 8.5.0 Alpha 1 available for testing

Voting

: nine minus seven?
(Example: nine)

The Note You're Voting On

eblejr AT phrebh DOT com
17 years ago
PHP version of Java's removeCharAt() function:

<?php
function removeCharAt($str, $int){
return
substr_replace($str,"",$int,1);
}
?>

<< Back to user notes page

To Top