The winding road to PHP 8's match expression
The winding road to PHP 8's match expression
Posted Sep 7, 2020 9:51 UTC (Mon) by hholzgra (subscriber, #11737)Parent article: The winding road to PHP 8's match expression
In slightly related news:
This brings back memories of my never implemented plan to have switch/case with an optional comparison function parameter ... e.g.:
switch($filename, "fnmatch") {
case "*.gif": ...; break;
case "*.txt": ...; break;
default: /* unknown file extension */ break;
}
