<?php function startsWith($haystack, $needle) { // search backwards starting from haystack length characters from the end return $needle === "" || strrpos($haystack, $needle, -strlen($haystack)) !== FALSE; } $session = array( 'current_page_12' => 'abc', 'current_page_qw1' => 'xyz', 'hello' => 'world', 'current_page_23d' => 'mno', 'example' => '112' ); foreach($session as $key => $value) { if(startsWith($key, 'current_page_')) unset($session[$key]); } print_r($session);
You have javascript disabled. You will not be able to edit any code.