//Не работает,
->addOptions(['ranker' => new Expression("expr('(sum(lcs*user_weight)*1000+bm25)*weight')") ])
Ошибка :
index lite_geo_index_fr: Sphinx expr: syntax error, unexpected $end, expecting '(' near ''
//Работает
->addOptions(['ranker' => new Expression("expr('(sum(lcs*user_weight)*1000+bm25)')") ])
Модель
public function getImage()
{
$str = '';
foreach ($this->file as $img) {
$str = $str . Html::img(Url::to([$img->Image]), ['width'=>'100px']) . ' ';
}
return $str;
}
<?= DetailView::widget([
'model' => $model,
'attributes' => [
// other attr
[
'label' => 'Image',
'format' => 'html',
'value' => $model->image,
],
],
]); ?>