<?php // plug-in 5: word selector
// this is an executable example with additional code supplied
// to obtain just the plug-ins please click on the download link
$words = array("the", "this", "that", "is", "these");
echo piphp_wordselector($text, $words, "u") . "
";echo piphp_wordselector($text, $words, "****");
function piphp_wordselector($text, $matches, $replace)
}return $text;
}?>
1.外掛程式說明:
外掛程式5需要三個引數,乙個引數表示需要處理的文字,乙個陣列代表需要突出顯示的單詞,還有乙個引數代表突出顯示的型別。它們是:
$text 字串引數,表示需要處理的文字
$matches 陣列,表示需要突出顯示的單詞
$replace 字串引數,代表對相應單詞採取的動作。如果它的值是u,b或i,則相應使用下劃線、粗體或斜線突出顯示匹配的單詞,否則用replace引數裡的內容替換相應的單詞。
Sicily 1222 單詞選擇
time limit 1 secs,memory limit 32 mb 我們都知道,學習英語單詞最好的方法就是在相應的句子和語言環境中去學習它。小w最近定下了乙個學習單詞的計畫,他有n個單詞要背,但他想在通過背出一篇文章中的一段來記住這些單詞。假定現在小w手頭有一篇包含m個單詞的文章,現在他想在文...
H5C3 屬性選擇器 兄弟選擇器 偽類選擇器
1 doctype html 2 html lang en 3 head 4 meta charset utf 8 5 title title title 6 style 7.red 10.green 13.blue 1617 屬性選擇器的使用 18 需求 獲取所有擁有class屬性的元素,將字型大...
jQuery選擇器之全選擇器( 選擇器)
在css中,經常會在第一行寫下這樣一段樣式 萬用字元 意味著給所有的元素設定預設的邊距。jquery中我們也可以通過傳遞 選擇器來選中文件頁面中的元素 描述 拋開jquery,如果要獲取文件中所有的元素,通過document.getelementsbytagname 中傳遞 同樣可以獲取到 不難發現...