20 cze 2008

Wydobycie id_cecha przy użyciu preg_match

$subject = "cecha_id_123";
$pattern = '/^cecha_id_(.*)/';
preg_match($pattern, $subject, $matches);
print_r($matches);

Array
(
[0] => cecha_id_123
[1] => 123
)