1
Ich möchte die News ID von URL mit PHP erhalten preg_match_all;preg_match_all ID der URL mit Worten
$pattern = '%^(http://xxxxx/t)([0-9].?)+^(-)+(:[0-9]+)?(/.*)?$%i';
$m = preg_match_all($pattern,$uu,$matches);
print_r ($matches);
Beispiel-URL-Formate:
http://www.xxxx.com/t1134133-0
http://www.xxxx.com/t1134133-news-news-worlds
http://www.xxxx.com/t1134133-mi%20&ffjfj
ich brauchen 1134133 nur würde
Array ([0] = > -0 [1] => 0) –
update, gut, funktioniert –
wie mache ich das selbe mit meinem sql select? –