 52bf429a01
			
		
	
	
		52bf429a01
		
	
	
	
	
		
			
			Updated calls to current Smarty API (register_function()/register_modifier()/register_block() -> registerPlugin(); assign_by_ref() -> assignByRef()). Fixed file includes in templates with quotes. Removed SmartyValidate.class.php includes. Still work in progress as some errors still appear!
		
			
				
	
	
		
			38 lines
		
	
	
		
			791 B
		
	
	
	
		
			Markdown
		
	
	
	
	
	
			
		
		
	
	
			38 lines
		
	
	
		
			791 B
		
	
	
	
		
			Markdown
		
	
	
	
	
	
| count\_sentences {#language.modifier.count.sentences}
 | |
| ================
 | |
| 
 | |
| This is used to count the number of sentences in a variable. A sentence
 | |
| being delimited by a dot, question- or exclamation-mark (.?!).
 | |
| 
 | |
| 
 | |
|     <?php
 | |
| 
 | |
|     $smarty->assign('articleTitle',
 | |
|                      'Two Soviet Ships Collide - One Dies.
 | |
|                      Enraged Cow Injures Farmer with Axe.'
 | |
|                      );
 | |
| 
 | |
|     ?>
 | |
| 
 | |
|        
 | |
| 
 | |
| Where template is:
 | |
| 
 | |
| 
 | |
|     {$articleTitle}
 | |
|     {$articleTitle|count_sentences}
 | |
| 
 | |
|        
 | |
| 
 | |
| Will output:
 | |
| 
 | |
| 
 | |
|     Two Soviet Ships Collide - One Dies. Enraged Cow Injures Farmer with Axe.
 | |
|     2
 | |
| 
 | |
|        
 | |
| 
 | |
| See also [`count_characters`](#language.modifier.count.characters),
 | |
| [`count_paragraphs`](#language.modifier.count.paragraphs) and
 | |
| [`count_words`](#language.modifier.count.words).
 |