An example:
<?php
function test($x):int {
return $x;
}
try {
test('ss');
}catch(TypeError $e){
echo "Error !";
}
(PHP 7, PHP 8)
TypeError sınıfının yavrulanabildiği durumlar:
Sürüm: | Açıklama |
---|---|
7.1.0 | Katı kodlama kipinde yerleşik bir PHP işlevine geçersiz sayıda bağımsız değişken aktarımında artık TypeError yerine ArgumentCountError yavrulanıyor. |
An example:
<?php
function test($x):int {
return $x;
}
try {
test('ss');
}catch(TypeError $e){
echo "Error !";
}
declare(strict_types=1); //if without this line the result is different
$a = [1,2=>[3,4]];
try{
count($a, COUNT_RECURSIVE, 'toto and blabla');
}catch(TypeError $e){
echo $e->getMessage();
}