CakeFest 2024: The Official CakePHP Conference

RegexIterator::getMode

(PHP 5 >= 5.2.0, PHP 7, PHP 8)

RegexIterator::getMode操作モードを返す

説明

public RegexIterator::getMode(): int

操作モードを返します。操作モードの一覧は RegexIterator::setMode() を参照ください。

パラメータ

この関数にはパラメータはありません。

戻り値

操作モードを返します。

例1 RegexIterator::getMode() の例

<?php

$test
= array ('str1' => 'test 1', 'teststr2' => 'another test', 'str3' => 'test 123');

$arrayIterator = new ArrayIterator($test);
$regexIterator = new RegexIterator($arrayIterator, '/^[a-z]+/', RegexIterator::GET_MATCH);

$mode = $regexIterator->getMode();
if (
$mode & RegexIterator::GET_MATCH) {
echo
'Getting the match for each item.';
} elseif (
$mode & RegexIterator::ALL_MATCHES) {
echo
'Getting all matches for each item.';
} elseif (
$mode & RegexIterator::MATCH) {
echo
'Getting each item if it matches.';
} elseif (
$mode & RegexIterator::SPLIT) {
echo
'Getting split pieces of each.';
}
?>

上の例の出力は以下となります。

Getting the match for each item.

参考

add a note

User Contributed Notes

There are no user contributed notes for this page.
To Top