让 PHP 的 Pspell 返回正确的单词作为变量
我有这个脚本:
<?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('/\b\w+\b/','spellCheckWord',$string);
};
$var = ob_get_clean();
echo $get."<br>";
echo $var;
?>
我希望将更正后的字符串放入我的函数中的变量中。
I have this script:
<?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('/\b\w+\b/','spellCheckWord',$string);
};
$var = ob_get_clean();
echo $get."<br>";
echo $var;
?>
I want the corrected string put into a variable from my function.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
你完全误解了 PHP 语法。从函数返回字符串不会输出该字符串。您的函数都没有执行任何实际输出(echo、printf 等),因此输出缓冲区没有任何内容可以捕获。同样,此脚本中没有任何内容需要进行缓冲,因此这只是一些无用的代码。
您的拼写检查功能也没有被执行。所以本质上,整个脚本除了回显 _GET 参数之外什么也不做。
You've got a complete misunderstanding of PHP syntax. returning a string from a function does NOT output the string. None of your functions do any actual output (echo, printf, etc...) so there is NOTHING for the output buffer to capture. AS well, there is nothing in this script which would require buffering to take place, so that's just some useless code.
Your spell check functions are also NOT being executed. So in essence, this entire script does NOTHING except echo out a _GET parameter.