Advertisement
Guest User

Modifiche su AmigaPage

a guest
Jul 31st, 2014
50
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 0.58 KB | None | 0 0
  1. .resized {
  2.   max-width: 800px;
  3.   width: expression(this.width > 800 ? 800: true);
  4.   height: auto;
  5. }
  6.  
  7. <img class="resized" src="http://www.example.org/pictures.png" alt="Immagine">
  8.  
  9. con notepad++
  10.  
  11. cerca in tutti file:
  12.  
  13. <img src="(.*?)" alt="(.*?)">
  14.  
  15. sostituisci in tutti i file:
  16.  
  17. <img class="resized" src="\1" alt="\2">
  18.  
  19. Metti il flag su trova espressione regolare...
  20.  
  21. poi vai nella regex che cattura tutte le immagini e aggiungi la classe "resized"...
  22.  
  23. così:
  24.  
  25. $body = preg_replace("/\[img\](.+?)\[\/img\]/i", '<img class="resized" src="$1" alt="Immagine">', $body);
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement