本文整理汇总了PHP中Map::add方法的典型用法代码示例。如果您正苦于以下问题:PHP Map::add方法的具体用法?PHP Map::add怎么用?PHP Map::add使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类Map
的用法示例。
在下文中一共展示了Map::add方法的4个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: testFilteredValue
public function testFilteredValue()
{
$map = new Map();
$map->add(Path::factory('/test/description', 'desc')->setDefault('value')->filter(function ($val) {
return strrev($val);
}));
$result = $map->execute($this->object);
$this->assertTrue(is_array($result));
$this->assertArrayHasKey('desc', $result);
$this->assertEquals(strrev("test description"), $result['desc']);
}
示例2: testWrongPath
public function testWrongPath()
{
$map = new Map();
$map->add(Path::factory('/test', 'test')->addChildren(Path::factory('wrong>path', 'wrong', 'defaultFalse')));
$result = $map->execute(new XmlFile(__DIR__ . '/test.xml'));
$this->assertTrue(is_array($result));
$this->assertArrayHasKey('test', $result);
$this->assertTrue(is_array($result['test']));
$this->assertArrayHasKey('wrong', $result['test']);
$this->assertEquals('defaultFalse', $result['test']['wrong']);
}
示例3: create
/**
* @param array $mapSchema
* @return Map
*/
public static function create(array $mapSchema)
{
$map = new Map();
foreach ($mapSchema as $key => $value) {
$tags = [];
if (strpos($key, ':') !== false) {
list($key, $tags) = explode(':', $key);
$tags = self::normaliseTags($tags);
}
$map->add(new MapItem($key, $value, $tags));
}
return $map;
}
示例4: add
function add($map)
{
$this->map = Map::add($this->map, $map, $this->options);
}