Хранилища Subversion ant

Редакция

Редакция 2 | Только различия | Не учитывать пробелы | Содержимое файла | Авторство | Последнее изменение | Открыть журнал | RSS

Редакция 2 Редакция 3
1
<?php
1
<?php
2
/**
2
/**
3
 * Smarty plugin
3
 * Smarty plugin
4
 * @package Smarty
4
 * @package Smarty
5
 * @subpackage plugins
5
 * @subpackage plugins
6
 */
6
 */
7
7
8
8
9
/**
9
/**
10
 * Smarty count_sentences modifier plugin
10
 * Smarty count_sentences modifier plugin
11
 *
11
 *
12
 * Type:     modifier<br>
12
 * Type:     modifier<br>
13
 * Name:     count_sentences
13
 * Name:     count_sentences
14
 * Purpose:  count the number of sentences in a text
14
 * Purpose:  count the number of sentences in a text
15
 * @link http://smarty.php.net/manual/en/language.modifier.count.paragraphs.php
15
 * @link http://smarty.php.net/manual/en/language.modifier.count.paragraphs.php
16
 *          count_sentences (Smarty online manual)
16
 *          count_sentences (Smarty online manual)
17
 * @author   Monte Ohrt <monte at ohrt dot com>
17
 * @author   Monte Ohrt <monte at ohrt dot com>
18
 * @param string
18
 * @param string
19
 * @return integer
19
 * @return integer
20
 */
20
 */
21
function smarty_modifier_count_sentences($string)
21
function smarty_modifier_count_sentences($string)
22
{
22
{
23
    // find periods with a word before but not after.
23
    // find periods with a word before but not after.
24
    return preg_match_all('/[^\s]\.(?!\w)/', $string, $match);
24
    return preg_match_all('/[^\s]\.(?!\w)/', $string, $match);
25
}
25
}
26
26
27
/* vim: set expandtab: */
27
/* vim: set expandtab: */
28
28
29
?>
29
?>
30
 
30