summaryrefslogtreecommitdiff
path: root/Zend/tests/function_arguments/argument_count_incorrect_internal.phpt
blob: 5d5235888f39ea27f4918ea86815abd4e9e2a98b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
--TEST--
Call internal function with incorrect number of arguments
--FILE--
<?php
try {
    substr("foo");
} catch (ArgumentCountError $e) {
    echo $e->getMessage(), "\n";
}
?>
--EXPECT--
substr() expects at least 2 parameters, 1 given