用substr可以截取字符串,用法如下
成都創(chuàng)新互聯(lián)是一家專注于網(wǎng)站設(shè)計、成都網(wǎng)站建設(shè)與策劃設(shè)計,伊吾網(wǎng)站建設(shè)哪家好?成都創(chuàng)新互聯(lián)做網(wǎng)站,專注于網(wǎng)站建設(shè)十余年,網(wǎng)設(shè)計領(lǐng)域的專業(yè)建站公司;建站業(yè)務(wù)涵蓋:伊吾等地區(qū)。伊吾做網(wǎng)站價格咨詢:18980820575
echo
substr("abcdef",
1,
3);
//
返回
"bcd"
你也可以用css來實現(xiàn):
div
id="news"xxxxx/div
css文件里
div#news{width:5px;position:absolute;left:468px;top:118px;z-index:9;overflow:hidden;text-overflow:ellipsis;white-space:nowrap;}
關(guān)鍵是overflow:hidden;text-overflow:ellipsis;white-space:nowrap;這句,它會把你超出div的部分變成...
strip_tags是PHP自帶的過濾HTML標簽的函數(shù)。
$row=mb_substr(htmlspecialchars(strip_tags($latestnews['content'])),0,26,'UTF-8')
如果想把script/script之間的也去掉,只能正則了:
$str = preg_replace("|script.*.*/script|Usi", '', $str);
你是想抓別人網(wǎng)頁上ajax動態(tài)載入的數(shù)據(jù)吧?
1、要找到它的ajax載入的URL地址
2、利用PHP的file_get_contents($url)函數(shù)讀取那個url地址。
3、對抓取到的內(nèi)容進行分析或正則過濾。