让 PHP 的 Pspell 返回正确的单词作为变量

发布于 2024-12-01 09:12:41 字数 737 浏览 1 评论 0原文

我有这个脚本:

<?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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

战皆罪 2024-12-08 09:12:41

你完全误解了 PHP 语法。从函数返回字符串不会输出该字符串。您的函数都没有执行任何实际输出(echo、printf 等),因此输出缓冲区没有任何内容可以捕获。同样,此脚本中没有任何内容需要进行缓冲,因此这只是一些无用的代码。

您的拼写检查功能也没有被执行。所以本质上,整个脚本除了回显 _GET 参数之外什么也不做。

<?php

$get = $_GET['q'];

function spellCheckWord($word) {
    $pspell = pspell_new('en','canadian','','utf-8',PSPELL_FAST);
    ...
}

function spellCheck($string) {
    return preg_replace_callback('/\b\w+\b/','spellCheckWord',$string);
}
echo $get, "<br>";
echo spellCheck($word);

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.

<?php

$get = $_GET['q'];

function spellCheckWord($word) {
    $pspell = pspell_new('en','canadian','','utf-8',PSPELL_FAST);
    ...
}

function spellCheck($string) {
    return preg_replace_callback('/\b\w+\b/','spellCheckWord',$string);
}
echo $get, "<br>";
echo spellCheck($word);
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文