本文整理汇总了PHP中a::update方法的典型用法代码示例。如果您正苦于以下问题:PHP a::update方法的具体用法?PHP a::update怎么用?PHP a::update使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类a
的用法示例。
在下文中一共展示了a::update方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: update
/**
* Update the page with a new set of data
*
* @param array $data
*/
public function update($input = array(), $lang = null)
{
$data = a::update($this->content($lang)->toArray(), $input);
if (!data::write($this->textfile(null, $lang), $data, 'kd')) {
throw new Exception('The page could not be updated');
}
cache::flush();
$this->reset();
$this->touch();
return true;
}
示例2: testUpdate
public function testUpdate()
{
// original data
$source = ['a' => 'value a', 'b' => 'value b'];
// test with simple array
$result = a::update($source, ['a' => 'updated value a', 'c' => 'new value c']);
$this->assertEquals('updated value a', $result['a']);
$this->assertEquals('value b', $result['b']);
$this->assertEquals('new value c', $result['c']);
// test with callbacks
$result = a::update($source, ['a' => function ($value) {
return 'updated ' . $value;
}, 'c' => function ($value) {
return 'new value c';
}]);
$this->assertEquals('updated value a', $result['a']);
$this->assertEquals('value b', $result['b']);
$this->assertEquals('new value c', $result['c']);
}