mirror of
				https://github.com/smarty-php/smarty.git
				synced 2025-11-03 22:01:36 +01:00 
			
		
		
		
	
		
			
	
	
		
			26 lines
		
	
	
		
			541 B
		
	
	
	
		
			PHP
		
	
	
	
	
	
		
		
			
		
	
	
			26 lines
		
	
	
		
			541 B
		
	
	
	
		
			PHP
		
	
	
	
	
	
| 
								 | 
							
								<?php
							 | 
						||
| 
								 | 
							
								/**
							 | 
						||
| 
								 | 
							
								 * Smarty plugin
							 | 
						||
| 
								 | 
							
								 *
							 | 
						||
| 
								 | 
							
								 * @package    Smarty
							 | 
						||
| 
								 | 
							
								 * @subpackage PluginsModifier
							 | 
						||
| 
								 | 
							
								 */
							 | 
						||
| 
								 | 
							
								
							 | 
						||
| 
								 | 
							
								/**
							 | 
						||
| 
								 | 
							
								 * Smarty explode modifier plugin
							 | 
						||
| 
								 | 
							
								 * Type:     modifier
							 | 
						||
| 
								 | 
							
								 * Name:     explode
							 | 
						||
| 
								 | 
							
								 * Purpose:  split a string by a string
							 | 
						||
| 
								 | 
							
								 *
							 | 
						||
| 
								 | 
							
								 * @param string   $separator
							 | 
						||
| 
								 | 
							
								 * @param string   $string
							 | 
						||
| 
								 | 
							
								 * @param int|null $limit
							 | 
						||
| 
								 | 
							
								 *
							 | 
						||
| 
								 | 
							
								 * @return array
							 | 
						||
| 
								 | 
							
								 */
							 | 
						||
| 
								 | 
							
								function smarty_modifier_explode($separator, $string, ?int $limit = null)
							 | 
						||
| 
								 | 
							
								{
							 | 
						||
| 
								 | 
							
								    // provide $string default to prevent deprecation errors in PHP >=8.1
							 | 
						||
| 
								 | 
							
								    return explode($separator, $string ?? '', $limit ?? PHP_INT_MAX);
							 | 
						||
| 
								 | 
							
								}
							 |