PHP 8.4.24 Released!

Voting

: three minus one?
(Example: nine)

The Note You're Voting On

eblejr AT phrebh DOT com
18 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