You are here

function BaseParser::arrayUnset in XHProf 8

Parameters

$arr:

$k:

Return value

mixed

File

src/XHProfLib/Parser/BaseParser.php, line 294

Class

BaseParser
Class BaseReport

Namespace

Drupal\xhprof\XHProfLib\Parser

Code

function arrayUnset($arr, $k) {
  unset($arr[$k]);
  return $arr;
}