Hi! Could we please enable some services and cookies to improve your experience and our website?

PHPize Online / SQLize Online  /  SQLtest Online

A A A
Login    Share code      Blog   FAQ

Online Sandbox for SQL and PHP: Write, Run, Test, and Share SQL Queries and PHP Code

Copy Format Clear

Stuck with a problem? Got Error? Ask AI support!

Copy Clear
Copy Format Clear
<?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;
Copy Clear