New function to check for key existance

This commit is contained in:
Michael 2019-10-01 21:46:18 +00:00
부모 c37663f1c1
커밋 516fd02812
1개의 변경된 파일22개의 추가작업 그리고 9개의 파일을 삭제

파일 보기

@ -236,16 +236,29 @@ class CurlResult
return $this->header;
}
$lines = explode("\n", $this->header);
foreach ($lines as $line) {
$parts = explode(':', $line);
$headerfield = array_shift($parts);
if (strtolower(trim($field)) == strtolower(trim($headerfield))) {
return trim(implode(':', $parts));
}
}
$field = strtolower(trim($field));
return '';
$headers = self::getHeaderArray();
if (isset($headers[$field])) {
return $headers[$field];
}
}
/**
* Check if a specified header exists
*
* @param string $field header field
*
* @return boolean "true" if header exists
*/
public function headerExists(string $field)
{
$field = strtolower(trim($field));
$headers = self::getHeaderArray();
return array_key_exists($field, $headers);
}
/**