Current File : //opt/RZphp5/includes/test/PHP_Compat/tests/function/str_word_count.phpt
--TEST--
Function -- str_word_count
--SKIPIF--
<?php if (function_exists('str_word_count')) { echo 'skip'; } ?>
--FILE--
<?php
require_once 'PHP/Compat.php';
PHP_Compat::loadFunction('str_word_count');

$str = "Hello friend, you're \r\nsdf\tlooking    3865\t9879 good to\"day, yes \"sir\" you am!";
var_dump(str_word_count($str));
print_r(str_word_count($str, 1));
print_r(str_word_count($str, 2));

$str = 'hello I am repeated repeated';
print_r(str_word_count($str, 2));
?>
--EXPECT--
int(12)
Array
(
    [0] => Hello
    [1] => friend
    [2] => you're
    [3] => sdf
    [4] => looking
    [5] => good
    [6] => to
    [7] => day
    [8] => yes
    [9] => sir
    [10] => you
    [11] => am
)
Array
(
    [0] => Hello
    [6] => friend
    [14] => you're
    [23] => sdf
    [27] => looking
    [48] => good
    [53] => to
    [56] => day
    [61] => yes
    [66] => sir
    [71] => you
    [75] => am
)
Array
(
    [0] => hello
    [6] => I
    [8] => am
    [11] => repeated
    [20] => repeated
)