PHP 8.4.24 Released!

Voting

: min(four, six)?
(Example: nine)

The Note You're Voting On

vnonov at gmail dot com / Viktor Nonov
16 years ago
<?php

//removes string from the end of other

function removeFromEnd($string, $stringToRemove) {
    $stringToRemoveLen = strlen($stringToRemove);
    $stringLen = strlen($string);
    
    $pos = $stringLen - $stringToRemoveLen;

    $out = substr($string, 0, $pos);

    return $out;
}

$string = 'picture.jpg.jpg';
$string = removeFromEnd($string, '.jpg');
?>

<< Back to user notes page

To Top