Guest User

Untitled

a guest
Jul 21st, 2018
78
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.37 KB | None | 0 0
  1. <?php
  2. $properties = array(
  3.     title=>"Title",
  4.     author=>"John",
  5.     published=>1333576782
  6.     );
  7.  
  8. $content="<p>paragraph!</p>"
  9. block($content, $properties);
  10.  
  11. ?>
  12. Would produce:
  13.  
  14. <div class='block'>
  15.     <div class='blockInner'>
  16.         <h1>Title</h1>
  17.         <span class='author'>By: John</span>
  18.         <span class='published'>4/4/2012 at 6:01:52 PM</span>
  19.         <p>Paragraph</p>
  20.     </div>
  21. </div>
Add Comment
Please, Sign In to add comment