<?php
$string = 'PHP is a server side web programming language , PHP is amazing , I love PHP';
$array = array('html','css','javascript','ajax','html5','css3','jquery','PHP');
$words = explode(' ', $string);
if(in_array(end($words), $array)){
echo 'Matched';
}