This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
function build_url($parts) | |
{ | |
$result = ''; | |
if (isset($parts['scheme'])) { | |
$result .= $parts['scheme'] . ':'; | |
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
// A silly prototype chain until I can think of something better | |
class prototype | |
{ | |
private $inherited; | |
private $instance; | |
public function __construct(prototype $prototype = null) |