Get Last N Characters of String using PHP

substr function

<?php

$text = 'HelloWorld!';
$n = 6;
$result = substr($text, -$n);

echo $result.PHP_EOL; // World!

Leave a Comment

Cancel reply

Your email address will not be published.