summaryrefslogtreecommitdiff
path: root/ext/standard/tests/strings/similar_text_error.phpt
blob: a5e950133732a59d1aa120da25f675c01295ce56 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
--TEST--
similar_text(), error tests for missing parameters
--CREDITS--
Mats Lindh <mats at lindh.no>
#Testfest php.no
--FILE--
<?php
/* Prototype  : proto int similar_text(string str1, string str2 [, float percent])
* Description: Calculates the similarity between two strings
* Source code: ext/standard/string.c
*/

$extra_arg = 10;
echo "\n-- Testing similar_text() function with more than expected no. of arguments --\n";
similar_text("abc", "def", $percent, $extra_arg);

echo "\n-- Testing similar_text() function with less than expected no. of arguments --\n";
similar_text("abc");
?>
===DONE===
--EXPECTF--
-- Testing similar_text() function with more than expected no. of arguments --

Warning: similar_text() expects at most 3 parameters, 4 given in %s on line %d

-- Testing similar_text() function with less than expected no. of arguments --

Warning: similar_text() expects at least 2 parameters, 1 given in %s on line %d
===DONE===