mirror of
				https://github.com/smarty-php/smarty.git
				synced 2025-11-03 22:01:36 +01:00 
			
		
		
		
	
		
			
				
	
	
		
			75 lines
		
	
	
		
			2.3 KiB
		
	
	
	
		
			XML
		
	
	
	
	
	
			
		
		
	
	
			75 lines
		
	
	
		
			2.3 KiB
		
	
	
	
		
			XML
		
	
	
	
	
	
<?xml version="1.0" encoding="iso-8859-1"?>
 | 
						|
<!-- $Revision$ -->
 | 
						|
		<sect1 id="language.function.assign">
 | 
						|
			<title>assign</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>Nome Attributo</entry>
 | 
						|
                        <entry>Tipo</entry>
 | 
						|
                        <entry>Obbligatorio</entry>
 | 
						|
                        <entry>Default</entry>
 | 
						|
                        <entry>Descrizione</entry>
 | 
						|
                    </row>
 | 
						|
                </thead>
 | 
						|
                <tbody>
 | 
						|
                    <row>
 | 
						|
                        <entry>var</entry>
 | 
						|
                        <entry>stringa</entry>
 | 
						|
                        <entry>sì</entry>
 | 
						|
                        <entry><emphasis>nessuno</emphasis></entry>
 | 
						|
                        <entry>Nome della variabile valorizzata</entry>
 | 
						|
                    </row>
 | 
						|
                    <row>
 | 
						|
                        <entry>value</entry>
 | 
						|
                        <entry>stringa</entry>
 | 
						|
                        <entry>sì</entry>
 | 
						|
                        <entry><emphasis>nessuno</emphasis></entry>
 | 
						|
                        <entry>Valore assegnato alla variabile</entry>
 | 
						|
                    </row>
 | 
						|
                </tbody>
 | 
						|
                </tgroup>
 | 
						|
            </informaltable>
 | 
						|
			<para>
 | 
						|
			assign è usato per assegnare valori alle variabili del template
 | 
						|
			durante l'esecuzione dello stesso.
 | 
						|
			</para>
 | 
						|
<example>
 | 
						|
<title>assign</title>
 | 
						|
<programlisting>
 | 
						|
{assign var="name" value="Bob"}
 | 
						|
 | 
						|
The value of $name is {$name}.
 | 
						|
 | 
						|
OUTPUT:
 | 
						|
 | 
						|
The value of $name is Bob.</programlisting>
 | 
						|
</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
 | 
						|
-->
 |