function chaining for PHP 7
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 declare(strict_types=1); | |
require_once "✨.🐘"; | |
✨($_)->strlen("foo")->var_dump($_); |
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 declare(strict_types=1); | |
function ✨(&$_) { | |
return new class($_) { | |
private $_; | |
public function __construct(&$_) { | |
$this->_ = &$_; | |
} | |
public function __call(string $name, array $args): self { | |
$this->_ = $name(...$args); | |
return $this; | |
} | |
}; | |
} |
What's the perf impact versus nested calls?
<?php declare(strict_types=1);
function ✨($_) {
return new class($_) {
public $_;
public function __construct(&$_) {
$this->_ = &$_;
}
public function __call(string $name, array $args): self {
$this->_ = $name($this->_, ...$args);
return $this;
}
};
}
$a = 'asd';
echo ✨($a)
->md5()
->strtoupper()
->_;
Awesome
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
…wait, wouldn't even need a method, if
_
was exposed as a public property…