-=[ Mr. Bumblebee ]=-
_Indonesia_

Path : /usr/src/php/ext/standard/tests/strings/
File Upload :
Current File : //usr/src/php/ext/standard/tests/strings/str_word_count1.phpt

--TEST--
str_word_count() and invalid arguments
--FILE--
<?php

var_dump(str_word_count(""));
var_dump(str_word_count("", -1));
var_dump(str_word_count("", -1, $a));
var_dump($a);

echo "Done\n";
?>
--EXPECTF--	
int(0)

Warning: str_word_count(): Invalid format value -1 in %s on line %d
bool(false)

Notice: Undefined variable: a in %s on line %d

Warning: str_word_count(): Invalid format value -1 in %s on line %d
bool(false)

Notice: Undefined variable: a in %s on line %d
NULL
Done

Copyright © 2017 || Recoded By Mr.Bumblebee