mirror of
				https://github.com/yiisoft/yii2.git
				synced 2025-11-04 14:46:19 +08:00 
			
		
		
		
	* Fix broken links for events with different namespace * Fix broken links in see tag * Fix broken links in see tag (loadData()) * Fix broken link for var_export() * Fix broken link for CVE * Remove redundant markdown link wrap in see tags * Remove see tags that refer to private properties * Remove more see tags that refer to private properties * Remove see tags that refer to private methods * Remove one more redundant markdown link wrap in see tag [skip ci] * Fix typo in see tag (causes broken link) * Remove more see tags that refer to private methods
		
			
				
	
	
		
			65 lines
		
	
	
		
			1.2 KiB
		
	
	
	
		
			PHP
		
	
	
	
	
	
			
		
		
	
	
			65 lines
		
	
	
		
			1.2 KiB
		
	
	
	
		
			PHP
		
	
	
	
	
	
<?php
 | 
						|
/**
 | 
						|
 * @link http://www.yiiframework.com/
 | 
						|
 * @copyright Copyright (c) 2008 Yii Software LLC
 | 
						|
 * @license http://www.yiiframework.com/license/
 | 
						|
 */
 | 
						|
 | 
						|
namespace yii\helpers;
 | 
						|
 | 
						|
/**
 | 
						|
 * Object that represents the removal of array value while performing [[ArrayHelper::merge()]].
 | 
						|
 *
 | 
						|
 * Usage example:
 | 
						|
 *
 | 
						|
 * ```php
 | 
						|
 * $array1 = [
 | 
						|
 *     'ids' => [
 | 
						|
 *         1,
 | 
						|
 *     ],
 | 
						|
 *     'validDomains' => [
 | 
						|
 *         'example.com',
 | 
						|
 *         'www.example.com',
 | 
						|
 *     ],
 | 
						|
 * ];
 | 
						|
 *
 | 
						|
 * $array2 = [
 | 
						|
 *     'ids' => [
 | 
						|
 *         2,
 | 
						|
 *     ],
 | 
						|
 *     'validDomains' => new \yii\helpers\UnsetArrayValue(),
 | 
						|
 * ];
 | 
						|
 *
 | 
						|
 * $result = \yii\helpers\ArrayHelper::merge($array1, $array2);
 | 
						|
 * ```
 | 
						|
 *
 | 
						|
 * The result will be
 | 
						|
 *
 | 
						|
 * ```php
 | 
						|
 * [
 | 
						|
 *     'ids' => [
 | 
						|
 *         1,
 | 
						|
 *         2,
 | 
						|
 *     ],
 | 
						|
 * ]
 | 
						|
 * ```
 | 
						|
 *
 | 
						|
 * @author Robert Korulczyk <robert@korulczyk.pl>
 | 
						|
 * @since 2.0.10
 | 
						|
 */
 | 
						|
class UnsetArrayValue
 | 
						|
{
 | 
						|
    /**
 | 
						|
     * Restores class state after using `var_export()`.
 | 
						|
     *
 | 
						|
     * @param array $state
 | 
						|
     * @return UnsetArrayValue
 | 
						|
     * @see https://www.php.net/manual/en/function.var-export.php
 | 
						|
     * @since 2.0.16
 | 
						|
     */
 | 
						|
    public static function __set_state($state)
 | 
						|
    {
 | 
						|
        return new self();
 | 
						|
    }
 | 
						|
}
 |