<?php $haystack = "There are now ten more countries in Europe"; $needle = "The Netherlands"; $pos = strrpos($haystack, $needle); var_dump($pos);?>
int(0)
bool(false)