<?php if ($test == 1): ?>
<div>some text</div>
<div>some text</div>
<div>some text</div>
<div>some text</div>
<div>some text</div>
<div>some text</div>
<div>some text</div>
<div>some text</div>
<div>some text</div>
<?php endif ?>
<?php if ($test == 1) {
echo "<div>some text</div>
<div>some text</div>
<div>some text</div>
<div>some text</div>
<div>some text</div>
<div>some text</div>
<div>some text</div>
<div>some text</div>
<div>some text</div>";
}
?>
public function getProductOrder() {
return $this->hasMany(Order2Product::class, ['id' => 'order_id'])
}
public function getProduct() {
return $this->hasMany(Product::class, ['product_id' => 'id'])
}
$yourArray= [
'50 Наличие интернет - Да',
'ID - 50 Процент - 20%',
'ID - 50 наличных - 2,9%',
'ID - 50 Минимальный размер - 5%',
'ID - 50 Наличие эксклюзивных предложений - да',
'ID - 50 период - 55',
'ID - 60 других - 2,9',
'ID - 60 Наличие - да',
'ID - 60 наличных - 2.9',
'ID - 60 Минимальный размер - 600',
'ID - 60 Наличие скидок и предложений - да',
'ID - 60 период - 55',
];
$needle = '50';
$matches = array_filter($yourArray, function ($haystack) use ($needle) {
return(strpos($haystack, $needle));
});
print_r($matches);
$model->attachment = UploadedFile::getInstance($model, 'attachment');
$imageModel = new UploadImageForm();
$imageModel->files = UploadedFile::getInstances($imageModel, 'files');
if ($imageModel->validate()) {
$imageModel->files //тут ваш скрипт чтобы сохранить файл
}
//ну и сама основная модель
if ($model->load(Yii::$app->request->post())) {
$model->save();
}
'yii' => [
'class' => 'yii\i18n\DbMessageSource',
'sourceLanguage' => 'en',
'sourceMessageTable' => '{{%i18n_source_message}}',
'messageTable' => '{{%i18n_message}}',
'cachingDuration' => 86400,
'enableCaching' => false,
'on missingTranslation' => ['common\components\i18n\TranslationEventHandler', 'handleMissingTranslation'],
],
$query = Model::find()->where(['field' => 5, 'field2' => 777]);
$other = Yii::$app->db->cache(function ($db) use ($query) {
/** @var Connection $db */
return $db->createCommand($query->createCommand()->rawSql)->queryOne();
}, 120);