<?php $class = array ( array( "s1" => 6, "s2" => 37 ), array ( "s1" => 8, "s2" => 11 ), array( "s1" => 11, "s2" => 48 ) ); $id = 11; foreach ($class as $key => $value) { if(!in_array($id, $value)){ unset($class[$key]); } } var_dump($class);
You have javascript disabled. You will not be able to edit any code.