fork download
  1. <?php
  2.  
  3. class articleClass {
  4.  
  5. private $author;
  6. private $title;
  7.  
  8. function __construct($author, $title) {
  9. $this->author = $author;
  10. $this->title = $title;
  11. }
  12.  
  13. function author() {
  14. return $this->author;
  15. }
  16.  
  17. function title() {
  18. return $this->title;
  19. }
  20. }
  21.  
  22. class pageClass {
  23.  
  24. private $name;
  25. private $author;
  26. private $articles;
  27.  
  28. function __construct($name, $author, array $articles) {
  29. $this->name = $name;
  30. $this->author = $author;
  31. $this->articles = $articles;
  32. }
  33.  
  34. function author() {
  35. return $this->author;
  36. }
  37.  
  38. function children() {
  39. return $this->articles;
  40. }
  41. }
  42.  
  43. function page($name) {
  44.  
  45. if ($name == 'magazine') {
  46.  
  47. $articles = array(
  48. new articleClass('John', 'Technology News'),
  49. new articleClass('Joe', 'Industry News'),
  50. new articleClass('Joe', 'More Industry News'),
  51. new articleClass('Jane', 'Fashion News'),
  52. );
  53.  
  54. return new pageClass('magazine', 'Joe', $articles);
  55.  
  56. } else {
  57.  
  58. throw new Exception('Page not found');
  59.  
  60. }
  61.  
  62. }
  63.  
  64.  
  65.  
  66. ?>
  67. <div id="automatic_list_of_articles">
  68.  
  69. <?php $page = page('magazine'); ?>
  70.  
  71. <?php foreach($page->children() as $article): ?>
  72.  
  73. <?php if($article->author() == $page->author()): ?>
  74. <p><?php echo $article->title() ?></p>
  75. <?php endif ?>
  76.  
  77. <?php endforeach ?>
  78.  
  79. </div>
Success #stdin #stdout 0.01s 20568KB
stdin
Standard input is empty
stdout
<div id="automatic_list_of_articles">

    
    
        
    
                    <p>Industry News</p>
        
    
                    <p>More Industry News</p>
        
    
        
    
</div>