记住用户名密码
extract_attrib是一个提取的图像标签属性的PHP脚本函数,使用正则表达式方法提取。
当你想在HTML的img标签中提取图像数据,这非常有用。
如果你知道如何修改正则表达式,那么同样的功能进行扩展,可以用它来提取任何其他HTML标签上!
只需几行代码,并希望它对大家有用。
要提取img标签属性使用PHP,请按照下列步骤
function extract_attrib($tag) { preg_match_all('/(id|alt|title|src)=("[^"]*")/i', $tag, $matches); $ret = array(); foreach($matches[1] as $i => $v) { $ret[$v] = $matches[2][$i]; } return $ret; } $img_tag = '<img id="logo" title="恒富logo" src="https://www.tra56.com/wp-content/themes/ConcisePro2.1/images/logo.png" alt="恒富" />'; $atts = extract_attrib($img_tag); print_r($atts);
返回结果
Array ( [id] => "logo" [src] => "http://www.devdo.net/wp-content/uploads/2015/06/2015-06-02.jpg" [alt] => "恒富" [title] => "恒富logo" )
目前有 0 条留言 其中:访客:0 条, 博主:0 条