Auth_OpenID_Parse Auth_OpenID_Parse(
)
|
|
void closeTag(
$tag_name
)
|
|
Parameters:
void findFirstHref(
$link_attrs_list,
$target_rel
)
|
|
Parameters:
|
|
$link_attrs_list: |
|
|
|
$target_rel: |
|
void findLinksRel(
$link_attrs_list,
$target_rel
)
|
|
Parameters:
|
|
$link_attrs_list: |
|
|
|
$target_rel: |
|
void linkHasRel(
$link_attrs,
$target_rel
)
|
|
Parameters:
|
|
$link_attrs: |
|
|
|
$target_rel: |
|
void match(
$regexp,
$text,
&$match
)
|
|
Parameters:
void openTag(
$tag_name
)
|
|
Parameters:
array parseLinkAttrs(
string
$html
)
|
|
Find all link tags in a string representing a HTML document and return a list of their attributes.
This is quite ineffective and may fail with the default pcre.backtrack_limit of 100000 in PHP 5.2, if $html is big. It should rather use stripos (in PHP5) or strpos()+strtoupper() in PHP4 to manage this.
Parameters:
|
string |
$html: |
The text to parse |
API Tags:
| Return: | An array of arrays of attributes, one for each link tag |
void relMatches(
$rel_attr,
$target_rel
)
|
|
Parameters:
void removeQuotes(
$str
)
|
|
Parameters:
void replaceEntities(
$str
)
|
|
Parameters:
void tagMatcher(
$tag_name, [
$close_tags = null]
)
|
|
Returns a regular expression that will match a given tag in an SGML string.
Parameters: