mirror of
				https://github.com/yiisoft/yii2.git
				synced 2025-11-01 03:26:36 +08:00 
			
		
		
		
	
		
			
				
	
	
		
			27 lines
		
	
	
		
			491 B
		
	
	
	
		
			PHP
		
	
	
	
	
	
			
		
		
	
	
			27 lines
		
	
	
		
			491 B
		
	
	
	
		
			PHP
		
	
	
	
	
	
| <?php
 | |
| 
 | |
| /**
 | |
|  * @link https://www.yiiframework.com/
 | |
|  * @copyright Copyright (c) 2008 Yii Software LLC
 | |
|  * @license https://www.yiiframework.com/license/
 | |
|  */
 | |
| 
 | |
| namespace yii\db\mssql\conditions;
 | |
| 
 | |
| /**
 | |
|  * {@inheritdoc}
 | |
|  */
 | |
| class LikeConditionBuilder extends \yii\db\conditions\LikeConditionBuilder
 | |
| {
 | |
|     /**
 | |
|      * {@inheritdoc}
 | |
|      */
 | |
|     protected $escapingReplacements = [
 | |
|         '%' => '[%]',
 | |
|         '_' => '[_]',
 | |
|         '[' => '[[]',
 | |
|         ']' => '[]]',
 | |
|         '\\' => '[\\]',
 | |
|     ];
 | |
| }
 | 
