I want to grab the last dynamic numbers of an external URL.
https://data.aboss.com/v1/agency/1001/101010/events/xxxxxx
$url = https://data.aboss.com/v1/agency/1001/101010/events/;
$value = substr($url, strrpos($url, '/') + 1);
value="<?php echo $value; ?>"
result should be xxxxxx.