<?php

$string = "hello/local/flower/stone/...";
$keyword = "local";

echo substr($string, 0, strpos($string, $keyword));

?>
