<?php declare(strict_types=1); // <-- strict types enabled function test (string $test) { var_dump($test); } $value = 5; // explicit test((string)$value); // implicit test($value);
You have javascript disabled. You will not be able to edit any code.