Hi! Could we please enable some services and cookies to improve your experience and our website?
Online Sandbox for SQL and PHP: Write, Run, Test, and Share SQL Queries and PHP Code
<?php
$string = "Hello, World, It's Me";
$string_len = mb_strlen($string);
if ($string_len > 15) {
echo "Remove vovels: ";
$string = str_replace(["a", "e", "i", "o", "u", "A", "E", "I", "O", "U"], "", $string);
echo $string . PHP_EOL;
};
if ($string_len > 15) {
echo "Cut off: ";
$string = mb_substr($string, -14);
echo $string . PHP_EOL;
};
echo "Result: " . $string;