Advertisement
Guest User

Untitled

a guest
Mar 27th, 2017
44
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.97 KB | None | 0 0
  1. <p>
  2. This message
  3. <span class="class1" title="title1" style="backgorund-color: #ffeea1; color: red; border: 1px solid green;">
  4. is abs. awsome
  5. </span>.
  6. </p>
  7. <p class="class2">
  8. Hello world
  9. </p>
  10.  
  11. $tags = array(
  12. 'p' => array(
  13. '0' => array(
  14. 'text' => 'This message',
  15. 'content' => array(
  16. 'span' => array(
  17. '0' => array(
  18. 'text' => 'is abs. awsome',
  19. 'attributes' => array(
  20. 'class' => 'class1',
  21. 'title' => 'title1'
  22. ),
  23. 'styles' => array(
  24. 'background-color' => '#ffeea1',
  25. 'color' => 'red',
  26. 'border' => '1px solid green',
  27. )
  28. )
  29. )
  30. )
  31. ),
  32. '1' => array(
  33. 'text' => 'Hello world',
  34. 'attributes' => array(
  35. 'class' => 'class2'
  36. )
  37. )
  38. )
  39. );
  40.  
  41. function processHTML($html) {
  42. // some regex processing
  43. // return $associative_array_with_tags_attributes_and_texts
  44. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement