コード例 #1
0
ファイル: HttpParameter.php プロジェクト: core-framework/core
 /**
  * Checks if Key exists in collection
  *
  * @param $key
  * @return bool
  */
 public function has($key)
 {
     $key = str_replace('_', '-', strtolower($key));
     return parent::has($key);
 }