mirror of
https://github.com/friendica/friendica
synced 2024-11-20 03:03:40 +00:00
New function for fetching associated header array
This commit is contained in:
parent
18198b4aaa
commit
2c730a5c45
1 changed files with 25 additions and 2 deletions
|
@ -230,7 +230,7 @@ class CurlResult
|
|||
*
|
||||
* @return string|bool the Curl headers, "false" when field isn't found
|
||||
*/
|
||||
public function getHeader($field = '')
|
||||
public function getHeader(string $field = '')
|
||||
{
|
||||
if (empty($field)) {
|
||||
return $this->header;
|
||||
|
@ -241,13 +241,36 @@ class CurlResult
|
|||
$parts = explode(':', $line);
|
||||
$headerfield = array_shift($parts);
|
||||
if (strtolower(trim($field)) == strtolower(trim($headerfield))) {
|
||||
return implode(':', $parts);
|
||||
return trim(implode(':', $parts));
|
||||
}
|
||||
}
|
||||
|
||||
return false;
|
||||
}
|
||||
|
||||
/**
|
||||
* Returns the Curl headers as an associated array
|
||||
*
|
||||
* @return array associated header array
|
||||
*/
|
||||
public function getHeaderArray()
|
||||
{
|
||||
$headers = [];
|
||||
|
||||
$lines = explode("\n", $this->header);
|
||||
foreach ($lines as $line) {
|
||||
$parts = explode(':', $line);
|
||||
$headerfield = strtolower(trim(array_shift($parts)));
|
||||
$headerdata = trim(implode(':', $parts));
|
||||
|
||||
if (!empty($headerdata)) {
|
||||
$headers[$headerfield] = $headerdata;
|
||||
}
|
||||
}
|
||||
|
||||
return $headers;
|
||||
}
|
||||
|
||||
/**
|
||||
* @return bool
|
||||
*/
|
||||
|
|
Loading…
Reference in a new issue