Skip to content

Instantly share code, notes, and snippets.

@mindplay-dk
Created July 17, 2012 14:24
Show Gist options
  • Save mindplay-dk/3129696 to your computer and use it in GitHub Desktop.
Save mindplay-dk/3129696 to your computer and use it in GitHub Desktop.
Strongly-typed views with PHP
<?php
/**
* Example: strongly typed view with PHP.
*
* Rather than traditional "flat views", why not put your views
* in a dedicated namespace and declare them as classes?
*
* Some advantages:
*
* - IDE support (autocomplete, use of type-hints)
* - Better performance when rendering many times during same request
* - Reflection support (enables meta-programming techniques)
* - Provides a location for dedicated helper-methods for complex view-specific logic
*/
namespace app\views;
class UserProfile
{
public $name;
public $position;
public $photo_url;
public function render() {
?>
<div class="user-profile">
<img src="<?= $this->photo_url ?>" />
<h1><?= htmlspecialchars($this->name) ?></h1>
<h2><?= htmlspecialchars($this->position) ?></h2>
</div>
<?
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment