Skip to content

Instantly share code, notes, and snippets.

@derduskenga
Created July 27, 2021 13:20
Show Gist options
  • Save derduskenga/8fbb0b0d4ecfb02190c658401932b4f3 to your computer and use it in GitHub Desktop.
Save derduskenga/8fbb0b0d4ecfb02190c658401932b4f3 to your computer and use it in GitHub Desktop.
<?php
public function goToMainMenu($text){
$explodedText = explode("*",$text);
while(array_search(Util::$GO_TO_MAIN_MENU, $explodedText) != false){
$firstIndex = array_search(Util::$GO_TO_MAIN_MENU, $explodedText);
$explodedText = array_slice($explodedText, $firstIndex + 1);
}
return join("*",$explodedText);
}
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment