Advertisement
Guest User

Untitled

a guest
Apr 20th, 2014
86
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.97 KB | None | 0 0
  1. <!-- Generator: Adobe Illustrator 17.1.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
  2.  
  3. <g id="svgSteps">
  4. </g>
  5. <g id="svgBase">
  6. </g>
  7.  
  8. $fileContent = file_get_contents('my_file');
  9. $fileContent = preg_replace('/<!--(.|s)*?-->/','',$fileContent);
  10. file_put_contents('my_file',$fileContent);
  11.  
  12. preg_replace("/((<g id=".*">)|(<g>))[s]*(</g>)/",'',$fileContent)
  13. preg_replace("/(<!--)[sS]*(-->)/",'',$fileContent)
  14.  
  15. $fileContent = preg_replace('#<!--.*?-->#s', '', $fileContent);
  16. $fileContent = preg_replace('#<(w+)(?:s+[^>]+)?>s*</1>#s', '', $fileContent);
  17.  
  18. <?php
  19. $fileContent = '<!-- Generator: Adobe Illustrator 17.1.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) --> asdlfhjlkasdjhfasdf asd <g id="kjkjkh" /> askdjghf ag <g id="eeee" > </g>ahsdjghakjhglkjdahlg';
  20. $fileContent = preg_replace('/(<!--(.|s)*-->)?([nwW]*)?/','$3',$fileContent);
  21. $fileContent = preg_replace('/<[gG]?s+[Ii][Dd]="?w+"s*(?:/>|>)[st]*(</[gG]>)?/', ' ',$fileContent);
  22. echo($fileContent);
  23. ?>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement