この記事では、PHP の通常の preg_replace_callback 関数の使い方を主に紹介します。この例では、定期的な置き換えのための preg_replace_callback 関数の関連スキルを分析しています。必要な方は参考にしてください。 。皆さんの参考に共有してください。具体的な実装方法は以下の通りです:
phpの正規表現
は強力です。この例はpreg_replace_callback関数// Define a dummy text, for testing... $Text = "Title: Hello world!\n"; $Text .= "Author: Jonas\n"; $Text .= "This is a example message!\n\n"; $Text .= "Title: Entry 2\n"; $Text .= "Author: Sonja\n"; $Text .= "Hello world, what's up!\n"; // This function will replace specific matches // into a new form function RewriteText($Match){ // Entire matched section: // --> /.../ $EntireSection = $Match[0]; // --> "\nTitle: Hello world!" // Key // --> ([a-z0-9]+) $Key = $Match[1]; // --> "Title" // Value // --> ([^\n\r]+) $Value = $Match[2]; // --> "Hello world!" // Add some bold (<b>) tags to around the key to return '<b>' . $Key . '</b>: ' . $Value; } // The regular expression will extract and pass all "key: value" pairs to // the "RewriteText" function that is definied above $NewText = preg_replace_callback('/[\r\n]([a-z0-9]+): ([^\n\r]+)/i', "RewriteText", $Text); // Print the new modified text print $NewText;の使用法を示しています。
以上がPHPの通常のpreg_replace_callback関数の使用法の詳細内容です。詳細については、PHP 中国語 Web サイトの他の関連記事を参照してください。