by Example
Display the drop-down list
Configuration of array_uintersect_uassoc()
<?php
/**
* PHP By Example
*
* @copyright 2014 Michel Corne
* @license http://www.opensource.org/licenses/gpl-3.0.html GNU GPL v3
*/
require_once 'array_udiff_uassoc.php';
/**
* Function configuration
*
* @see docs/function-configuration.txt
*/
class array_uintersect_uassoc extends array_udiff_uassoc
{
public $examples = [
[
[
"a" => "green",
"b" => "brown",
"c" => "blue",
"red"
],
[
"a" => "GREEN",
"B" => "brown",
"yellow", "red"
],
'strcasecmp',
'strcasecmp',
],
[
[
"a" => "green",
"b" => "brown",
"c" => "blue",
"red"
],
[
"a" => "GREEN",
"B" => "brown",
"yellow", "red"
],
'compare_func',
'compare_func',
],
];
public $synopsis = 'array array_uintersect_uassoc ( array $array1 , array $array2 [, array $... ], callable $value_compare_func , callable $key_compare_func )';
}
Help
Misc
Config
Test
Unit test
Powered by
PHP 7.1.33 (0.03 s)
2014-2017 Michel Corne