0

その方法を示すドキュメントが見つかりません。Web サイトの検索結果に投稿の説明の一部を動的に表示しています。

例:

<?php
$extract = "Include all the information someone would need to answer your question.";
$search = "format";
$num = stripos($extract,$search);

$to_show = substr($extract,$num, 17);

echo $to_show;
?>

結果:

formation someone

「編成」ではなく「情報」を見せられるようにしたい。なにか提案を?

4

1 に答える 1

0

実際、正規表現は特定の問題に対してうまく機能します。\w*format\w*を使用して検索preg_match_all:

$extract = "Include all the information someone would need to answer your question.";
preg_match_all("/\w*format\w*/", $extract, $matches);
print_r($matches[0]);

これは以下を出力します:

Array
(
    [0] => information
)
于 2022-01-25T03:14:53.350 に答える