What are the difference between PHP 8 Match expression vs PHP 7 switch case?

前端 未结 0 823
遇见更好的自我
遇见更好的自我 2020-12-04 01:03

** PHP 8 Match expression code **

echo match (8.0) {
    \'8.0\' => "Oh no!",
     8.0 => "This is what I expected",
};
//> This          


        
相关标签:
回答
  • 消灭零回复
提交回复
热议问题