“długość ciągu limitu php” Kod odpowiedzi

PHP Otrzymuj pierwsze 5 znaków ciągu

$result = substr("Hello How are you", 0, 5); //first 5 chars "Hello"
Friendly Hawk

długość ciągu limitu php

if (strlen($str) > 10)
   $str = substr($str, 0, 7) . '...';
Indian Gooner

Jak sprawdzić długość ciągów PHP

<?php
$name = 'abcdef';
echo strlen($str); // 6

$string = ' ab cd ';
echo strlen($str); // 7
?>
rabbit.sol

Ogranicz długość tekstu w PHP

// limit text length in php and provide 'Read more' link
    function read_more($string)
    {
      // strip tags to avoid breaking any html
        $string = strip_tags($string);
        if (strlen($string) > 35) {

            // truncate string
            $stringCut = substr($string, 0, 35);
            $endPoint = strrpos($stringCut, ' ');

            //if the string doesn't contain any space then it will cut without word basis.
            $string = $endPoint? substr($stringCut, 0, $endPoint) : substr($stringCut, 0);
            $string .= '...';
        }
        return $string;
    }
Codelone

Odpowiedzi podobne do “długość ciągu limitu php”

Pytania podobne do “długość ciągu limitu php”

Więcej pokrewnych odpowiedzi na “długość ciągu limitu php” w PHP

Przeglądaj popularne odpowiedzi na kod według języka

Przeglądaj inne języki kodu