本文整理汇总了PHP中Admin_DA::_switch方法的典型用法代码示例。如果您正苦于以下问题:PHP Admin_DA::_switch方法的具体用法?PHP Admin_DA::_switch怎么用?PHP Admin_DA::_switch使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类Admin_DA
的用法示例。
在下文中一共展示了Admin_DA::_switch方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: test_Switch
function test_Switch()
{
$input = array('fooName' => 'fooValue', 'barName' => 'barValue');
$name = 'fooName';
$legacyName = 'replacedFooName';
$output = $input;
Admin_DA::_switch($output, $name, $legacyName);
// determine that the desired field name has been removed
$this->assertTrue(!array_key_exists($name, $output));
// determine that the legacy name has been inserted
$this->assertTrue(array_key_exists($legacyName, $output));
// make sure extra keys not altered
$this->assertTrue(array_key_exists('barName', $output));
// make sure existing value has new key
$this->assertEqual('fooValue', $output[$legacyName]);
// assert key swapped successfully
$this->assertEqual($input[$name], $output[$legacyName]);
}
示例2: addZone
function addZone($aVariables)
{
Admin_DA::_switch($aVariables, 'publisher_id', 'affiliateid');
Admin_DA::_switch($aVariables, 'name', 'zonename');
Admin_DA::_switch($aVariables, 'type', 'delivery');
return Admin_DA::_addEntity('zones', $aVariables);
}