1--TEST--
2Test ord() function : error conditions
3--FILE--
4<?php
5
6/* Prototype  : int ord  ( string $string  )
7 * Description: Return ASCII value of character
8 * Source code: ext/standard/string.c
9*/
10
11echo "*** Testing ord() : error conditions ***\n";
12
13echo "\n-- Testing ord() function with no arguments --\n";
14var_dump( ord() );
15
16echo "\n-- Testing ord() function with more than expected no. of arguments --\n";
17$extra_arg = 10;
18var_dump( ord(72, $extra_arg) );
19
20?>
21===DONE===
22--EXPECTF--
23*** Testing ord() : error conditions ***
24
25-- Testing ord() function with no arguments --
26
27Warning: ord() expects exactly 1 parameter, 0 given in %s on line %d
28NULL
29
30-- Testing ord() function with more than expected no. of arguments --
31
32Warning: ord() expects exactly 1 parameter, 2 given in %s on line %d
33NULL
34===DONE===
35