function _openid_meta_httpequiv in Drupal 6
Same name and namespace in other branches
- 7 modules/openid/openid.inc \_openid_meta_httpequiv()
Pull the http-equiv attribute out of an html meta element
1 call to _openid_meta_httpequiv()
- openid_discovery in modules/
openid/ openid.module - Perform discovery on a claimed ID to determine the OpenID provider endpoint.
File
- modules/
openid/ openid.inc, line 210 - OpenID utility functions.
Code
function _openid_meta_httpequiv($equiv, $html) {
preg_match('|<meta\\s+http-equiv=["\']' . $equiv . '["\'](.*)/?>|iUs', $html, $matches);
if (isset($matches[1])) {
preg_match('|content=["\']([^"]+)["\']|iUs', $matches[1], $content);
if (isset($content[1])) {
return $content[1];
}
}
return FALSE;
}