我有这一文字:
<?php
ob_start();
$get = $_GET[ q ];
$pspell = pspell_new( en , canadian , , utf-8 ,PSPELL_FAST);
function spellCheckWord($word) {
global $pspell;
$autocorrect = TRUE;
$word = $word[0];
if (preg_match( /^[A-Z]*$/ ,$word)) return $word;
if (pspell_check($pspell,$word)) return $word;
if ($autocorrect && $suggestions = pspell_suggest($pspell,$word))
return <u> .current($suggestions). </u> ;
return <b> .$word. </b> ;
};
function spellCheck($string) {
return preg_replace_callback( /w+/ , spellCheckWord ,$string);
};
$var = ob_get_clean();
echo $get."<br>";
echo $var;
?>
我希望,经更正的插图将变成我职能的一个变数。