mirror of
				https://github.com/smarty-php/smarty.git
				synced 2025-11-04 14:21:36 +01:00 
			
		
		
		
	
		
			
				
	
	
		
			90 lines
		
	
	
		
			2.0 KiB
		
	
	
	
		
			XML
		
	
	
	
	
	
			
		
		
	
	
			90 lines
		
	
	
		
			2.0 KiB
		
	
	
	
		
			XML
		
	
	
	
	
	
<?xml version="1.0" encoding="iso-8859-1"?>
 | 
						|
<!-- $Revision$ -->
 | 
						|
 <sect1 id="language.modifier.count.characters">
 | 
						|
  <title>count_characters</title>
 | 
						|
  <informaltable frame="all">
 | 
						|
   <tgroup cols="5">
 | 
						|
    <colspec colname="param" align="center" />
 | 
						|
    <colspec colname="type" align="center" />
 | 
						|
    <colspec colname="required" align="center" />
 | 
						|
    <colspec colname="default" align="center" />
 | 
						|
    <colspec colname="desc" />
 | 
						|
    <thead>
 | 
						|
     <row>
 | 
						|
      <entry>Parameter Position</entry>
 | 
						|
      <entry>Type</entry>
 | 
						|
      <entry>Required</entry>
 | 
						|
      <entry>Default</entry>
 | 
						|
      <entry>Description</entry>
 | 
						|
     </row>
 | 
						|
    </thead>
 | 
						|
    <tbody>
 | 
						|
     <row>
 | 
						|
      <entry>1</entry>
 | 
						|
      <entry>boolean</entry>
 | 
						|
      <entry>No</entry>
 | 
						|
      <entry>false</entry>
 | 
						|
      <entry>This determines whether or not to include
 | 
						|
      whitespace characters in the count.</entry>
 | 
						|
     </row>
 | 
						|
    </tbody>
 | 
						|
   </tgroup>
 | 
						|
  </informaltable>
 | 
						|
  <para>
 | 
						|
   This is used to count the number of characters in a variable.
 | 
						|
  </para>
 | 
						|
  <example>
 | 
						|
   <title>count_characters</title>
 | 
						|
   <programlisting role="php">
 | 
						|
<![CDATA[
 | 
						|
<?php
 | 
						|
 | 
						|
$smarty = new Smarty;
 | 
						|
$smarty->assign('articleTitle', 'Cold Wave Linked to Temperatures.');
 | 
						|
$smarty->display('index.tpl');
 | 
						|
 | 
						|
?>
 | 
						|
]]>
 | 
						|
   </programlisting>
 | 
						|
   <para>
 | 
						|
    Where index.tpl is:
 | 
						|
   </para>
 | 
						|
   <programlisting>
 | 
						|
<![CDATA[
 | 
						|
{$articleTitle}
 | 
						|
{$articleTitle|count_characters}
 | 
						|
{$articleTitle|count_characters:true}
 | 
						|
]]>
 | 
						|
   </programlisting>
 | 
						|
   <para>
 | 
						|
    This will output:
 | 
						|
   </para>
 | 
						|
   <screen>
 | 
						|
<![CDATA[
 | 
						|
Cold Wave Linked to Temperatures.
 | 
						|
29
 | 
						|
33
 | 
						|
]]>
 | 
						|
   </screen>
 | 
						|
  </example>
 | 
						|
</sect1>
 | 
						|
<!-- Keep this comment at the end of the file
 | 
						|
Local variables:
 | 
						|
mode: sgml
 | 
						|
sgml-omittag:t
 | 
						|
sgml-shorttag:t
 | 
						|
sgml-minimize-attributes:nil
 | 
						|
sgml-always-quote-attributes:t
 | 
						|
sgml-indent-step:1
 | 
						|
sgml-indent-data:t
 | 
						|
indent-tabs-mode:nil
 | 
						|
sgml-parent-document:nil
 | 
						|
sgml-default-dtd-file:"../../../../manual.ced"
 | 
						|
sgml-exposed-tags:nil
 | 
						|
sgml-local-catalogs:nil
 | 
						|
sgml-local-ecat-files:nil
 | 
						|
End:
 | 
						|
vim600: syn=xml fen fdm=syntax fdl=2 si
 | 
						|
vim: et tw=78 syn=sgml
 | 
						|
vi: ts=1 sw=1
 | 
						|
--> |