Answers for "php limit number of characters in string"

PHP
1

php limit string length

if (strlen($str) > 10)
   $str = substr($str, 0, 7) . '...';
Posted by: Guest on July-17-2020
1

hwo to limit char in php

echo mb_strimwidth("Hello World", 0, 10, "...");
// output: "Hello W..."
Posted by: Guest on April-08-2022

Code answers related to "php limit number of characters in string"

Browse Popular Code Answers by Language