我使用php(带有kirbyCMS),可以创建此代码:
$results = $site->filterBy('a_key', 'a_value')->filterBy('a_key2', 'a_value2');
这是一个带有两个filterBy
的链。它有效。
但是,我需要动态地构建一个函数调用。有时可能是两个链式函数调用,有时三个或更多。
如何完成?
也许您可以使用此代码?
链只是一个随机数,可用于在1-5个链之间创建。
for( $i = 0; $i < 10; $i ++ ) {
$chains = rand(1, 5);
}
所需结果的示例
示例一个,只有一个函数调用
$results = $site->filterBy('a_key', 'a_value');
示例第二,许多嵌套函数调用
$results = $site->filterBy('a_key', 'a_value')->filterBy('a_key2', 'a_value2')->filterBy('a_key3', 'a_value3')->filterBy('a_key4', 'a_value4')->filterBy('a_key5', 'a_value5')->filterBy('a_key6', 'a_value6');
$chains = rand(1, 5)
$results = $site
$suffix = ''
for ( $i = 1; $i <= $chains; $i ++) {
if ($i != 1) {
$suffix = $i
}
$results = $results->filterBy('a_key' . $suffix, 'a_value' . $suffix)
}
如果您能够将'a_key1'
和'a_value1'
传递到第一个调用到filterBy
,而不是'a_key'
和'a_value'
,则可以通过删除$suffix
和if
块简化代码,然后附加$i
。
您无需生成链式呼叫列表。您可以将每个调用的参数放在列表中,然后编写一类新方法,该方法将它们从列表中获取并使用它们反复调用filterBy()
。
我从您的示例代码中假设函数filterBy()
返回$this
或与site
同一类的另一个对象。
//
// The code that generates the filtering parameters:
// Store the arguments of the filtering here
$params = array();
// Put as many sets of arguments you need
// use whatever method suits you best to produce them
$params[] = array('key1', 'value1');
$params[] = array('key2', 'value2');
$params[] = array('key3', 'value3');
//
// Do the multiple filtering
$site = new Site();
$result = $site->filterByMultiple($params);
//
// The code that does the actual filtering
class Site {
public function filterByMultiple(array $params) {
$result = $this;
foreach ($params as list($key, $value)) {
$result = $result->filterBy($key, $value);
}
return $result;
}
}
如果filterBy()
返回$this
,则不需要工作变量$result
;致电$this->filterBy()
和return $this;
,然后删除$result
的其他出现。