PHP 用点等特殊字符替换长字符串。

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了PHP 用点等特殊字符替换长字符串。相关的知识,希望对你有一定的参考价值。

<?php
       //Storing a long string in a variable.
       $string = "It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout.";

       //Display the string in it's original format.
       echo $string;

       //Get the lenght of the string.
       $str_length = strlen($string);       
       echo "<br/>";
       
       //Method to chunk and replace a long string with some characters if you have space issues.
       if($str_length > 25)
       {
           //displayig the replaced string.
           echo substr($string, 0, 25) . "..." . "<br/>";//Replacing the string with Dots.
           echo substr($string, 0, 25) . "***" . "<br/>";//Replacing the string with Asteriks.
           echo substr($string, 0, 25) . ">>>" . "<br/>";//Replacing the string with Angular Brackets.
       }
       ?>

以上是关于PHP 用点等特殊字符替换长字符串。的主要内容,如果未能解决你的问题,请参考以下文章

这里的这些小符号怎么打出来 php 怎么去除 或者 替换掉 这些特殊字符?

php str_replace替换特殊字符

如何完全替换 PHP 中的所有特殊字符而不在结果中留下任何 HTML 实体

php 正则替换特殊字符 和检测是否是中文

PHP 替换 à->a、è->e 等特殊字符

Word查找和替换通配符(完全版)