Code-Golf: one line PHP syntax
- by Kendall Hopkins
Explanation
PHP has some holes in its' syntax and occasionally in development a programmer will step in them. This can lead to much frustration as these syntax holes seem to exist for no reason. For example, one can't easily create an array and access an arbitrary element of that array on the same line (func1()[100] is not valid PHP syntax). The workaround for this issue is to use a temporary variable and break the statement into two lines, but sometimes that can lead to very verbose, clunky code.
Challenge
I know of a few of these holes (I'm sure there are more). It is quite hard to even come up with a solution, let alone in a code-golf style. Winner is the person with in the least characters total for all four Syntax Holes.
Rules
Statement must be one line in this form: $output = ...;, where ... doesn't contain any ;'s.
Only use standard library functions (no custom functions allowed)
Statement works identically to the assumed functional of the non-working syntax (even in cases that it fails).
Statement must run without syntax error of any kind with E_STRICT | E_ALL.
Syntax Holes
$output = func_return_array()[$key]; - accessing an arbitrary offset (string or integer) of the returned array of a function
$output = new {$class_base.$class_suffix}(); - arbitrary string concatenation being used to create a new class
$output = {$func_base.$func_suffix}(); - arbitrary string concatenation being called as function
$output = func_return_closure()(); - call a closure being returned from another function