PHP DomDocument alter conditional comments
问题 I have this html file with a conditional comment. <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="css/style.css"> <link rel="stylesheet" type="text/css" href="css/elements.css"> <title>Page</title> <!--[if lte IE 6]> <link rel="stylesheet" type="text/css" href="css/ie6.css" /> <![endif]--> </head> etc... I am using the DomDocument library to modify the <link> attributes. Is