Keys →
Functions ↓
function after_last ($needle, $haystack) {#-k string parse#- returns the part of $haystack following the last $needle#- after_last ('[', 'sin[90]*cos[180]');#- will return "180]"#-c biohazard dot ge at gmail dot com - https://www.php.net/manual/en/function.substr.php#-d 2/11/21 Added if (!is_bool(strrevpos($haystack, $needle))) return substr($haystack, strrevpos($haystack, $needle)+strlen($needle)); };?>