PHP 8.5.0 Alpha 4 available for testing

Voting

: five plus three?
(Example: nine)

The Note You're Voting On

suwayan at mail dot ru
13 years ago
<?php
/*When I try to get a some attribute from not validated HTML or XML document, PHP dies with no errors in logs or output:
*/
function is_attribute_value($obj,$type,$value)
{
$_ret=false;
if(
$obj)
{
if(
$val=$obj->getAttribute($type))
{
if(
$val==$value)
{
$_ret=true;
}
}
}
return
$_ret;
}
//And this check helped to me:
function is_attribute_value($obj,$type,$value)
{
$_ret=false;
if(
$obj->attributes)
{
if(
$val=$obj->getAttribute($type))
{
if(
$val==$value)
{
$_ret=true;
}
}
}
return
$_ret;
}
?>

<< Back to user notes page

To Top