PHP DomDocument alter conditional comments

rodrigobs

New Member
I have this html file with a conditional comment.\[code\]<html xmlns="http://www.w3.org/1999/xhtml"><head><meta http-equiv="Content-Type" content="text/html; charset=utf-8"><link rel="stylesheet" type="text/css" href="http://stackoverflow.com/questions/3879108/css/style.css"><link rel="stylesheet" type="text/css" href="http://stackoverflow.com/questions/3879108/css/elements.css"><title>Page</title><!--[if lte IE 6]><link rel="stylesheet" type="text/css" href="http://stackoverflow.com/questions/3879108/css/ie6.css" /><![endif]--></head>etc...\[/code\]I am using the DomDocument library to modify the \[code\]<link>\[/code\] attributes. Is there any way of getting DomDocument to read and modify the \[code\]<link>\[/code\] element in the conditional comments.
 
Back
Top