PHP VERSION: 8.2.17

scalar_type_declarations.php

<?php
// type declarations: accepts only float; returns only int

function add(float $afloat $b): int {
    return 
$a $b;
}

try {
    
var_dump(add(1.62.6)); // int(4)
    // Notice: A non well formed numeric value encountered
    
var_dump(add("1 foo""2")); // int(3)
    
add(12); // Fatal error: Argument 1 passed to add() must be of the type float, integer given
} catch (\Error $e) {
    echo 
"Error: {$e->getMessage()}\n";
}

Output


int(4)
Error: add(): Argument #1 ($a) must be of type float, string given, called in /homepages/22/d414837955/htdocs/repo/php7_examples/scalar_type_declarations.php on line 11
SOURCE CODE