var table = $('#example').DataTable();
var idx = table
.columns( '.check' )
.data()
.eq( 0 ) // Reduce the 2D array into a 1D array of data
.indexOf( '0' ); //Ищем нолик
if ( idx === -1 ) {
alert( 'Нолик не найден' );
}
else {
alert( 'Нолик найден' );
}
composer config -g github-oauth.github.com <oauthtoken>
GridView::widget([
...
'columns' => [
...
[
'attribute' => 'attr_name',
'content' => function ($model) { return Html::tag('span', $model->attr_name, ['style' => 'color: #333333']); }
],
...
],
...
])
$c = curl_init('http://avtomarket.ru/catalog/Volvo/740/29673/');
curl_setopt($c, CURLOPT_RETURNTRANSFER, 1);
$content = curl_exec($c);