Powiel możliwe:
how to force preg_match preg_match_all to return only named parts of regex expressionJak mogę uzyskać tylko nazwane przechwytywania z preg_match?
Mam ten fragment:
$string = 'Hello, my name is Linda. I like Pepsi.';
$regex = '/name is (?<name>[^.]+)\..*?like (?<likes>[^.]+)/';
preg_match($regex, $string, $matches);
print_r($matches);
Drukuje:
Array
(
[0] => name is Linda. I like Pepsi
[name] => Linda
[1] => Linda
[likes] => Pepsi
[2] => Pepsi
)
Jak mogę ge t go do powrotu po prostu:
Array
(
[name] => Linda
[likes] => Pepsi
)
bez uciekania się do filtrowania tablicy wynikowej:
foreach ($matches as $key => $value) {
if (is_int($key))
unset($matches[$key]);
}
'foreach ($ mecze jak k $ => $ v) { if (is_int ($ k)) { unset ($ matches [$ k]); } } ', aby usunąć klawisze numeryczne i zachować tylko te nazwane. – Radu