$subject = "cecha_id_123";
$pattern = '/^cecha_id_(.*)/';
preg_match($pattern, $subject, $matches);
print_r($matches);
Array
(
[0] => cecha_id_123
[1] => 123
)
20 cze 2008
$subject = "cecha_id_123";
$pattern = '/^cecha_id_(.*)/';
preg_match($pattern, $subject, $matches);
print_r($matches);
Array
(
[0] => cecha_id_123
[1] => 123
)