在我們的日常開發工作中,很多時候我們需要對字串進行截取,對於中文,數字等一些字串,我們截取都只需要按照截取多少位就可以了,這裡大家想到的方法應該都會使用substr函數來截取,現在呢我們要做的並不是這樣,而是需要對一段英文單字的截取,並且保證單字不被破壞,今天就給大家來如何實現這樣的功能~
#首先我們下載本次所需的php不破壞單字截取子字串類別:http://www.php.cn/xiazai/leiku/644
一:下載完成之後,解壓縮php類別檔案到本機,接著建立一個新的php檔案!
二:在新的文件中引入文件,呼叫該類:
<?php include_once "jiequzfc.php";//引入类文件 //对字符串的截取处理 echo (snippet("this is not too long to run on the column on the left, perhaps, or perhaps yes, no idea") . "<br>"); echo (snippetwop("this is not too long to run on the column on the left, perhaps, or perhaps yes, no idea") . "<br>"); echo (snippetgreedy("this is not too long to run on the column on the left, perhaps, or perhaps yes, no idea"));
三、運行這個文件,運行結果如下:
以上是php不破壞單字截取子字串的實例詳解的詳細內容。更多資訊請關注PHP中文網其他相關文章!