Answers for "match expression php 8"

PHP
0

php 8 Match Expression

echo match (8.0) {
  '8.0' => "Oh no!",
  8.0 => "This is what I expected",
};
//> This is what I expected
// TurkoSoft
Posted by: Guest on October-18-2021

Code answers related to "match expression php 8"

Browse Popular Code Answers by Language