Database_Exception [ 2006 ]:
MODPATH/database/classes/Database/MySQLi.php [ 174 ]
169 {
170 // This benchmark is worthless
171 Profiler::delete($benchmark);
172 }
173
174 throw new Database_Exception(':error [ :query ]',
175 array(':error' => mysqli_error($this->_connection), ':query' => $sql),
176 mysqli_errno($this->_connection));
177 }
178
179 if (isset($benchmark))
-
MODPATH/database/classes/Kohana/Database/Query.php [ 251 ] » Database_MySQLi->query(arguments)
0integer 1
1string(185) "SELECT `category`.`id` AS `id`, `category`.`name` AS `name`, `category`.`url` AS `url`, `category`.`count` AS `count` FROM `cate …"2bool FALSE
3array(0)246 return new Database_Result_Cached($result, $sql, $as_object, $object_params); 247 } 248 } 249 250 // Execute the query 251 $result = $db->query($this->_type, $sql, $as_object, $object_params); 252 253 if (isset($cache_key) AND $this->_lifetime > 0) 254 { 255 // Cache the result array 256 Kohana::cache($cache_key, $result->as_array(), $this->_lifetime); -
MODPATH/orm/classes/Kohana/ORM.php [ 1072 ] » Kohana_Database_Query->execute(arguments)
0object Database_MySQLi(6)
{ protected _connection_id => string(40) "9fdecc117b583662f3b3d15c4c4ac71fc778e18d" protected _identifier => string(1) "`" public last_query => string(185) "SELECT `category`.`id` AS `id`, `category`.`name` AS `name`, `category`.`url` AS `url`, `category`.`count` AS `count` FROM `cate …" protected _instance => string(7) "default" protected _connection => object mysqli(19){ public affected_rows => NULL public client_info => NULL public client_version => NULL public connect_errno => NULL public connect_error => NULL public errno => NULL public error => NULL public error_list => NULL public field_count => NULL public host_info => NULL public info => NULL public insert_id => NULL public server_info => NULL public server_version => NULL public stat => NULL public sqlstate => NULL public protocol_version => NULL public thread_id => NULL public warning_count => NULL }protected _config => array(6) ( "type" => string(6) "MySQLi" "connection" => array(3) ( "hostname" => string(9) "localhost" "database" => string(9) "uznavalka" "persistent" => bool FALSE ) "table_prefix" => string(0) "" "charset" => string(7) "utf8mb4" "caching" => bool FALSE "profiling" => bool FALSE ) }1067 return $result; 1068 } 1069 else 1070 { 1071 // Load the result as an associative array 1072 $result = $this->_db_builder->as_assoc()->execute($this->_db); 1073 1074 $this->reset(); 1075 1076 if ($result->count() === 1) 1077 { -
MODPATH/orm/classes/Kohana/ORM.php [ 979 ] » Kohana_ORM->_load_result(arguments)
0bool FALSE
974 } 975 } 976 977 $this->_build(Database::SELECT); 978 979 return $this->_load_result(FALSE); 980 } 981 982 /** 983 * Finds multiple database rows and returns an iterator of the rows found. 984 * -
MODPATH/orm/classes/Kohana/ORM.php [ 640 ] » Kohana_ORM->find()
635 // Make sure we don't run WHERE "AUTO_INCREMENT column" = NULL queries. This would 636 // return the last inserted record instead of an empty result. 637 // See: http://mysql.localhost.net.ar/doc/refman/5.1/en/server-session-variables.html#sysvar_sql_auto_is_null 638 if ($val !== NULL) 639 { 640 $model->where($col, '=', $val)->find(); 641 } 642 643 return $this->_related[$column] = $model; 644 } 645 elseif (isset($this->_has_one[$column])) -
MODPATH/orm/classes/Kohana/ORM.php [ 603 ] » Kohana_ORM->get(arguments)
0string(8) "category"598 * @param string $column Column name 599 * @return mixed 600 */ 601 public function __get($column) 602 { 603 return $this->get($column); 604 } 605 606 /** 607 * Handles getting of column 608 * Override this method to add custom get behavior -
APPPATH/classes/Model/Task.php [ 44 ] » Kohana_ORM->__get(arguments)
0string(8) "category"39 return $text; 40 } 41 42 public function get_url() 43 { 44 return $this->category->get_url() . '/q/' . $this->id . '/' . $this->gen_str_for_url_html() . '.html'; 45 } 46 47 public function get_text_for_url() 48 { 49 //return mb_substr(trim(strip_tags($this->text)), 0, 100); -
APPPATH/views/index/v_task.php [ 202 ] » Model_Task->get_url()
197 </div> 198 199 200 <div class="pre_next_tasks_links"> 201 <? if($pre_task->loaded()):?> 202 <a href="<?=$pre_task->get_url();?>" class="pre_task">< Предыдущий</a> 203 <? endif;?> 204 <? if($next_task->loaded()):?> 205 <a href="<?=$next_task->get_url();?>" class="next_task">Следующий ></a> 206 <? endif;?> 207 </div> -
SYSPATH/classes/Kohana/View.php [ 61 ] » include(arguments)
0string(80) "/home/uznavalka/web/uznavalka.pro/public_html/application/views/index/v_task.php"56 ob_start(); 57 58 try 59 { 60 // Load the view within the current scope 61 include $kohana_view_filename; 62 } 63 catch (Exception $e) 64 { 65 // Delete the output buffer 66 ob_end_clean(); -
SYSPATH/classes/Kohana/View.php [ 348 ] » Kohana_View::capture(arguments)
0string(80) "/home/uznavalka/web/uznavalka.pro/public_html/application/views/index/v_task.php"1array(10) ( "title" => string(191) "При нагревании 20г гидрокарбоната натрия выделилось 2.24 л оксида углерода (IV) при н.у. какая - Узнавалка.про" "h1" => string(163) "При нагревании 20г гидрокарбоната натрия выделилось 2.24 л оксида углерода (IV) при н.у. какая" "category" => object Model_Category(35)
{ protected _has_many => array(2) ( "tasks" => array(4) ( "model" => string(4) "Task" "foreign_key" => string(11) "category_id" "through" => NULL "far_key" => string(7) "task_id" ) "tops" => array(4) ( "model" => string(3) "Top" "foreign_key" => string(11) "category_id" "through" => NULL "far_key" => string(6) "top_id" ) ) protected prefix_url => string(9) "/subject/" protected _reload_on_wakeup => bool FALSE protected _has_one => array(0) protected _belongs_to => array(0) protected _load_with => array(0) protected _validation => NULL protected _object => array(4) ( "id" => string(1) "7" "name" => string(10) "Химия" "url" => string(9) "chemistry" "count" => string(6) "799022" ) protected _changed => array(0) protected _original_values => array(4) ( "id" => string(1) "7" "name" => string(10) "Химия" "url" => string(9) "chemistry" "count" => string(6) "799022" ) protected _related => array(0) protected _valid => bool TRUE protected _loaded => bool TRUE protected _saved => bool FALSE protected _sorting => NULL protected _foreign_key_suffix => string(3) "_id" protected _object_name => string(8) "category" protected _object_plural => string(10) "categories" protected _table_name => string(10) "categories" protected _table_columns => array(4) ( "id" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(2) "id" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 1 "display" => string(2) "11" "comment" => string(0) "" "extra" => string(14) "auto_increment" "key" => string(3) "PRI" "privileges" => string(31) "select,insert,update,references" ) "name" => array(12) ( "type" => string(6) "string" "column_name" => string(4) "name" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool FALSE "ordinal_position" => integer 2 "character_maximum_length" => string(3) "255" "collation_name" => string(18) "utf8mb3_unicode_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "url" => array(12) ( "type" => string(6) "string" "column_name" => string(3) "url" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool FALSE "ordinal_position" => integer 3 "character_maximum_length" => string(3) "255" "collation_name" => string(18) "utf8mb3_unicode_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "count" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(5) "count" "column_default" => string(1) "0" "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 4 "display" => string(2) "11" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) ) protected _updated_column => NULL protected _created_column => NULL protected _serialize_columns => array(0) protected _primary_key => string(2) "id" protected _primary_key_value => string(1) "7" protected _table_names_plural => bool TRUE protected _db => object Database_MySQLi(6)"task" => object Model_Task(34){ protected _connection_id => string(40) "9fdecc117b583662f3b3d15c4c4ac71fc778e18d" protected _identifier => string(1) "`" public last_query => string(185) "SELECT `category`.`id` AS `id`, `category`.`name` AS `name`, `category`.`url` AS `url`, `category`.`count` AS `count` FROM `cate …" protected _instance => string(7) "default" protected _connection => object mysqli(19)protected _db_group => NULL protected _db_applied => array(0) protected _db_pending => array(0) protected _db_reset => bool TRUE protected _db_builder => NULL protected _with_applied => array(0) protected _cast_data => array(0) protected _errors_filename => string(8) "category" }{ public affected_rows => NULL public client_info => NULL public client_version => NULL public connect_errno => NULL public connect_error => NULL public errno => NULL public error => NULL public error_list => NULL public field_count => NULL public host_info => NULL public info => NULL public insert_id => NULL public server_info => NULL public server_version => NULL public stat => NULL public sqlstate => NULL public protocol_version => NULL public thread_id => NULL public warning_count => NULL }protected _config => array(6) ( "type" => string(6) "MySQLi" "connection" => array(3) ( "hostname" => string(9) "localhost" "database" => string(9) "uznavalka" "persistent" => bool FALSE ) "table_prefix" => string(0) "" "charset" => string(7) "utf8mb4" "caching" => bool FALSE "profiling" => bool FALSE ) }{ protected _belongs_to => array(2) ( "category" => array(2) ( "model" => string(8) "Category" "foreign_key" => string(11) "category_id" ) "human" => array(2) ( "model" => string(5) "Human" "foreign_key" => string(8) "human_id" ) ) protected _has_many => array(4) ( "answers" => array(4) ( "model" => string(6) "Answer" "foreign_key" => string(7) "task_id" "through" => NULL "far_key" => string(9) "answer_id" ) "tattaches" => array(4) ( "model" => string(7) "Tattach" "foreign_key" => string(7) "task_id" "through" => NULL "far_key" => string(10) "tattach_id" ) "tops" => array(4) ( "model" => string(3) "Top" "foreign_key" => string(7) "task_id" "through" => NULL "far_key" => string(6) "top_id" ) "ipsviews" => array(4) ( "model" => string(7) "Ipsview" "foreign_key" => string(7) "task_id" "through" => NULL "far_key" => string(10) "ipsview_id" ) ) protected _reload_on_wakeup => bool FALSE protected _has_one => array(0) protected _load_with => array(0) protected _validation => NULL protected _object => array(16) ( "id" => string(7) "5872829" "category_id" => string(1) "7" "text" => string(247) "При нагревании 20г гидрокарбоната натрия выделилось 2.24 л оксида углерода (IV) при н.у. какая массовая доля (в%) гидрокарбоната …" "zn_id" => string(8) "19122218" "date_time" => string(19) "2019-05-08 01:34:19" "views" => integer 13 "human_id" => string(8) "55035162" "ya_spell" => string(1) "0" "category_key" => string(6) "263954" "has_gpt" => string(1) "1" "source" => NULL "source_id" => NULL "text_for_search" => string(247) "При нагревании 20г гидрокарбоната натрия выделилось 2.24 л оксида углерода (IV) при н.у. какая массовая доля (в%) гидрокарбоната …" "related" => NULL "good" => NULL "bad" => NULL ) protected _changed => array(1) ( "views" => string(5) "views" ) protected _original_values => array(16) ( "id" => string(7) "5872829" "category_id" => string(1) "7" "text" => string(247) "При нагревании 20г гидрокарбоната натрия выделилось 2.24 л оксида углерода (IV) при н.у. какая массовая доля (в%) гидрокарбоната …" "zn_id" => string(8) "19122218" "date_time" => string(19) "2019-05-08 01:34:19" "views" => string(2) "12" "human_id" => string(8) "55035162" "ya_spell" => string(1) "0" "category_key" => string(6) "263954" "has_gpt" => string(1) "1" "source" => NULL "source_id" => NULL "text_for_search" => string(247) "При нагревании 20г гидрокарбоната натрия выделилось 2.24 л оксида углерода (IV) при н.у. какая массовая доля (в%) гидрокарбоната …" "related" => NULL "good" => NULL "bad" => NULL ) protected _related => array(1) ( "human" => object Model_Human(34)"pre_task" => object Model_Task(34){ protected _db_group => string(5) "looka" protected _has_many => array(4) ( "universities" => array(5) ( "model" => string(10) "university" "foreign_key" => string(8) "human_id" "through" => string(19) "humans_universities" "far_key" => string(13) "university_id" "_table_columns" => array(5) ( "faculty_id" => NULL "chair_id" => NULL "graduation" => NULL "education_form" => NULL "education_status" => NULL ) ) "humans_universities" => array(4) ( "model" => string(17) "Humans_University" "foreign_key" => string(8) "human_id" "through" => NULL "far_key" => string(20) "humans_university_id" ) "schools" => array(5) ( "model" => string(6) "school" "foreign_key" => string(8) "human_id" "through" => string(14) "humans_schools" "far_key" => string(9) "school_id" "_table_columns" => array(6) ( "year_from" => NULL "year_to" => NULL "year_graduated" => NULL "class" => NULL "speciality" => NULL "type" => NULL ) ) "humans_schools" => array(4) ( "model" => string(13) "Humans_School" "foreign_key" => string(8) "human_id" "through" => NULL "far_key" => string(16) "humans_school_id" ) ) protected _belongs_to => array(4) ( "lastname" => array(2) ( "model" => string(8) "Lastname" "foreign_key" => string(11) "lastname_id" ) "firstname" => array(2) ( "model" => string(9) "Firstname" "foreign_key" => string(12) "firstname_id" ) "country" => array(2) ( "model" => string(7) "Country" "foreign_key" => string(10) "country_id" ) "city" => array(2) ( "model" => string(4) "City" "foreign_key" => string(7) "city_id" ) ) protected _reload_on_wakeup => bool FALSE protected _has_one => array(0) protected _load_with => array(0) protected _validation => NULL protected _object => array(21) ( "id" => string(8) "55035162" "lastname_id" => string(4) "3066" "firstname_id" => string(2) "24" "nickname" => string(0) "" "vk_id" => string(9) "233994881" "bdate" => string(10) "2004-05-21" "info" => NULL "photo" => string(63) "https://pp.userapi.com/c847018/v847018162/133f9/PRq9c6f6qxs.jpg" "city_id" => NULL "country_id" => string(1) "1" "home_town" => string(0) "" "home_phone" => string(0) "" "skype" => NULL "facebook" => NULL "twitter" => NULL "livejournal" => NULL "instagram" => NULL "occupation_type" => NULL "occupation_name" => NULL "rate" => string(2) "12" "count_firstnames_lastnames" => NULL ) protected _changed => array(0) protected _original_values => array(21) ( "id" => string(8) "55035162" "lastname_id" => string(4) "3066" "firstname_id" => string(2) "24" "nickname" => string(0) "" "vk_id" => string(9) "233994881" "bdate" => string(10) "2004-05-21" "info" => NULL "photo" => string(63) "https://pp.userapi.com/c847018/v847018162/133f9/PRq9c6f6qxs.jpg" "city_id" => NULL "country_id" => string(1) "1" "home_town" => string(0) "" "home_phone" => string(0) "" "skype" => NULL "facebook" => NULL "twitter" => NULL "livejournal" => NULL "instagram" => NULL "occupation_type" => NULL "occupation_name" => NULL "rate" => string(2) "12" "count_firstnames_lastnames" => NULL ) protected _related => array(2) ( "lastname" => object Model_Lastname(34)) protected _valid => bool FALSE protected _loaded => bool TRUE protected _saved => bool FALSE protected _sorting => NULL protected _foreign_key_suffix => string(3) "_id" protected _object_name => string(4) "task" protected _object_plural => string(5) "tasks" protected _table_name => string(5) "tasks" protected _table_columns => array(16) ( "id" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(2) "id" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 1 "display" => string(2) "11" "comment" => string(0) "" "extra" => string(14) "auto_increment" "key" => string(3) "PRI" "privileges" => string(31) "select,insert,update,references" ) "category_id" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(11) "category_id" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 2 "display" => string(2) "11" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "text" => array(12) ( "type" => string(6) "string" "character_maximum_length" => string(5) "65535" "column_name" => string(4) "text" "column_default" => NULL "data_type" => string(4) "text" "is_nullable" => bool FALSE "ordinal_position" => integer 3 "collation_name" => string(18) "utf8mb3_unicode_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "zn_id" => array(13) ( "type" => string(3) "int" "min" => string(20) "-9223372036854775808" "max" => string(19) "9223372036854775807" "column_name" => string(5) "zn_id" "column_default" => string(1) "0" "data_type" => string(6) "bigint" "is_nullable" => bool FALSE "ordinal_position" => integer 4 "display" => string(2) "20" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "date_time" => array(10) ( "type" => string(6) "string" "column_name" => string(9) "date_time" "column_default" => string(19) "current_timestamp()" "data_type" => string(8) "datetime" "is_nullable" => bool FALSE "ordinal_position" => integer 5 "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "views" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(5) "views" "column_default" => string(1) "0" "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 6 "display" => string(2) "11" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "human_id" => array(13) ( "type" => string(3) "int" "min" => string(20) "-9223372036854775808" "max" => string(19) "9223372036854775807" "column_name" => string(8) "human_id" "column_default" => NULL "data_type" => string(6) "bigint" "is_nullable" => bool TRUE "ordinal_position" => integer 7 "display" => string(2) "20" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "ya_spell" => array(12) ( "type" => string(6) "string" "column_name" => string(8) "ya_spell" "column_default" => string(1) "0" "data_type" => string(4) "enum" "is_nullable" => bool FALSE "ordinal_position" => integer 8 "collation_name" => string(18) "utf8mb3_unicode_ci" "options" => array(2) ( 0 => string(1) "0" 1 => string(1) "1" ) "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "category_key" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(12) "category_key" "column_default" => string(1) "0" "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 9 "display" => string(2) "11" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "has_gpt" => array(12) ( "type" => string(6) "string" "column_name" => string(7) "has_gpt" "column_default" => NULL "data_type" => string(4) "enum" "is_nullable" => bool TRUE "ordinal_position" => integer 10 "collation_name" => string(18) "utf8mb3_unicode_ci" "options" => array(4) ( 0 => string(1) "0" 1 => string(1) "1" 2 => string(12) "has_attaches" 3 => string(4) "skip" ) "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "source" => array(12) ( "type" => string(6) "string" "column_name" => string(6) "source" "column_default" => NULL "data_type" => string(4) "enum" "is_nullable" => bool TRUE "ordinal_position" => integer 11 "collation_name" => string(18) "utf8mb3_unicode_ci" "options" => array(1) ( 0 => string(12) "vashurok.com" ) "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "source_id" => array(13) ( "type" => string(3) "int" "min" => string(20) "-9223372036854775808" "max" => string(19) "9223372036854775807" "column_name" => string(9) "source_id" "column_default" => NULL "data_type" => string(6) "bigint" "is_nullable" => bool TRUE "ordinal_position" => integer 12 "display" => string(2) "20" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "text_for_search" => array(12) ( "type" => string(6) "string" "character_maximum_length" => string(5) "65535" "column_name" => string(15) "text_for_search" "column_default" => NULL "data_type" => string(4) "text" "is_nullable" => bool TRUE "ordinal_position" => integer 13 "collation_name" => string(18) "utf8mb3_unicode_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "related" => array(12) ( "type" => string(6) "string" "column_name" => string(7) "related" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 14 "character_maximum_length" => string(4) "1023" "collation_name" => string(18) "utf8mb3_unicode_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "good" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(4) "good" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool TRUE "ordinal_position" => integer 15 "display" => string(2) "11" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "bad" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(3) "bad" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool TRUE "ordinal_position" => integer 16 "display" => string(2) "11" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) ) protected _updated_column => NULL protected _created_column => NULL protected _serialize_columns => array(0) protected _primary_key => string(2) "id" protected _primary_key_value => string(7) "5872829" protected _table_names_plural => bool TRUE protected _db => object Database_MySQLi(6){ protected _db_group => string(5) "looka" protected _reload_on_wakeup => bool FALSE protected _has_one => array(0) protected _belongs_to => array(0) protected _has_many => array(0) protected _load_with => array(0) protected _validation => NULL protected _object => array(2) ( "id" => string(4) "3066" "title" => string(18) "Захаренко" ) protected _changed => array(0) protected _original_values => array(2) ( "id" => string(4) "3066" "title" => string(18) "Захаренко" ) protected _related => array(0) protected _valid => bool TRUE protected _loaded => bool TRUE protected _saved => bool FALSE protected _sorting => NULL protected _foreign_key_suffix => string(3) "_id" protected _object_name => string(8) "lastname" protected _object_plural => string(9) "lastnames" protected _table_name => string(9) "lastnames" protected _table_columns => array(2) ( "id" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(2) "id" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 1 "display" => string(2) "11" "comment" => string(0) "" "extra" => string(14) "auto_increment" "key" => string(3) "PRI" "privileges" => string(31) "select,insert,update,references" ) "title" => array(12) ( "type" => string(6) "string" "column_name" => string(5) "title" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool FALSE "ordinal_position" => integer 2 "character_maximum_length" => string(3) "255" "collation_name" => string(18) "utf8mb4_unicode_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) ) protected _updated_column => NULL protected _created_column => NULL protected _serialize_columns => array(0) protected _primary_key => string(2) "id" protected _primary_key_value => string(4) "3066" protected _table_names_plural => bool TRUE protected _db => object Database_MySQLi(6)"firstname" => object Model_Firstname(34){ protected _connection_id => string(40) "d012da34ee02fd2c23a3776760afb1e9d4e5c681" protected _identifier => string(1) "`" public last_query => string(166) "SELECT `finder_lastname`.`id` AS `id`, `finder_lastname`.`title` AS `title` FROM `finder_lastnames` AS `finder_lastname` WHERE ` …" protected _instance => string(5) "looka" protected _connection => object mysqli(19)protected _db_applied => array(0) protected _db_pending => array(0) protected _db_reset => bool TRUE protected _db_builder => NULL protected _with_applied => array(0) protected _cast_data => array(0) protected _errors_filename => string(8) "lastname" }{ public affected_rows => NULL public client_info => NULL public client_version => NULL public connect_errno => NULL public connect_error => NULL public errno => NULL public error => NULL public error_list => NULL public field_count => NULL public host_info => NULL public info => NULL public insert_id => NULL public server_info => NULL public server_version => NULL public stat => NULL public sqlstate => NULL public protocol_version => NULL public thread_id => NULL public warning_count => NULL }protected _config => array(5) ( "type" => string(6) "MySQLi" "connection" => array(3) ( "hostname" => string(9) "localhost" "database" => string(5) "looka" "persistent" => bool FALSE ) "table_prefix" => string(7) "finder_" "charset" => string(7) "utf8mb4" "caching" => bool FALSE ) }{ protected _db_group => string(5) "looka" protected _has_many => array(1) ( "humans" => array(4) ( "model" => string(5) "Human" "foreign_key" => string(12) "firstname_id" "through" => NULL "far_key" => string(8) "human_id" ) ) protected _reload_on_wakeup => bool FALSE protected _has_one => array(0) protected _belongs_to => array(0) protected _load_with => array(0) protected _validation => NULL protected _object => array(2) ( "id" => string(2) "24" "title" => string(16) "Виктория" ) protected _changed => array(0) protected _original_values => array(2) ( "id" => string(2) "24" "title" => string(16) "Виктория" ) protected _related => array(0) protected _valid => bool TRUE protected _loaded => bool TRUE protected _saved => bool FALSE protected _sorting => NULL protected _foreign_key_suffix => string(3) "_id" protected _object_name => string(9) "firstname" protected _object_plural => string(10) "firstnames" protected _table_name => string(10) "firstnames" protected _table_columns => array(2) ( "id" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(2) "id" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 1 "display" => string(2) "11" "comment" => string(0) "" "extra" => string(14) "auto_increment" "key" => string(3) "PRI" "privileges" => string(31) "select,insert,update,references" ) "title" => array(12) ( "type" => string(6) "string" "column_name" => string(5) "title" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 2 "character_maximum_length" => string(3) "255" "collation_name" => string(18) "utf8mb4_unicode_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) ) protected _updated_column => NULL protected _created_column => NULL protected _serialize_columns => array(0) protected _primary_key => string(2) "id" protected _primary_key_value => string(2) "24" protected _table_names_plural => bool TRUE protected _db => object Database_MySQLi(6)) protected _valid => bool TRUE protected _loaded => bool TRUE protected _saved => bool FALSE protected _sorting => NULL protected _foreign_key_suffix => string(3) "_id" protected _object_name => string(5) "human" protected _object_plural => string(6) "humans" protected _table_name => string(6) "humans" protected _table_columns => array(21) ( "id" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(2) "id" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 1 "display" => string(2) "11" "comment" => string(0) "" "extra" => string(14) "auto_increment" "key" => string(3) "PRI" "privileges" => string(31) "select,insert,update,references" ) "lastname_id" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(11) "lastname_id" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 2 "display" => string(2) "11" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "firstname_id" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(12) "firstname_id" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 3 "display" => string(2) "11" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "nickname" => array(12) ( "type" => string(6) "string" "column_name" => string(8) "nickname" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 4 "character_maximum_length" => string(3) "255" "collation_name" => string(18) "utf8mb4_unicode_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "vk_id" => array(13) ( "type" => string(3) "int" "min" => string(20) "-9223372036854775808" "max" => string(19) "9223372036854775807" "column_name" => string(5) "vk_id" "column_default" => NULL "data_type" => string(6) "bigint" "is_nullable" => bool TRUE "ordinal_position" => integer 5 "display" => string(2) "20" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "bdate" => array(10) ( "type" => string(6) "string" "column_name" => string(5) "bdate" "column_default" => NULL "data_type" => string(4) "date" "is_nullable" => bool TRUE "ordinal_position" => integer 6 "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "info" => array(12) ( "type" => string(6) "string" "column_name" => string(4) "info" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 7 "character_maximum_length" => string(4) "1023" "collation_name" => string(18) "utf8mb4_unicode_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "photo" => array(12) ( "type" => string(6) "string" "column_name" => string(5) "photo" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 8 "character_maximum_length" => string(3) "255" "collation_name" => string(18) "utf8mb4_unicode_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "city_id" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(7) "city_id" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool TRUE "ordinal_position" => integer 9 "display" => string(2) "11" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "country_id" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(10) "country_id" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool TRUE "ordinal_position" => integer 10 "display" => string(2) "11" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "home_town" => array(12) ( "type" => string(6) "string" "column_name" => string(9) "home_town" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 11 "character_maximum_length" => string(3) "255" "collation_name" => string(18) "utf8mb4_unicode_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "home_phone" => array(12) ( "type" => string(6) "string" "column_name" => string(10) "home_phone" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 12 "character_maximum_length" => string(2) "63" "collation_name" => string(18) "utf8mb4_unicode_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "skype" => array(12) ( "type" => string(6) "string" "column_name" => string(5) "skype" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 13 "character_maximum_length" => string(3) "127" "collation_name" => string(18) "utf8mb4_unicode_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "facebook" => array(12) ( "type" => string(6) "string" "column_name" => string(8) "facebook" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 14 "character_maximum_length" => string(3) "127" "collation_name" => string(18) "utf8mb4_unicode_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "twitter" => array(12) ( "type" => string(6) "string" "column_name" => string(7) "twitter" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 15 "character_maximum_length" => string(3) "127" "collation_name" => string(18) "utf8mb4_unicode_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "livejournal" => array(12) ( "type" => string(6) "string" "column_name" => string(11) "livejournal" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 16 "character_maximum_length" => string(3) "127" "collation_name" => string(18) "utf8mb4_unicode_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "instagram" => array(12) ( "type" => string(6) "string" "column_name" => string(9) "instagram" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 17 "character_maximum_length" => string(3) "127" "collation_name" => string(18) "utf8mb4_unicode_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "occupation_type" => array(12) ( "type" => string(6) "string" "column_name" => string(15) "occupation_type" "column_default" => NULL "data_type" => string(4) "enum" "is_nullable" => bool TRUE "ordinal_position" => integer 18 "collation_name" => string(18) "utf8mb4_unicode_ci" "options" => array(3) ( 0 => string(4) "work" 1 => string(6) "school" 2 => string(10) "university" ) "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "occupation_name" => array(12) ( "type" => string(6) "string" "column_name" => string(15) "occupation_name" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 19 "character_maximum_length" => string(3) "255" "collation_name" => string(18) "utf8mb4_unicode_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "rate" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(4) "rate" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 20 "display" => string(2) "11" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "count_firstnames_lastnames" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(26) "count_firstnames_lastnames" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool TRUE "ordinal_position" => integer 21 "display" => string(2) "11" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) ) protected _updated_column => NULL protected _created_column => NULL protected _serialize_columns => array(0) protected _primary_key => string(2) "id" protected _primary_key_value => string(8) "55035162" protected _table_names_plural => bool TRUE protected _db => object Database_MySQLi(6){ protected _connection_id => string(40) "d012da34ee02fd2c23a3776760afb1e9d4e5c681" protected _identifier => string(1) "`" public last_query => string(166) "SELECT `finder_lastname`.`id` AS `id`, `finder_lastname`.`title` AS `title` FROM `finder_lastnames` AS `finder_lastname` WHERE ` …" protected _instance => string(5) "looka" protected _connection => object mysqli(19)protected _db_applied => array(0) protected _db_pending => array(0) protected _db_reset => bool TRUE protected _db_builder => NULL protected _with_applied => array(0) protected _cast_data => array(0) protected _errors_filename => string(9) "firstname" }{ public affected_rows => NULL public client_info => NULL public client_version => NULL public connect_errno => NULL public connect_error => NULL public errno => NULL public error => NULL public error_list => NULL public field_count => NULL public host_info => NULL public info => NULL public insert_id => NULL public server_info => NULL public server_version => NULL public stat => NULL public sqlstate => NULL public protocol_version => NULL public thread_id => NULL public warning_count => NULL }protected _config => array(5) ( "type" => string(6) "MySQLi" "connection" => array(3) ( "hostname" => string(9) "localhost" "database" => string(5) "looka" "persistent" => bool FALSE ) "table_prefix" => string(7) "finder_" "charset" => string(7) "utf8mb4" "caching" => bool FALSE ) }{ protected _connection_id => string(40) "d012da34ee02fd2c23a3776760afb1e9d4e5c681" protected _identifier => string(1) "`" public last_query => string(166) "SELECT `finder_lastname`.`id` AS `id`, `finder_lastname`.`title` AS `title` FROM `finder_lastnames` AS `finder_lastname` WHERE ` …" protected _instance => string(5) "looka" protected _connection => object mysqli(19)protected _db_applied => array(0) protected _db_pending => array(0) protected _db_reset => bool TRUE protected _db_builder => NULL protected _with_applied => array(0) protected _cast_data => array(0) protected _errors_filename => string(5) "human" }{ public affected_rows => NULL public client_info => NULL public client_version => NULL public connect_errno => NULL public connect_error => NULL public errno => NULL public error => NULL public error_list => NULL public field_count => NULL public host_info => NULL public info => NULL public insert_id => NULL public server_info => NULL public server_version => NULL public stat => NULL public sqlstate => NULL public protocol_version => NULL public thread_id => NULL public warning_count => NULL }protected _config => array(5) ( "type" => string(6) "MySQLi" "connection" => array(3) ( "hostname" => string(9) "localhost" "database" => string(5) "looka" "persistent" => bool FALSE ) "table_prefix" => string(7) "finder_" "charset" => string(7) "utf8mb4" "caching" => bool FALSE ) }{ protected _connection_id => string(40) "9fdecc117b583662f3b3d15c4c4ac71fc778e18d" protected _identifier => string(1) "`" public last_query => string(185) "SELECT `category`.`id` AS `id`, `category`.`name` AS `name`, `category`.`url` AS `url`, `category`.`count` AS `count` FROM `cate …" protected _instance => string(7) "default" protected _connection => object mysqli(19)protected _db_group => NULL protected _db_applied => array(0) protected _db_pending => array(0) protected _db_reset => bool TRUE protected _db_builder => NULL protected _with_applied => array(0) protected _cast_data => array(0) protected _errors_filename => string(4) "task" }{ public affected_rows => NULL public client_info => NULL public client_version => NULL public connect_errno => NULL public connect_error => NULL public errno => NULL public error => NULL public error_list => NULL public field_count => NULL public host_info => NULL public info => NULL public insert_id => NULL public server_info => NULL public server_version => NULL public stat => NULL public sqlstate => NULL public protocol_version => NULL public thread_id => NULL public warning_count => NULL }protected _config => array(6) ( "type" => string(6) "MySQLi" "connection" => array(3) ( "hostname" => string(9) "localhost" "database" => string(9) "uznavalka" "persistent" => bool FALSE ) "table_prefix" => string(0) "" "charset" => string(7) "utf8mb4" "caching" => bool FALSE "profiling" => bool FALSE ) }{ protected _belongs_to => array(2) ( "category" => array(2) ( "model" => string(8) "Category" "foreign_key" => string(11) "category_id" ) "human" => array(2) ( "model" => string(5) "Human" "foreign_key" => string(8) "human_id" ) ) protected _has_many => array(4) ( "answers" => array(4) ( "model" => string(6) "Answer" "foreign_key" => string(7) "task_id" "through" => NULL "far_key" => string(9) "answer_id" ) "tattaches" => array(4) ( "model" => string(7) "Tattach" "foreign_key" => string(7) "task_id" "through" => NULL "far_key" => string(10) "tattach_id" ) "tops" => array(4) ( "model" => string(3) "Top" "foreign_key" => string(7) "task_id" "through" => NULL "far_key" => string(6) "top_id" ) "ipsviews" => array(4) ( "model" => string(7) "Ipsview" "foreign_key" => string(7) "task_id" "through" => NULL "far_key" => string(10) "ipsview_id" ) ) protected _reload_on_wakeup => bool FALSE protected _has_one => array(0) protected _load_with => array(0) protected _validation => NULL protected _object => array(16) ( "id" => string(7) "5872828" "category_id" => string(1) "2" "text" => string(294) "Известно, что Василия Тёркина многие солдаты считали своим однополчанином и никогда не расставались с книгой. Чем это можно объя …" "zn_id" => string(8) "11455122" "date_time" => string(19) "2019-05-08 01:34:17" "views" => string(2) "41" "human_id" => string(8) "56821243" "ya_spell" => string(1) "0" "category_key" => string(6) "337325" "has_gpt" => string(1) "1" "source" => NULL "source_id" => NULL "text_for_search" => string(287) "Известно, что Василия Тёркина многие солдаты считали своим однополчанином и никогда не расставались с книгой. Чем это можно объя …" "related" => NULL "good" => NULL "bad" => NULL ) protected _changed => array(0) protected _original_values => array(16) ( "id" => string(7) "5872828" "category_id" => string(1) "2" "text" => string(294) "Известно, что Василия Тёркина многие солдаты считали своим однополчанином и никогда не расставались с книгой. Чем это можно объя …" "zn_id" => string(8) "11455122" "date_time" => string(19) "2019-05-08 01:34:17" "views" => string(2) "41" "human_id" => string(8) "56821243" "ya_spell" => string(1) "0" "category_key" => string(6) "337325" "has_gpt" => string(1) "1" "source" => NULL "source_id" => NULL "text_for_search" => string(287) "Известно, что Василия Тёркина многие солдаты считали своим однополчанином и никогда не расставались с книгой. Чем это можно объя …" "related" => NULL "good" => NULL "bad" => NULL ) protected _related => array(1) ( "category" => object Model_Category(35)"next_task" => object Model_Task(34){ protected _has_many => array(2) ( "tasks" => array(4) ( "model" => string(4) "Task" "foreign_key" => string(11) "category_id" "through" => NULL "far_key" => string(7) "task_id" ) "tops" => array(4) ( "model" => string(3) "Top" "foreign_key" => string(11) "category_id" "through" => NULL "far_key" => string(6) "top_id" ) ) protected prefix_url => string(9) "/subject/" protected _reload_on_wakeup => bool FALSE protected _has_one => array(0) protected _belongs_to => array(0) protected _load_with => array(0) protected _validation => NULL protected _object => array(4) ( "id" => NULL "name" => NULL "url" => NULL "count" => NULL ) protected _changed => array(0) protected _original_values => array(0) protected _related => array(0) protected _valid => bool FALSE protected _loaded => bool FALSE protected _saved => bool FALSE protected _sorting => NULL protected _foreign_key_suffix => string(3) "_id" protected _object_name => string(8) "category" protected _object_plural => string(10) "categories" protected _table_name => string(10) "categories" protected _table_columns => array(4) ( "id" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(2) "id" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 1 "display" => string(2) "11" "comment" => string(0) "" "extra" => string(14) "auto_increment" "key" => string(3) "PRI" "privileges" => string(31) "select,insert,update,references" ) "name" => array(12) ( "type" => string(6) "string" "column_name" => string(4) "name" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool FALSE "ordinal_position" => integer 2 "character_maximum_length" => string(3) "255" "collation_name" => string(18) "utf8mb3_unicode_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "url" => array(12) ( "type" => string(6) "string" "column_name" => string(3) "url" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool FALSE "ordinal_position" => integer 3 "character_maximum_length" => string(3) "255" "collation_name" => string(18) "utf8mb3_unicode_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "count" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(5) "count" "column_default" => string(1) "0" "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 4 "display" => string(2) "11" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) ) protected _updated_column => NULL protected _created_column => NULL protected _serialize_columns => array(0) protected _primary_key => string(2) "id" protected _primary_key_value => NULL protected _table_names_plural => bool TRUE protected _db => object Database_MySQLi(6)) protected _valid => bool TRUE protected _loaded => bool TRUE protected _saved => bool FALSE protected _sorting => NULL protected _foreign_key_suffix => string(3) "_id" protected _object_name => string(4) "task" protected _object_plural => string(5) "tasks" protected _table_name => string(5) "tasks" protected _table_columns => array(16) ( "id" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(2) "id" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 1 "display" => string(2) "11" "comment" => string(0) "" "extra" => string(14) "auto_increment" "key" => string(3) "PRI" "privileges" => string(31) "select,insert,update,references" ) "category_id" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(11) "category_id" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 2 "display" => string(2) "11" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "text" => array(12) ( "type" => string(6) "string" "character_maximum_length" => string(5) "65535" "column_name" => string(4) "text" "column_default" => NULL "data_type" => string(4) "text" "is_nullable" => bool FALSE "ordinal_position" => integer 3 "collation_name" => string(18) "utf8mb3_unicode_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "zn_id" => array(13) ( "type" => string(3) "int" "min" => string(20) "-9223372036854775808" "max" => string(19) "9223372036854775807" "column_name" => string(5) "zn_id" "column_default" => string(1) "0" "data_type" => string(6) "bigint" "is_nullable" => bool FALSE "ordinal_position" => integer 4 "display" => string(2) "20" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "date_time" => array(10) ( "type" => string(6) "string" "column_name" => string(9) "date_time" "column_default" => string(19) "current_timestamp()" "data_type" => string(8) "datetime" "is_nullable" => bool FALSE "ordinal_position" => integer 5 "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "views" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(5) "views" "column_default" => string(1) "0" "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 6 "display" => string(2) "11" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "human_id" => array(13) ( "type" => string(3) "int" "min" => string(20) "-9223372036854775808" "max" => string(19) "9223372036854775807" "column_name" => string(8) "human_id" "column_default" => NULL "data_type" => string(6) "bigint" "is_nullable" => bool TRUE "ordinal_position" => integer 7 "display" => string(2) "20" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "ya_spell" => array(12) ( "type" => string(6) "string" "column_name" => string(8) "ya_spell" "column_default" => string(1) "0" "data_type" => string(4) "enum" "is_nullable" => bool FALSE "ordinal_position" => integer 8 "collation_name" => string(18) "utf8mb3_unicode_ci" "options" => array(2) ( 0 => string(1) "0" 1 => string(1) "1" ) "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "category_key" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(12) "category_key" "column_default" => string(1) "0" "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 9 "display" => string(2) "11" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "has_gpt" => array(12) ( "type" => string(6) "string" "column_name" => string(7) "has_gpt" "column_default" => NULL "data_type" => string(4) "enum" "is_nullable" => bool TRUE "ordinal_position" => integer 10 "collation_name" => string(18) "utf8mb3_unicode_ci" "options" => array(4) ( 0 => string(1) "0" 1 => string(1) "1" 2 => string(12) "has_attaches" 3 => string(4) "skip" ) "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "source" => array(12) ( "type" => string(6) "string" "column_name" => string(6) "source" "column_default" => NULL "data_type" => string(4) "enum" "is_nullable" => bool TRUE "ordinal_position" => integer 11 "collation_name" => string(18) "utf8mb3_unicode_ci" "options" => array(1) ( 0 => string(12) "vashurok.com" ) "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "source_id" => array(13) ( "type" => string(3) "int" "min" => string(20) "-9223372036854775808" "max" => string(19) "9223372036854775807" "column_name" => string(9) "source_id" "column_default" => NULL "data_type" => string(6) "bigint" "is_nullable" => bool TRUE "ordinal_position" => integer 12 "display" => string(2) "20" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "text_for_search" => array(12) ( "type" => string(6) "string" "character_maximum_length" => string(5) "65535" "column_name" => string(15) "text_for_search" "column_default" => NULL "data_type" => string(4) "text" "is_nullable" => bool TRUE "ordinal_position" => integer 13 "collation_name" => string(18) "utf8mb3_unicode_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "related" => array(12) ( "type" => string(6) "string" "column_name" => string(7) "related" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 14 "character_maximum_length" => string(4) "1023" "collation_name" => string(18) "utf8mb3_unicode_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "good" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(4) "good" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool TRUE "ordinal_position" => integer 15 "display" => string(2) "11" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "bad" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(3) "bad" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool TRUE "ordinal_position" => integer 16 "display" => string(2) "11" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) ) protected _updated_column => NULL protected _created_column => NULL protected _serialize_columns => array(0) protected _primary_key => string(2) "id" protected _primary_key_value => string(7) "5872828" protected _table_names_plural => bool TRUE protected _db => object Database_MySQLi(6){ protected _connection_id => string(40) "9fdecc117b583662f3b3d15c4c4ac71fc778e18d" protected _identifier => string(1) "`" public last_query => string(185) "SELECT `category`.`id` AS `id`, `category`.`name` AS `name`, `category`.`url` AS `url`, `category`.`count` AS `count` FROM `cate …" protected _instance => string(7) "default" protected _connection => object mysqli(19)protected _db_group => NULL protected _db_applied => array(1) ( "where" => string(5) "where" ) protected _db_pending => array(1) ( 0 => array(2) ( "name" => string(5) "where" "args" => array(3) ( 0 => string(11) "category.id" 1 => string(1) "=" 2 => string(1) "2" ) ) ) protected _db_reset => bool TRUE protected _db_builder => object Database_Query_Builder_Select(20){ public affected_rows => NULL public client_info => NULL public client_version => NULL public connect_errno => NULL public connect_error => NULL public errno => NULL public error => NULL public error_list => NULL public field_count => NULL public host_info => NULL public info => NULL public insert_id => NULL public server_info => NULL public server_version => NULL public stat => NULL public sqlstate => NULL public protocol_version => NULL public thread_id => NULL public warning_count => NULL }protected _config => array(6) ( "type" => string(6) "MySQLi" "connection" => array(3) ( "hostname" => string(9) "localhost" "database" => string(9) "uznavalka" "persistent" => bool FALSE ) "table_prefix" => string(0) "" "charset" => string(7) "utf8mb4" "caching" => bool FALSE "profiling" => bool FALSE ) }{ protected _use_index => NULL protected _select => array(4) ( 0 => array(2) ( 0 => string(11) "category.id" 1 => string(2) "id" ) 1 => array(2) ( 0 => string(13) "category.name" 1 => string(4) "name" ) 2 => array(2) ( 0 => string(12) "category.url" 1 => string(3) "url" ) 3 => array(2) ( 0 => string(14) "category.count" 1 => string(5) "count" ) ) protected _distinct => bool FALSE protected _from => array(1) ( 0 => array(2) ( 0 => string(10) "categories" 1 => string(8) "category" ) ) protected _join => array(0) protected _group_by => array(0) protected _having => array(0) protected _offset => NULL protected _union => array(0) protected _last_join => NULL protected _where => array(1) ( 0 => array(1) ( "AND" => array(3) ( 0 => string(11) "category.id" 1 => string(1) "=" 2 => string(1) "2" ) ) ) protected _order_by => array(0) protected _limit => integer 1 protected _type => integer 1 protected _force_execute => bool FALSE protected _lifetime => NULL protected _sql => string(185) "SELECT `category`.`id` AS `id`, `category`.`name` AS `name`, `category`.`url` AS `url`, `category`.`count` AS `count` FROM `cate …" protected _parameters => array(0) protected _as_object => bool FALSE protected _object_params => array(0) }protected _with_applied => array(0) protected _cast_data => array(0) protected _errors_filename => string(8) "category" }{ protected _connection_id => string(40) "9fdecc117b583662f3b3d15c4c4ac71fc778e18d" protected _identifier => string(1) "`" public last_query => string(185) "SELECT `category`.`id` AS `id`, `category`.`name` AS `name`, `category`.`url` AS `url`, `category`.`count` AS `count` FROM `cate …" protected _instance => string(7) "default" protected _connection => object mysqli(19)protected _db_group => NULL protected _db_applied => array(0) protected _db_pending => array(0) protected _db_reset => bool TRUE protected _db_builder => NULL protected _with_applied => array(0) protected _cast_data => array(0) protected _errors_filename => string(4) "task" }{ public affected_rows => NULL public client_info => NULL public client_version => NULL public connect_errno => NULL public connect_error => NULL public errno => NULL public error => NULL public error_list => NULL public field_count => NULL public host_info => NULL public info => NULL public insert_id => NULL public server_info => NULL public server_version => NULL public stat => NULL public sqlstate => NULL public protocol_version => NULL public thread_id => NULL public warning_count => NULL }protected _config => array(6) ( "type" => string(6) "MySQLi" "connection" => array(3) ( "hostname" => string(9) "localhost" "database" => string(9) "uznavalka" "persistent" => bool FALSE ) "table_prefix" => string(0) "" "charset" => string(7) "utf8mb4" "caching" => bool FALSE "profiling" => bool FALSE ) }{ protected _belongs_to => array(2) ( "category" => array(2) ( "model" => string(8) "Category" "foreign_key" => string(11) "category_id" ) "human" => array(2) ( "model" => string(5) "Human" "foreign_key" => string(8) "human_id" ) ) protected _has_many => array(4) ( "answers" => array(4) ( "model" => string(6) "Answer" "foreign_key" => string(7) "task_id" "through" => NULL "far_key" => string(9) "answer_id" ) "tattaches" => array(4) ( "model" => string(7) "Tattach" "foreign_key" => string(7) "task_id" "through" => NULL "far_key" => string(10) "tattach_id" ) "tops" => array(4) ( "model" => string(3) "Top" "foreign_key" => string(7) "task_id" "through" => NULL "far_key" => string(6) "top_id" ) "ipsviews" => array(4) ( "model" => string(7) "Ipsview" "foreign_key" => string(7) "task_id" "through" => NULL "far_key" => string(10) "ipsview_id" ) ) protected _reload_on_wakeup => bool FALSE protected _has_one => array(0) protected _load_with => array(0) protected _validation => NULL protected _object => array(16) ( "id" => string(7) "5872831" "category_id" => string(1) "1" "text" => string(312) "При движении по течению реки расстояние в 144км моторная<br /> лодка проходит за 6ч. Какова скорость лодки в стоячей воде,<br /> …" "zn_id" => string(8) "25743100" "date_time" => string(19) "2019-05-08 01:34:22" "views" => string(2) "30" "human_id" => string(8) "26941726" "ya_spell" => string(1) "0" "category_key" => string(7) "1685423" "has_gpt" => string(1) "1" "source" => NULL "source_id" => NULL "text_for_search" => string(294) "При движении по течению реки расстояние в 144км моторная лодка проходит за 6ч. Какова скорость лодки в стоячей воде, если плот т …" "related" => NULL "good" => NULL "bad" => NULL ) protected _changed => array(0) protected _original_values => array(16) ( "id" => string(7) "5872831" "category_id" => string(1) "1" "text" => string(312) "При движении по течению реки расстояние в 144км моторная<br /> лодка проходит за 6ч. Какова скорость лодки в стоячей воде,<br /> …" "zn_id" => string(8) "25743100" "date_time" => string(19) "2019-05-08 01:34:22" "views" => string(2) "30" "human_id" => string(8) "26941726" "ya_spell" => string(1) "0" "category_key" => string(7) "1685423" "has_gpt" => string(1) "1" "source" => NULL "source_id" => NULL "text_for_search" => string(294) "При движении по течению реки расстояние в 144км моторная лодка проходит за 6ч. Какова скорость лодки в стоячей воде, если плот т …" "related" => NULL "good" => NULL "bad" => NULL ) protected _related => array(0) protected _valid => bool TRUE protected _loaded => bool TRUE protected _saved => bool FALSE protected _sorting => NULL protected _foreign_key_suffix => string(3) "_id" protected _object_name => string(4) "task" protected _object_plural => string(5) "tasks" protected _table_name => string(5) "tasks" protected _table_columns => array(16) ( "id" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(2) "id" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 1 "display" => string(2) "11" "comment" => string(0) "" "extra" => string(14) "auto_increment" "key" => string(3) "PRI" "privileges" => string(31) "select,insert,update,references" ) "category_id" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(11) "category_id" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 2 "display" => string(2) "11" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "text" => array(12) ( "type" => string(6) "string" "character_maximum_length" => string(5) "65535" "column_name" => string(4) "text" "column_default" => NULL "data_type" => string(4) "text" "is_nullable" => bool FALSE "ordinal_position" => integer 3 "collation_name" => string(18) "utf8mb3_unicode_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "zn_id" => array(13) ( "type" => string(3) "int" "min" => string(20) "-9223372036854775808" "max" => string(19) "9223372036854775807" "column_name" => string(5) "zn_id" "column_default" => string(1) "0" "data_type" => string(6) "bigint" "is_nullable" => bool FALSE "ordinal_position" => integer 4 "display" => string(2) "20" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "date_time" => array(10) ( "type" => string(6) "string" "column_name" => string(9) "date_time" "column_default" => string(19) "current_timestamp()" "data_type" => string(8) "datetime" "is_nullable" => bool FALSE "ordinal_position" => integer 5 "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "views" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(5) "views" "column_default" => string(1) "0" "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 6 "display" => string(2) "11" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "human_id" => array(13) ( "type" => string(3) "int" "min" => string(20) "-9223372036854775808" "max" => string(19) "9223372036854775807" "column_name" => string(8) "human_id" "column_default" => NULL "data_type" => string(6) "bigint" "is_nullable" => bool TRUE "ordinal_position" => integer 7 "display" => string(2) "20" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "ya_spell" => array(12) ( "type" => string(6) "string" "column_name" => string(8) "ya_spell" "column_default" => string(1) "0" "data_type" => string(4) "enum" "is_nullable" => bool FALSE "ordinal_position" => integer 8 "collation_name" => string(18) "utf8mb3_unicode_ci" "options" => array(2) ( 0 => string(1) "0" 1 => string(1) "1" ) "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "category_key" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(12) "category_key" "column_default" => string(1) "0" "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 9 "display" => string(2) "11" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "has_gpt" => array(12) ( "type" => string(6) "string" "column_name" => string(7) "has_gpt" "column_default" => NULL "data_type" => string(4) "enum" "is_nullable" => bool TRUE "ordinal_position" => integer 10 "collation_name" => string(18) "utf8mb3_unicode_ci" "options" => array(4) ( 0 => string(1) "0" 1 => string(1) "1" 2 => string(12) "has_attaches" 3 => string(4) "skip" ) "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "source" => array(12) ( "type" => string(6) "string" "column_name" => string(6) "source" "column_default" => NULL "data_type" => string(4) "enum" "is_nullable" => bool TRUE "ordinal_position" => integer 11 "collation_name" => string(18) "utf8mb3_unicode_ci" "options" => array(1) ( 0 => string(12) "vashurok.com" ) "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "source_id" => array(13) ( "type" => string(3) "int" "min" => string(20) "-9223372036854775808" "max" => string(19) "9223372036854775807" "column_name" => string(9) "source_id" "column_default" => NULL "data_type" => string(6) "bigint" "is_nullable" => bool TRUE "ordinal_position" => integer 12 "display" => string(2) "20" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "text_for_search" => array(12) ( "type" => string(6) "string" "character_maximum_length" => string(5) "65535" "column_name" => string(15) "text_for_search" "column_default" => NULL "data_type" => string(4) "text" "is_nullable" => bool TRUE "ordinal_position" => integer 13 "collation_name" => string(18) "utf8mb3_unicode_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "related" => array(12) ( "type" => string(6) "string" "column_name" => string(7) "related" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 14 "character_maximum_length" => string(4) "1023" "collation_name" => string(18) "utf8mb3_unicode_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "good" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(4) "good" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool TRUE "ordinal_position" => integer 15 "display" => string(2) "11" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "bad" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(3) "bad" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool TRUE "ordinal_position" => integer 16 "display" => string(2) "11" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) ) protected _updated_column => NULL protected _created_column => NULL protected _serialize_columns => array(0) protected _primary_key => string(2) "id" protected _primary_key_value => string(7) "5872831" protected _table_names_plural => bool TRUE protected _db => object Database_MySQLi(6)"tasks" => object Database_MySQLi_Result(7){ protected _connection_id => string(40) "9fdecc117b583662f3b3d15c4c4ac71fc778e18d" protected _identifier => string(1) "`" public last_query => string(185) "SELECT `category`.`id` AS `id`, `category`.`name` AS `name`, `category`.`url` AS `url`, `category`.`count` AS `count` FROM `cate …" protected _instance => string(7) "default" protected _connection => object mysqli(19)protected _db_group => NULL protected _db_applied => array(0) protected _db_pending => array(0) protected _db_reset => bool TRUE protected _db_builder => NULL protected _with_applied => array(0) protected _cast_data => array(0) protected _errors_filename => string(4) "task" }{ public affected_rows => NULL public client_info => NULL public client_version => NULL public connect_errno => NULL public connect_error => NULL public errno => NULL public error => NULL public error_list => NULL public field_count => NULL public host_info => NULL public info => NULL public insert_id => NULL public server_info => NULL public server_version => NULL public stat => NULL public sqlstate => NULL public protocol_version => NULL public thread_id => NULL public warning_count => NULL }protected _config => array(6) ( "type" => string(6) "MySQLi" "connection" => array(3) ( "hostname" => string(9) "localhost" "database" => string(9) "uznavalka" "persistent" => bool FALSE ) "table_prefix" => string(0) "" "charset" => string(7) "utf8mb4" "caching" => bool FALSE "profiling" => bool FALSE ) }{ protected _internal_row => integer 2 protected _query => string(621) "SELECT `task`.`id` AS `id`, `task`.`category_id` AS `category_id`, `task`.`text` AS `text`, `task`.`zn_id` AS `zn_id`, `task`.`d …" protected _result => object mysqli_result(5)"answer" => object Model_Answer(34){ public current_field => NULL public field_count => NULL public lengths => NULL public num_rows => NULL public type => NULL }protected _total_rows => integer 10 protected _current_row => integer 1 protected _as_object => string(10) "Model_Task" protected _object_params => NULL }{ protected _belongs_to => array(2) ( "human" => array(2) ( "model" => string(5) "Human" "foreign_key" => string(8) "human_id" ) "task" => array(2) ( "model" => string(4) "Task" "foreign_key" => string(7) "task_id" ) ) protected _has_many => array(1) ( "aattaches" => array(4) ( "model" => string(7) "Aattach" "foreign_key" => string(9) "answer_id" "through" => NULL "far_key" => string(10) "aattach_id" ) ) protected _reload_on_wakeup => bool FALSE protected _has_one => array(0) protected _load_with => array(0) protected _validation => NULL protected _object => array(11) ( "id" => string(7) "7099103" "task_id" => string(7) "5872829" "text" => string(148) "<div class="sg-text js-answer-content brn-rich-content" data-test="answer-content"> Х-2,24<br />168-22,4<br />х=16,8г<br />16,8/ …" "human_id" => string(8) "22972330" "type" => NULL "datetime" => NULL "gptemail_id" => string(1) "0" "good" => NULL "bad" => NULL "public" => string(1) "1" "provider" => NULL ) protected _changed => array(0) protected _original_values => array(11) ( "id" => string(7) "7099103" "task_id" => string(7) "5872829" "text" => string(148) "<div class="sg-text js-answer-content brn-rich-content" data-test="answer-content"> Х-2,24<br />168-22,4<br />х=16,8г<br />16,8/ …" "human_id" => string(8) "22972330" "type" => NULL "datetime" => NULL "gptemail_id" => string(1) "0" "good" => NULL "bad" => NULL "public" => string(1) "1" "provider" => NULL ) protected _related => array(0) protected _valid => bool TRUE protected _loaded => bool TRUE protected _saved => bool FALSE protected _sorting => NULL protected _foreign_key_suffix => string(3) "_id" protected _object_name => string(6) "answer" protected _object_plural => string(7) "answers" protected _table_name => string(7) "answers" protected _table_columns => array(11) ( "id" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(2) "id" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 1 "display" => string(2) "11" "comment" => string(0) "" "extra" => string(14) "auto_increment" "key" => string(3) "PRI" "privileges" => string(31) "select,insert,update,references" ) "task_id" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(7) "task_id" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 2 "display" => string(2) "11" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "text" => array(12) ( "type" => string(6) "string" "character_maximum_length" => string(5) "65535" "column_name" => string(4) "text" "column_default" => NULL "data_type" => string(4) "text" "is_nullable" => bool FALSE "ordinal_position" => integer 3 "collation_name" => string(18) "utf8mb3_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "human_id" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(8) "human_id" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool TRUE "ordinal_position" => integer 4 "display" => string(2) "11" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "type" => array(12) ( "type" => string(6) "string" "column_name" => string(4) "type" "column_default" => NULL "data_type" => string(4) "enum" "is_nullable" => bool TRUE "ordinal_position" => integer 5 "collation_name" => string(18) "utf8mb3_general_ci" "options" => array(1) ( 0 => string(3) "gpt" ) "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "datetime" => array(10) ( "type" => string(6) "string" "column_name" => string(8) "datetime" "column_default" => NULL "data_type" => string(8) "datetime" "is_nullable" => bool TRUE "ordinal_position" => integer 6 "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "gptemail_id" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(11) "gptemail_id" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool TRUE "ordinal_position" => integer 7 "display" => string(2) "11" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "good" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(4) "good" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool TRUE "ordinal_position" => integer 8 "display" => string(2) "11" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "bad" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(3) "bad" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool TRUE "ordinal_position" => integer 9 "display" => string(2) "11" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "public" => array(12) ( "type" => string(6) "string" "column_name" => string(6) "public" "column_default" => string(1) "1" "data_type" => string(4) "enum" "is_nullable" => bool FALSE "ordinal_position" => integer 10 "collation_name" => string(18) "utf8mb3_general_ci" "options" => array(4) ( 0 => string(1) "0" 1 => string(1) "1" 2 => string(1) "2" 3 => string(0) "" ) "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "provider" => array(12) ( "type" => string(6) "string" "column_name" => string(8) "provider" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 11 "character_maximum_length" => string(3) "255" "collation_name" => string(18) "utf8mb3_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) ) protected _updated_column => NULL protected _created_column => NULL protected _serialize_columns => array(0) protected _primary_key => string(2) "id" protected _primary_key_value => string(7) "7099103" protected _table_names_plural => bool TRUE protected _db => object Database_MySQLi(6)"related_tasks" => array(0) "top_yesterday_tasks" => array(10) ( 0 => object Model_Task(34){ protected _connection_id => string(40) "9fdecc117b583662f3b3d15c4c4ac71fc778e18d" protected _identifier => string(1) "`" public last_query => string(185) "SELECT `category`.`id` AS `id`, `category`.`name` AS `name`, `category`.`url` AS `url`, `category`.`count` AS `count` FROM `cate …" protected _instance => string(7) "default" protected _connection => object mysqli(19)protected _db_group => NULL protected _db_applied => array(0) protected _db_pending => array(0) protected _db_reset => bool TRUE protected _db_builder => NULL protected _with_applied => array(0) protected _cast_data => array(0) protected _errors_filename => string(6) "answer" }{ public affected_rows => NULL public client_info => NULL public client_version => NULL public connect_errno => NULL public connect_error => NULL public errno => NULL public error => NULL public error_list => NULL public field_count => NULL public host_info => NULL public info => NULL public insert_id => NULL public server_info => NULL public server_version => NULL public stat => NULL public sqlstate => NULL public protocol_version => NULL public thread_id => NULL public warning_count => NULL }protected _config => array(6) ( "type" => string(6) "MySQLi" "connection" => array(3) ( "hostname" => string(9) "localhost" "database" => string(9) "uznavalka" "persistent" => bool FALSE ) "table_prefix" => string(0) "" "charset" => string(7) "utf8mb4" "caching" => bool FALSE "profiling" => bool FALSE ) }{ protected _belongs_to => array(2) ( "category" => array(2) ( "model" => string(8) "Category" "foreign_key" => string(11) "category_id" ) "human" => array(2) ( "model" => string(5) "Human" "foreign_key" => string(8) "human_id" ) ) protected _has_many => array(4) ( "answers" => array(4) ( "model" => string(6) "Answer" "foreign_key" => string(7) "task_id" "through" => NULL "far_key" => string(9) "answer_id" ) "tattaches" => array(4) ( "model" => string(7) "Tattach" "foreign_key" => string(7) "task_id" "through" => NULL "far_key" => string(10) "tattach_id" ) "tops" => array(4) ( "model" => string(3) "Top" "foreign_key" => string(7) "task_id" "through" => NULL "far_key" => string(6) "top_id" ) "ipsviews" => array(4) ( "model" => string(7) "Ipsview" "foreign_key" => string(7) "task_id" "through" => NULL "far_key" => string(10) "ipsview_id" ) ) protected _reload_on_wakeup => bool FALSE protected _has_one => array(0) protected _load_with => array(0) protected _validation => NULL protected _object => array(16) ( "id" => string(8) "14116615" "category_id" => string(1) "7" "text" => string(2681) "<span class="sg-text sg-text--large sg-text--bold sg-text--break-words brn-qpage-next-question-box-content__primary"> 1. Ра …" "zn_id" => string(8) "36460897" "date_time" => string(19) "2023-07-07 05:27:36" "views" => string(2) "42" "human_id" => string(7) "3202407" "ya_spell" => string(1) "0" "category_key" => string(6) "667139" "has_gpt" => string(1) "1" "source" => NULL "source_id" => NULL "text_for_search" => string(2340) "1. Разделите предложенные вещества: Al, H 2 , CaO, N 2 , C, HCl , Cu, Н 2 O, Ag,&nb …" "related" => string(107) "["13507366","11115815","1673274","13382253","11147251","13877146","13686780","11620305","755942","1025905"]" "good" => NULL "bad" => NULL ) protected _changed => array(0) protected _original_values => array(16) ( "id" => string(8) "14116615" "category_id" => string(1) "7" "text" => string(2681) "<span class="sg-text sg-text--large sg-text--bold sg-text--break-words brn-qpage-next-question-box-content__primary"> 1. Ра …" "zn_id" => string(8) "36460897" "date_time" => string(19) "2023-07-07 05:27:36" "views" => string(2) "42" "human_id" => string(7) "3202407" "ya_spell" => string(1) "0" "category_key" => string(6) "667139" "has_gpt" => string(1) "1" "source" => NULL "source_id" => NULL "text_for_search" => string(2340) "1. Разделите предложенные вещества: Al, H 2 , CaO, N 2 , C, HCl , Cu, Н 2 O, Ag,&nb …" "related" => string(107) "["13507366","11115815","1673274","13382253","11147251","13877146","13686780","11620305","755942","1025905"]" "good" => NULL "bad" => NULL ) protected _related => array(2) ( "human" => object Model_Human(34)1 => object Model_Task(34){ protected _db_group => string(5) "looka" protected _has_many => array(4) ( "universities" => array(5) ( "model" => string(10) "university" "foreign_key" => string(8) "human_id" "through" => string(19) "humans_universities" "far_key" => string(13) "university_id" "_table_columns" => array(5) ( "faculty_id" => NULL "chair_id" => NULL "graduation" => NULL "education_form" => NULL "education_status" => NULL ) ) "humans_universities" => array(4) ( "model" => string(17) "Humans_University" "foreign_key" => string(8) "human_id" "through" => NULL "far_key" => string(20) "humans_university_id" ) "schools" => array(5) ( "model" => string(6) "school" "foreign_key" => string(8) "human_id" "through" => string(14) "humans_schools" "far_key" => string(9) "school_id" "_table_columns" => array(6) ( "year_from" => NULL "year_to" => NULL "year_graduated" => NULL "class" => NULL "speciality" => NULL "type" => NULL ) ) "humans_schools" => array(4) ( "model" => string(13) "Humans_School" "foreign_key" => string(8) "human_id" "through" => NULL "far_key" => string(16) "humans_school_id" ) ) protected _belongs_to => array(4) ( "lastname" => array(2) ( "model" => string(8) "Lastname" "foreign_key" => string(11) "lastname_id" ) "firstname" => array(2) ( "model" => string(9) "Firstname" "foreign_key" => string(12) "firstname_id" ) "country" => array(2) ( "model" => string(7) "Country" "foreign_key" => string(10) "country_id" ) "city" => array(2) ( "model" => string(4) "City" "foreign_key" => string(7) "city_id" ) ) protected _reload_on_wakeup => bool FALSE protected _has_one => array(0) protected _load_with => array(0) protected _validation => NULL protected _object => array(21) ( "id" => string(7) "3202407" "lastname_id" => string(4) "6171" "firstname_id" => string(3) "280" "nickname" => string(0) "" "vk_id" => string(9) "298678624" "bdate" => string(10) "2004-01-20" "info" => NULL "photo" => string(67) "https://sun9-7.userapi.com/c840733/v840733432/678c8/DDRBrk4tvY0.jpg" "city_id" => string(7) "1937764" "country_id" => string(3) "209" "home_town" => NULL "home_phone" => NULL "skype" => NULL "facebook" => NULL "twitter" => NULL "livejournal" => NULL "instagram" => NULL "occupation_type" => string(4) "work" "occupation_name" => string(7) "YouTube" "rate" => string(2) "12" "count_firstnames_lastnames" => NULL ) protected _changed => array(0) protected _original_values => array(21) ( "id" => string(7) "3202407" "lastname_id" => string(4) "6171" "firstname_id" => string(3) "280" "nickname" => string(0) "" "vk_id" => string(9) "298678624" "bdate" => string(10) "2004-01-20" "info" => NULL "photo" => string(67) "https://sun9-7.userapi.com/c840733/v840733432/678c8/DDRBrk4tvY0.jpg" "city_id" => string(7) "1937764" "country_id" => string(3) "209" "home_town" => NULL "home_phone" => NULL "skype" => NULL "facebook" => NULL "twitter" => NULL "livejournal" => NULL "instagram" => NULL "occupation_type" => string(4) "work" "occupation_name" => string(7) "YouTube" "rate" => string(2) "12" "count_firstnames_lastnames" => NULL ) protected _related => array(2) ( "lastname" => object Model_Lastname(34)"category" => object Model_Category(35){ protected _db_group => string(5) "looka" protected _reload_on_wakeup => bool FALSE protected _has_one => array(0) protected _belongs_to => array(0) protected _has_many => array(0) protected _load_with => array(0) protected _validation => NULL protected _object => array(2) ( "id" => string(4) "6171" "title" => string(20) "Николайчук" ) protected _changed => array(0) protected _original_values => array(2) ( "id" => string(4) "6171" "title" => string(20) "Николайчук" ) protected _related => array(0) protected _valid => bool TRUE protected _loaded => bool TRUE protected _saved => bool FALSE protected _sorting => NULL protected _foreign_key_suffix => string(3) "_id" protected _object_name => string(8) "lastname" protected _object_plural => string(9) "lastnames" protected _table_name => string(9) "lastnames" protected _table_columns => array(2) ( "id" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(2) "id" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 1 "display" => string(2) "11" "comment" => string(0) "" "extra" => string(14) "auto_increment" "key" => string(3) "PRI" "privileges" => string(31) "select,insert,update,references" ) "title" => array(12) ( "type" => string(6) "string" "column_name" => string(5) "title" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool FALSE "ordinal_position" => integer 2 "character_maximum_length" => string(3) "255" "collation_name" => string(18) "utf8mb4_unicode_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) ) protected _updated_column => NULL protected _created_column => NULL protected _serialize_columns => array(0) protected _primary_key => string(2) "id" protected _primary_key_value => string(4) "6171" protected _table_names_plural => bool TRUE protected _db => object Database_MySQLi(6)"firstname" => object Model_Firstname(34){ protected _connection_id => string(40) "d012da34ee02fd2c23a3776760afb1e9d4e5c681" protected _identifier => string(1) "`" public last_query => string(166) "SELECT `finder_lastname`.`id` AS `id`, `finder_lastname`.`title` AS `title` FROM `finder_lastnames` AS `finder_lastname` WHERE ` …" protected _instance => string(5) "looka" protected _connection => object mysqli(19)protected _db_applied => array(0) protected _db_pending => array(0) protected _db_reset => bool TRUE protected _db_builder => NULL protected _with_applied => array(0) protected _cast_data => array(0) protected _errors_filename => string(8) "lastname" }{ public affected_rows => NULL public client_info => NULL public client_version => NULL public connect_errno => NULL public connect_error => NULL public errno => NULL public error => NULL public error_list => NULL public field_count => NULL public host_info => NULL public info => NULL public insert_id => NULL public server_info => NULL public server_version => NULL public stat => NULL public sqlstate => NULL public protocol_version => NULL public thread_id => NULL public warning_count => NULL }protected _config => array(5) ( "type" => string(6) "MySQLi" "connection" => array(3) ( "hostname" => string(9) "localhost" "database" => string(5) "looka" "persistent" => bool FALSE ) "table_prefix" => string(7) "finder_" "charset" => string(7) "utf8mb4" "caching" => bool FALSE ) }{ protected _db_group => string(5) "looka" protected _has_many => array(1) ( "humans" => array(4) ( "model" => string(5) "Human" "foreign_key" => string(12) "firstname_id" "through" => NULL "far_key" => string(8) "human_id" ) ) protected _reload_on_wakeup => bool FALSE protected _has_one => array(0) protected _belongs_to => array(0) protected _load_with => array(0) protected _validation => NULL protected _object => array(2) ( "id" => string(3) "280" "title" => string(8) "Ваня" ) protected _changed => array(0) protected _original_values => array(2) ( "id" => string(3) "280" "title" => string(8) "Ваня" ) protected _related => array(0) protected _valid => bool TRUE protected _loaded => bool TRUE protected _saved => bool FALSE protected _sorting => NULL protected _foreign_key_suffix => string(3) "_id" protected _object_name => string(9) "firstname" protected _object_plural => string(10) "firstnames" protected _table_name => string(10) "firstnames" protected _table_columns => array(2) ( "id" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(2) "id" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 1 "display" => string(2) "11" "comment" => string(0) "" "extra" => string(14) "auto_increment" "key" => string(3) "PRI" "privileges" => string(31) "select,insert,update,references" ) "title" => array(12) ( "type" => string(6) "string" "column_name" => string(5) "title" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 2 "character_maximum_length" => string(3) "255" "collation_name" => string(18) "utf8mb4_unicode_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) ) protected _updated_column => NULL protected _created_column => NULL protected _serialize_columns => array(0) protected _primary_key => string(2) "id" protected _primary_key_value => string(3) "280" protected _table_names_plural => bool TRUE protected _db => object Database_MySQLi(6)) protected _valid => bool TRUE protected _loaded => bool TRUE protected _saved => bool FALSE protected _sorting => NULL protected _foreign_key_suffix => string(3) "_id" protected _object_name => string(5) "human" protected _object_plural => string(6) "humans" protected _table_name => string(6) "humans" protected _table_columns => array(21) ( "id" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(2) "id" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 1 "display" => string(2) "11" "comment" => string(0) "" "extra" => string(14) "auto_increment" "key" => string(3) "PRI" "privileges" => string(31) "select,insert,update,references" ) "lastname_id" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(11) "lastname_id" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 2 "display" => string(2) "11" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "firstname_id" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(12) "firstname_id" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 3 "display" => string(2) "11" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "nickname" => array(12) ( "type" => string(6) "string" "column_name" => string(8) "nickname" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 4 "character_maximum_length" => string(3) "255" "collation_name" => string(18) "utf8mb4_unicode_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "vk_id" => array(13) ( "type" => string(3) "int" "min" => string(20) "-9223372036854775808" "max" => string(19) "9223372036854775807" "column_name" => string(5) "vk_id" "column_default" => NULL "data_type" => string(6) "bigint" "is_nullable" => bool TRUE "ordinal_position" => integer 5 "display" => string(2) "20" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "bdate" => array(10) ( "type" => string(6) "string" "column_name" => string(5) "bdate" "column_default" => NULL "data_type" => string(4) "date" "is_nullable" => bool TRUE "ordinal_position" => integer 6 "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "info" => array(12) ( "type" => string(6) "string" "column_name" => string(4) "info" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 7 "character_maximum_length" => string(4) "1023" "collation_name" => string(18) "utf8mb4_unicode_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "photo" => array(12) ( "type" => string(6) "string" "column_name" => string(5) "photo" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 8 "character_maximum_length" => string(3) "255" "collation_name" => string(18) "utf8mb4_unicode_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "city_id" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(7) "city_id" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool TRUE "ordinal_position" => integer 9 "display" => string(2) "11" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "country_id" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(10) "country_id" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool TRUE "ordinal_position" => integer 10 "display" => string(2) "11" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "home_town" => array(12) ( "type" => string(6) "string" "column_name" => string(9) "home_town" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 11 "character_maximum_length" => string(3) "255" "collation_name" => string(18) "utf8mb4_unicode_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "home_phone" => array(12) ( "type" => string(6) "string" "column_name" => string(10) "home_phone" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 12 "character_maximum_length" => string(2) "63" "collation_name" => string(18) "utf8mb4_unicode_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "skype" => array(12) ( "type" => string(6) "string" "column_name" => string(5) "skype" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 13 "character_maximum_length" => string(3) "127" "collation_name" => string(18) "utf8mb4_unicode_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "facebook" => array(12) ( "type" => string(6) "string" "column_name" => string(8) "facebook" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 14 "character_maximum_length" => string(3) "127" "collation_name" => string(18) "utf8mb4_unicode_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "twitter" => array(12) ( "type" => string(6) "string" "column_name" => string(7) "twitter" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 15 "character_maximum_length" => string(3) "127" "collation_name" => string(18) "utf8mb4_unicode_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "livejournal" => array(12) ( "type" => string(6) "string" "column_name" => string(11) "livejournal" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 16 "character_maximum_length" => string(3) "127" "collation_name" => string(18) "utf8mb4_unicode_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "instagram" => array(12) ( "type" => string(6) "string" "column_name" => string(9) "instagram" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 17 "character_maximum_length" => string(3) "127" "collation_name" => string(18) "utf8mb4_unicode_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "occupation_type" => array(12) ( "type" => string(6) "string" "column_name" => string(15) "occupation_type" "column_default" => NULL "data_type" => string(4) "enum" "is_nullable" => bool TRUE "ordinal_position" => integer 18 "collation_name" => string(18) "utf8mb4_unicode_ci" "options" => array(3) ( 0 => string(4) "work" 1 => string(6) "school" 2 => string(10) "university" ) "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "occupation_name" => array(12) ( "type" => string(6) "string" "column_name" => string(15) "occupation_name" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 19 "character_maximum_length" => string(3) "255" "collation_name" => string(18) "utf8mb4_unicode_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "rate" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(4) "rate" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 20 "display" => string(2) "11" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "count_firstnames_lastnames" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(26) "count_firstnames_lastnames" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool TRUE "ordinal_position" => integer 21 "display" => string(2) "11" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) ) protected _updated_column => NULL protected _created_column => NULL protected _serialize_columns => array(0) protected _primary_key => string(2) "id" protected _primary_key_value => string(7) "3202407" protected _table_names_plural => bool TRUE protected _db => object Database_MySQLi(6){ protected _connection_id => string(40) "d012da34ee02fd2c23a3776760afb1e9d4e5c681" protected _identifier => string(1) "`" public last_query => string(166) "SELECT `finder_lastname`.`id` AS `id`, `finder_lastname`.`title` AS `title` FROM `finder_lastnames` AS `finder_lastname` WHERE ` …" protected _instance => string(5) "looka" protected _connection => object mysqli(19)protected _db_applied => array(0) protected _db_pending => array(0) protected _db_reset => bool TRUE protected _db_builder => NULL protected _with_applied => array(0) protected _cast_data => array(0) protected _errors_filename => string(9) "firstname" }{ public affected_rows => NULL public client_info => NULL public client_version => NULL public connect_errno => NULL public connect_error => NULL public errno => NULL public error => NULL public error_list => NULL public field_count => NULL public host_info => NULL public info => NULL public insert_id => NULL public server_info => NULL public server_version => NULL public stat => NULL public sqlstate => NULL public protocol_version => NULL public thread_id => NULL public warning_count => NULL }protected _config => array(5) ( "type" => string(6) "MySQLi" "connection" => array(3) ( "hostname" => string(9) "localhost" "database" => string(5) "looka" "persistent" => bool FALSE ) "table_prefix" => string(7) "finder_" "charset" => string(7) "utf8mb4" "caching" => bool FALSE ) }{ protected _connection_id => string(40) "d012da34ee02fd2c23a3776760afb1e9d4e5c681" protected _identifier => string(1) "`" public last_query => string(166) "SELECT `finder_lastname`.`id` AS `id`, `finder_lastname`.`title` AS `title` FROM `finder_lastnames` AS `finder_lastname` WHERE ` …" protected _instance => string(5) "looka" protected _connection => object mysqli(19)protected _db_applied => array(0) protected _db_pending => array(0) protected _db_reset => bool TRUE protected _db_builder => NULL protected _with_applied => array(0) protected _cast_data => array(0) protected _errors_filename => string(5) "human" }{ public affected_rows => NULL public client_info => NULL public client_version => NULL public connect_errno => NULL public connect_error => NULL public errno => NULL public error => NULL public error_list => NULL public field_count => NULL public host_info => NULL public info => NULL public insert_id => NULL public server_info => NULL public server_version => NULL public stat => NULL public sqlstate => NULL public protocol_version => NULL public thread_id => NULL public warning_count => NULL }protected _config => array(5) ( "type" => string(6) "MySQLi" "connection" => array(3) ( "hostname" => string(9) "localhost" "database" => string(5) "looka" "persistent" => bool FALSE ) "table_prefix" => string(7) "finder_" "charset" => string(7) "utf8mb4" "caching" => bool FALSE ) }{ protected _has_many => array(2) ( "tasks" => array(4) ( "model" => string(4) "Task" "foreign_key" => string(11) "category_id" "through" => NULL "far_key" => string(7) "task_id" ) "tops" => array(4) ( "model" => string(3) "Top" "foreign_key" => string(11) "category_id" "through" => NULL "far_key" => string(6) "top_id" ) ) protected prefix_url => string(9) "/subject/" protected _reload_on_wakeup => bool FALSE protected _has_one => array(0) protected _belongs_to => array(0) protected _load_with => array(0) protected _validation => NULL protected _object => array(4) ( "id" => string(1) "7" "name" => string(10) "Химия" "url" => string(9) "chemistry" "count" => string(6) "799022" ) protected _changed => array(0) protected _original_values => array(4) ( "id" => string(1) "7" "name" => string(10) "Химия" "url" => string(9) "chemistry" "count" => string(6) "799022" ) protected _related => array(0) protected _valid => bool TRUE protected _loaded => bool TRUE protected _saved => bool FALSE protected _sorting => NULL protected _foreign_key_suffix => string(3) "_id" protected _object_name => string(8) "category" protected _object_plural => string(10) "categories" protected _table_name => string(10) "categories" protected _table_columns => array(4) ( "id" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(2) "id" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 1 "display" => string(2) "11" "comment" => string(0) "" "extra" => string(14) "auto_increment" "key" => string(3) "PRI" "privileges" => string(31) "select,insert,update,references" ) "name" => array(12) ( "type" => string(6) "string" "column_name" => string(4) "name" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool FALSE "ordinal_position" => integer 2 "character_maximum_length" => string(3) "255" "collation_name" => string(18) "utf8mb3_unicode_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "url" => array(12) ( "type" => string(6) "string" "column_name" => string(3) "url" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool FALSE "ordinal_position" => integer 3 "character_maximum_length" => string(3) "255" "collation_name" => string(18) "utf8mb3_unicode_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "count" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(5) "count" "column_default" => string(1) "0" "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 4 "display" => string(2) "11" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) ) protected _updated_column => NULL protected _created_column => NULL protected _serialize_columns => array(0) protected _primary_key => string(2) "id" protected _primary_key_value => string(1) "7" protected _table_names_plural => bool TRUE protected _db => object Database_MySQLi(6)) protected _valid => bool TRUE protected _loaded => bool TRUE protected _saved => bool FALSE protected _sorting => NULL protected _foreign_key_suffix => string(3) "_id" protected _object_name => string(4) "task" protected _object_plural => string(5) "tasks" protected _table_name => string(5) "tasks" protected _table_columns => array(16) ( "id" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(2) "id" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 1 "display" => string(2) "11" "comment" => string(0) "" "extra" => string(14) "auto_increment" "key" => string(3) "PRI" "privileges" => string(31) "select,insert,update,references" ) "category_id" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(11) "category_id" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 2 "display" => string(2) "11" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "text" => array(12) ( "type" => string(6) "string" "character_maximum_length" => string(5) "65535" "column_name" => string(4) "text" "column_default" => NULL "data_type" => string(4) "text" "is_nullable" => bool FALSE "ordinal_position" => integer 3 "collation_name" => string(18) "utf8mb3_unicode_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "zn_id" => array(13) ( "type" => string(3) "int" "min" => string(20) "-9223372036854775808" "max" => string(19) "9223372036854775807" "column_name" => string(5) "zn_id" "column_default" => string(1) "0" "data_type" => string(6) "bigint" "is_nullable" => bool FALSE "ordinal_position" => integer 4 "display" => string(2) "20" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "date_time" => array(10) ( "type" => string(6) "string" "column_name" => string(9) "date_time" "column_default" => string(19) "current_timestamp()" "data_type" => string(8) "datetime" "is_nullable" => bool FALSE "ordinal_position" => integer 5 "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "views" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(5) "views" "column_default" => string(1) "0" "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 6 "display" => string(2) "11" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "human_id" => array(13) ( "type" => string(3) "int" "min" => string(20) "-9223372036854775808" "max" => string(19) "9223372036854775807" "column_name" => string(8) "human_id" "column_default" => NULL "data_type" => string(6) "bigint" "is_nullable" => bool TRUE "ordinal_position" => integer 7 "display" => string(2) "20" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "ya_spell" => array(12) ( "type" => string(6) "string" "column_name" => string(8) "ya_spell" "column_default" => string(1) "0" "data_type" => string(4) "enum" "is_nullable" => bool FALSE "ordinal_position" => integer 8 "collation_name" => string(18) "utf8mb3_unicode_ci" "options" => array(2) ( 0 => string(1) "0" 1 => string(1) "1" ) "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "category_key" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(12) "category_key" "column_default" => string(1) "0" "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 9 "display" => string(2) "11" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "has_gpt" => array(12) ( "type" => string(6) "string" "column_name" => string(7) "has_gpt" "column_default" => NULL "data_type" => string(4) "enum" "is_nullable" => bool TRUE "ordinal_position" => integer 10 "collation_name" => string(18) "utf8mb3_unicode_ci" "options" => array(4) ( 0 => string(1) "0" 1 => string(1) "1" 2 => string(12) "has_attaches" 3 => string(4) "skip" ) "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "source" => array(12) ( "type" => string(6) "string" "column_name" => string(6) "source" "column_default" => NULL "data_type" => string(4) "enum" "is_nullable" => bool TRUE "ordinal_position" => integer 11 "collation_name" => string(18) "utf8mb3_unicode_ci" "options" => array(1) ( 0 => string(12) "vashurok.com" ) "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "source_id" => array(13) ( "type" => string(3) "int" "min" => string(20) "-9223372036854775808" "max" => string(19) "9223372036854775807" "column_name" => string(9) "source_id" "column_default" => NULL "data_type" => string(6) "bigint" "is_nullable" => bool TRUE "ordinal_position" => integer 12 "display" => string(2) "20" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "text_for_search" => array(12) ( "type" => string(6) "string" "character_maximum_length" => string(5) "65535" "column_name" => string(15) "text_for_search" "column_default" => NULL "data_type" => string(4) "text" "is_nullable" => bool TRUE "ordinal_position" => integer 13 "collation_name" => string(18) "utf8mb3_unicode_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "related" => array(12) ( "type" => string(6) "string" "column_name" => string(7) "related" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 14 "character_maximum_length" => string(4) "1023" "collation_name" => string(18) "utf8mb3_unicode_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "good" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(4) "good" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool TRUE "ordinal_position" => integer 15 "display" => string(2) "11" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "bad" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(3) "bad" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool TRUE "ordinal_position" => integer 16 "display" => string(2) "11" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) ) protected _updated_column => NULL protected _created_column => NULL protected _serialize_columns => array(0) protected _primary_key => string(2) "id" protected _primary_key_value => string(8) "14116615" protected _table_names_plural => bool TRUE protected _db => object Database_MySQLi(6){ protected _connection_id => string(40) "9fdecc117b583662f3b3d15c4c4ac71fc778e18d" protected _identifier => string(1) "`" public last_query => string(185) "SELECT `category`.`id` AS `id`, `category`.`name` AS `name`, `category`.`url` AS `url`, `category`.`count` AS `count` FROM `cate …" protected _instance => string(7) "default" protected _connection => object mysqli(19)protected _db_group => NULL protected _db_applied => array(0) protected _db_pending => array(0) protected _db_reset => bool TRUE protected _db_builder => NULL protected _with_applied => array(0) protected _cast_data => array(0) protected _errors_filename => string(8) "category" }{ public affected_rows => NULL public client_info => NULL public client_version => NULL public connect_errno => NULL public connect_error => NULL public errno => NULL public error => NULL public error_list => NULL public field_count => NULL public host_info => NULL public info => NULL public insert_id => NULL public server_info => NULL public server_version => NULL public stat => NULL public sqlstate => NULL public protocol_version => NULL public thread_id => NULL public warning_count => NULL }protected _config => array(6) ( "type" => string(6) "MySQLi" "connection" => array(3) ( "hostname" => string(9) "localhost" "database" => string(9) "uznavalka" "persistent" => bool FALSE ) "table_prefix" => string(0) "" "charset" => string(7) "utf8mb4" "caching" => bool FALSE "profiling" => bool FALSE ) }{ protected _connection_id => string(40) "9fdecc117b583662f3b3d15c4c4ac71fc778e18d" protected _identifier => string(1) "`" public last_query => string(185) "SELECT `category`.`id` AS `id`, `category`.`name` AS `name`, `category`.`url` AS `url`, `category`.`count` AS `count` FROM `cate …" protected _instance => string(7) "default" protected _connection => object mysqli(19)protected _db_group => NULL protected _db_applied => array(0) protected _db_pending => array(0) protected _db_reset => bool TRUE protected _db_builder => NULL protected _with_applied => array(0) protected _cast_data => array(0) protected _errors_filename => string(4) "task" }{ public affected_rows => NULL public client_info => NULL public client_version => NULL public connect_errno => NULL public connect_error => NULL public errno => NULL public error => NULL public error_list => NULL public field_count => NULL public host_info => NULL public info => NULL public insert_id => NULL public server_info => NULL public server_version => NULL public stat => NULL public sqlstate => NULL public protocol_version => NULL public thread_id => NULL public warning_count => NULL }protected _config => array(6) ( "type" => string(6) "MySQLi" "connection" => array(3) ( "hostname" => string(9) "localhost" "database" => string(9) "uznavalka" "persistent" => bool FALSE ) "table_prefix" => string(0) "" "charset" => string(7) "utf8mb4" "caching" => bool FALSE "profiling" => bool FALSE ) }{ protected _belongs_to => array(2) ( "category" => array(2) ( "model" => string(8) "Category" "foreign_key" => string(11) "category_id" ) "human" => array(2) ( "model" => string(5) "Human" "foreign_key" => string(8) "human_id" ) ) protected _has_many => array(4) ( "answers" => array(4) ( "model" => string(6) "Answer" "foreign_key" => string(7) "task_id" "through" => NULL "far_key" => string(9) "answer_id" ) "tattaches" => array(4) ( "model" => string(7) "Tattach" "foreign_key" => string(7) "task_id" "through" => NULL "far_key" => string(10) "tattach_id" ) "tops" => array(4) ( "model" => string(3) "Top" "foreign_key" => string(7) "task_id" "through" => NULL "far_key" => string(6) "top_id" ) "ipsviews" => array(4) ( "model" => string(7) "Ipsview" "foreign_key" => string(7) "task_id" "through" => NULL "far_key" => string(10) "ipsview_id" ) ) protected _reload_on_wakeup => bool FALSE protected _has_one => array(0) protected _load_with => array(0) protected _validation => NULL protected _object => array(16) ( "id" => string(8) "10860218" "category_id" => string(1) "7" "text" => string(270) "<span class="sg-text sg-text--large sg-text--bold sg-text--break-words brn-qpage-next-question-box-content__primary"> CuO + NH3 …" "zn_id" => string(8) "24342333" "date_time" => string(19) "2021-03-25 16:19:04" "views" => string(2) "49" "human_id" => string(8) "32694668" "ya_spell" => string(1) "0" "category_key" => string(6) "494327" "has_gpt" => string(1) "1" "source" => NULL "source_id" => NULL "text_for_search" => string(140) "CuO + NH3 -> Cu + N2 + H2O. Сколько электронов участвуют в процессе окисления реакции?" "related" => NULL "good" => NULL "bad" => NULL ) protected _changed => array(0) protected _original_values => array(16) ( "id" => string(8) "10860218" "category_id" => string(1) "7" "text" => string(270) "<span class="sg-text sg-text--large sg-text--bold sg-text--break-words brn-qpage-next-question-box-content__primary"> CuO + NH3 …" "zn_id" => string(8) "24342333" "date_time" => string(19) "2021-03-25 16:19:04" "views" => string(2) "49" "human_id" => string(8) "32694668" "ya_spell" => string(1) "0" "category_key" => string(6) "494327" "has_gpt" => string(1) "1" "source" => NULL "source_id" => NULL "text_for_search" => string(140) "CuO + NH3 -> Cu + N2 + H2O. Сколько электронов участвуют в процессе окисления реакции?" "related" => NULL "good" => NULL "bad" => NULL ) protected _related => array(2) ( "human" => object Model_Human(34)2 => object Model_Task(34){ protected _db_group => string(5) "looka" protected _has_many => array(4) ( "universities" => array(5) ( "model" => string(10) "university" "foreign_key" => string(8) "human_id" "through" => string(19) "humans_universities" "far_key" => string(13) "university_id" "_table_columns" => array(5) ( "faculty_id" => NULL "chair_id" => NULL "graduation" => NULL "education_form" => NULL "education_status" => NULL ) ) "humans_universities" => array(4) ( "model" => string(17) "Humans_University" "foreign_key" => string(8) "human_id" "through" => NULL "far_key" => string(20) "humans_university_id" ) "schools" => array(5) ( "model" => string(6) "school" "foreign_key" => string(8) "human_id" "through" => string(14) "humans_schools" "far_key" => string(9) "school_id" "_table_columns" => array(6) ( "year_from" => NULL "year_to" => NULL "year_graduated" => NULL "class" => NULL "speciality" => NULL "type" => NULL ) ) "humans_schools" => array(4) ( "model" => string(13) "Humans_School" "foreign_key" => string(8) "human_id" "through" => NULL "far_key" => string(16) "humans_school_id" ) ) protected _belongs_to => array(4) ( "lastname" => array(2) ( "model" => string(8) "Lastname" "foreign_key" => string(11) "lastname_id" ) "firstname" => array(2) ( "model" => string(9) "Firstname" "foreign_key" => string(12) "firstname_id" ) "country" => array(2) ( "model" => string(7) "Country" "foreign_key" => string(10) "country_id" ) "city" => array(2) ( "model" => string(4) "City" "foreign_key" => string(7) "city_id" ) ) protected _reload_on_wakeup => bool FALSE protected _has_one => array(0) protected _load_with => array(0) protected _validation => NULL protected _object => array(21) ( "id" => string(8) "32694668" "lastname_id" => string(4) "9027" "firstname_id" => string(2) "73" "nickname" => string(0) "" "vk_id" => string(9) "262187723" "bdate" => string(10) "2004-04-03" "info" => NULL "photo" => string(62) "https://pp.userapi.com/c844617/v844617397/e1a8/1QlqBt3OVBA.jpg" "city_id" => string(7) "1702115" "country_id" => string(1) "4" "home_town" => string(20) "Надеждинка" "home_phone" => string(14) ".............." "skype" => NULL "facebook" => NULL "twitter" => NULL "livejournal" => NULL "instagram" => NULL "occupation_type" => string(6) "school" "occupation_name" => string(16) "Школа №13" "rate" => string(2) "15" "count_firstnames_lastnames" => NULL ) protected _changed => array(0) protected _original_values => array(21) ( "id" => string(8) "32694668" "lastname_id" => string(4) "9027" "firstname_id" => string(2) "73" "nickname" => string(0) "" "vk_id" => string(9) "262187723" "bdate" => string(10) "2004-04-03" "info" => NULL "photo" => string(62) "https://pp.userapi.com/c844617/v844617397/e1a8/1QlqBt3OVBA.jpg" "city_id" => string(7) "1702115" "country_id" => string(1) "4" "home_town" => string(20) "Надеждинка" "home_phone" => string(14) ".............." "skype" => NULL "facebook" => NULL "twitter" => NULL "livejournal" => NULL "instagram" => NULL "occupation_type" => string(6) "school" "occupation_name" => string(16) "Школа №13" "rate" => string(2) "15" "count_firstnames_lastnames" => NULL ) protected _related => array(2) ( "lastname" => object Model_Lastname(34)"category" => object Model_Category(35){ protected _db_group => string(5) "looka" protected _reload_on_wakeup => bool FALSE protected _has_one => array(0) protected _belongs_to => array(0) protected _has_many => array(0) protected _load_with => array(0) protected _validation => NULL protected _object => array(2) ( "id" => string(4) "9027" "title" => string(12) "Берген" ) protected _changed => array(0) protected _original_values => array(2) ( "id" => string(4) "9027" "title" => string(12) "Берген" ) protected _related => array(0) protected _valid => bool TRUE protected _loaded => bool TRUE protected _saved => bool FALSE protected _sorting => NULL protected _foreign_key_suffix => string(3) "_id" protected _object_name => string(8) "lastname" protected _object_plural => string(9) "lastnames" protected _table_name => string(9) "lastnames" protected _table_columns => array(2) ( "id" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(2) "id" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 1 "display" => string(2) "11" "comment" => string(0) "" "extra" => string(14) "auto_increment" "key" => string(3) "PRI" "privileges" => string(31) "select,insert,update,references" ) "title" => array(12) ( "type" => string(6) "string" "column_name" => string(5) "title" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool FALSE "ordinal_position" => integer 2 "character_maximum_length" => string(3) "255" "collation_name" => string(18) "utf8mb4_unicode_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) ) protected _updated_column => NULL protected _created_column => NULL protected _serialize_columns => array(0) protected _primary_key => string(2) "id" protected _primary_key_value => string(4) "9027" protected _table_names_plural => bool TRUE protected _db => object Database_MySQLi(6)"firstname" => object Model_Firstname(34){ protected _connection_id => string(40) "d012da34ee02fd2c23a3776760afb1e9d4e5c681" protected _identifier => string(1) "`" public last_query => string(166) "SELECT `finder_lastname`.`id` AS `id`, `finder_lastname`.`title` AS `title` FROM `finder_lastnames` AS `finder_lastname` WHERE ` …" protected _instance => string(5) "looka" protected _connection => object mysqli(19)protected _db_applied => array(0) protected _db_pending => array(0) protected _db_reset => bool TRUE protected _db_builder => NULL protected _with_applied => array(0) protected _cast_data => array(0) protected _errors_filename => string(8) "lastname" }{ public affected_rows => NULL public client_info => NULL public client_version => NULL public connect_errno => NULL public connect_error => NULL public errno => NULL public error => NULL public error_list => NULL public field_count => NULL public host_info => NULL public info => NULL public insert_id => NULL public server_info => NULL public server_version => NULL public stat => NULL public sqlstate => NULL public protocol_version => NULL public thread_id => NULL public warning_count => NULL }protected _config => array(5) ( "type" => string(6) "MySQLi" "connection" => array(3) ( "hostname" => string(9) "localhost" "database" => string(5) "looka" "persistent" => bool FALSE ) "table_prefix" => string(7) "finder_" "charset" => string(7) "utf8mb4" "caching" => bool FALSE ) }{ protected _db_group => string(5) "looka" protected _has_many => array(1) ( "humans" => array(4) ( "model" => string(5) "Human" "foreign_key" => string(12) "firstname_id" "through" => NULL "far_key" => string(8) "human_id" ) ) protected _reload_on_wakeup => bool FALSE protected _has_one => array(0) protected _belongs_to => array(0) protected _load_with => array(0) protected _validation => NULL protected _object => array(2) ( "id" => string(2) "73" "title" => string(16) "Анатолий" ) protected _changed => array(0) protected _original_values => array(2) ( "id" => string(2) "73" "title" => string(16) "Анатолий" ) protected _related => array(0) protected _valid => bool TRUE protected _loaded => bool TRUE protected _saved => bool FALSE protected _sorting => NULL protected _foreign_key_suffix => string(3) "_id" protected _object_name => string(9) "firstname" protected _object_plural => string(10) "firstnames" protected _table_name => string(10) "firstnames" protected _table_columns => array(2) ( "id" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(2) "id" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 1 "display" => string(2) "11" "comment" => string(0) "" "extra" => string(14) "auto_increment" "key" => string(3) "PRI" "privileges" => string(31) "select,insert,update,references" ) "title" => array(12) ( "type" => string(6) "string" "column_name" => string(5) "title" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 2 "character_maximum_length" => string(3) "255" "collation_name" => string(18) "utf8mb4_unicode_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) ) protected _updated_column => NULL protected _created_column => NULL protected _serialize_columns => array(0) protected _primary_key => string(2) "id" protected _primary_key_value => string(2) "73" protected _table_names_plural => bool TRUE protected _db => object Database_MySQLi(6)) protected _valid => bool TRUE protected _loaded => bool TRUE protected _saved => bool FALSE protected _sorting => NULL protected _foreign_key_suffix => string(3) "_id" protected _object_name => string(5) "human" protected _object_plural => string(6) "humans" protected _table_name => string(6) "humans" protected _table_columns => array(21) ( "id" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(2) "id" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 1 "display" => string(2) "11" "comment" => string(0) "" "extra" => string(14) "auto_increment" "key" => string(3) "PRI" "privileges" => string(31) "select,insert,update,references" ) "lastname_id" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(11) "lastname_id" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 2 "display" => string(2) "11" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "firstname_id" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(12) "firstname_id" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 3 "display" => string(2) "11" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "nickname" => array(12) ( "type" => string(6) "string" "column_name" => string(8) "nickname" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 4 "character_maximum_length" => string(3) "255" "collation_name" => string(18) "utf8mb4_unicode_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "vk_id" => array(13) ( "type" => string(3) "int" "min" => string(20) "-9223372036854775808" "max" => string(19) "9223372036854775807" "column_name" => string(5) "vk_id" "column_default" => NULL "data_type" => string(6) "bigint" "is_nullable" => bool TRUE "ordinal_position" => integer 5 "display" => string(2) "20" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "bdate" => array(10) ( "type" => string(6) "string" "column_name" => string(5) "bdate" "column_default" => NULL "data_type" => string(4) "date" "is_nullable" => bool TRUE "ordinal_position" => integer 6 "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "info" => array(12) ( "type" => string(6) "string" "column_name" => string(4) "info" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 7 "character_maximum_length" => string(4) "1023" "collation_name" => string(18) "utf8mb4_unicode_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "photo" => array(12) ( "type" => string(6) "string" "column_name" => string(5) "photo" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 8 "character_maximum_length" => string(3) "255" "collation_name" => string(18) "utf8mb4_unicode_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "city_id" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(7) "city_id" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool TRUE "ordinal_position" => integer 9 "display" => string(2) "11" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "country_id" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(10) "country_id" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool TRUE "ordinal_position" => integer 10 "display" => string(2) "11" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "home_town" => array(12) ( "type" => string(6) "string" "column_name" => string(9) "home_town" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 11 "character_maximum_length" => string(3) "255" "collation_name" => string(18) "utf8mb4_unicode_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "home_phone" => array(12) ( "type" => string(6) "string" "column_name" => string(10) "home_phone" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 12 "character_maximum_length" => string(2) "63" "collation_name" => string(18) "utf8mb4_unicode_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "skype" => array(12) ( "type" => string(6) "string" "column_name" => string(5) "skype" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 13 "character_maximum_length" => string(3) "127" "collation_name" => string(18) "utf8mb4_unicode_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "facebook" => array(12) ( "type" => string(6) "string" "column_name" => string(8) "facebook" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 14 "character_maximum_length" => string(3) "127" "collation_name" => string(18) "utf8mb4_unicode_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "twitter" => array(12) ( "type" => string(6) "string" "column_name" => string(7) "twitter" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 15 "character_maximum_length" => string(3) "127" "collation_name" => string(18) "utf8mb4_unicode_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "livejournal" => array(12) ( "type" => string(6) "string" "column_name" => string(11) "livejournal" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 16 "character_maximum_length" => string(3) "127" "collation_name" => string(18) "utf8mb4_unicode_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "instagram" => array(12) ( "type" => string(6) "string" "column_name" => string(9) "instagram" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 17 "character_maximum_length" => string(3) "127" "collation_name" => string(18) "utf8mb4_unicode_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "occupation_type" => array(12) ( "type" => string(6) "string" "column_name" => string(15) "occupation_type" "column_default" => NULL "data_type" => string(4) "enum" "is_nullable" => bool TRUE "ordinal_position" => integer 18 "collation_name" => string(18) "utf8mb4_unicode_ci" "options" => array(3) ( 0 => string(4) "work" 1 => string(6) "school" 2 => string(10) "university" ) "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "occupation_name" => array(12) ( "type" => string(6) "string" "column_name" => string(15) "occupation_name" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 19 "character_maximum_length" => string(3) "255" "collation_name" => string(18) "utf8mb4_unicode_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "rate" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(4) "rate" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 20 "display" => string(2) "11" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "count_firstnames_lastnames" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(26) "count_firstnames_lastnames" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool TRUE "ordinal_position" => integer 21 "display" => string(2) "11" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) ) protected _updated_column => NULL protected _created_column => NULL protected _serialize_columns => array(0) protected _primary_key => string(2) "id" protected _primary_key_value => string(8) "32694668" protected _table_names_plural => bool TRUE protected _db => object Database_MySQLi(6){ protected _connection_id => string(40) "d012da34ee02fd2c23a3776760afb1e9d4e5c681" protected _identifier => string(1) "`" public last_query => string(166) "SELECT `finder_lastname`.`id` AS `id`, `finder_lastname`.`title` AS `title` FROM `finder_lastnames` AS `finder_lastname` WHERE ` …" protected _instance => string(5) "looka" protected _connection => object mysqli(19)protected _db_applied => array(0) protected _db_pending => array(0) protected _db_reset => bool TRUE protected _db_builder => NULL protected _with_applied => array(0) protected _cast_data => array(0) protected _errors_filename => string(9) "firstname" }{ public affected_rows => NULL public client_info => NULL public client_version => NULL public connect_errno => NULL public connect_error => NULL public errno => NULL public error => NULL public error_list => NULL public field_count => NULL public host_info => NULL public info => NULL public insert_id => NULL public server_info => NULL public server_version => NULL public stat => NULL public sqlstate => NULL public protocol_version => NULL public thread_id => NULL public warning_count => NULL }protected _config => array(5) ( "type" => string(6) "MySQLi" "connection" => array(3) ( "hostname" => string(9) "localhost" "database" => string(5) "looka" "persistent" => bool FALSE ) "table_prefix" => string(7) "finder_" "charset" => string(7) "utf8mb4" "caching" => bool FALSE ) }{ protected _connection_id => string(40) "d012da34ee02fd2c23a3776760afb1e9d4e5c681" protected _identifier => string(1) "`" public last_query => string(166) "SELECT `finder_lastname`.`id` AS `id`, `finder_lastname`.`title` AS `title` FROM `finder_lastnames` AS `finder_lastname` WHERE ` …" protected _instance => string(5) "looka" protected _connection => object mysqli(19)protected _db_applied => array(0) protected _db_pending => array(0) protected _db_reset => bool TRUE protected _db_builder => NULL protected _with_applied => array(0) protected _cast_data => array(0) protected _errors_filename => string(5) "human" }{ public affected_rows => NULL public client_info => NULL public client_version => NULL public connect_errno => NULL public connect_error => NULL public errno => NULL public error => NULL public error_list => NULL public field_count => NULL public host_info => NULL public info => NULL public insert_id => NULL public server_info => NULL public server_version => NULL public stat => NULL public sqlstate => NULL public protocol_version => NULL public thread_id => NULL public warning_count => NULL }protected _config => array(5) ( "type" => string(6) "MySQLi" "connection" => array(3) ( "hostname" => string(9) "localhost" "database" => string(5) "looka" "persistent" => bool FALSE ) "table_prefix" => string(7) "finder_" "charset" => string(7) "utf8mb4" "caching" => bool FALSE ) }{ protected _has_many => array(2) ( "tasks" => array(4) ( "model" => string(4) "Task" "foreign_key" => string(11) "category_id" "through" => NULL "far_key" => string(7) "task_id" ) "tops" => array(4) ( "model" => string(3) "Top" "foreign_key" => string(11) "category_id" "through" => NULL "far_key" => string(6) "top_id" ) ) protected prefix_url => string(9) "/subject/" protected _reload_on_wakeup => bool FALSE protected _has_one => array(0) protected _belongs_to => array(0) protected _load_with => array(0) protected _validation => NULL protected _object => array(4) ( "id" => string(1) "7" "name" => string(10) "Химия" "url" => string(9) "chemistry" "count" => string(6) "799022" ) protected _changed => array(0) protected _original_values => array(4) ( "id" => string(1) "7" "name" => string(10) "Химия" "url" => string(9) "chemistry" "count" => string(6) "799022" ) protected _related => array(0) protected _valid => bool TRUE protected _loaded => bool TRUE protected _saved => bool FALSE protected _sorting => NULL protected _foreign_key_suffix => string(3) "_id" protected _object_name => string(8) "category" protected _object_plural => string(10) "categories" protected _table_name => string(10) "categories" protected _table_columns => array(4) ( "id" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(2) "id" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 1 "display" => string(2) "11" "comment" => string(0) "" "extra" => string(14) "auto_increment" "key" => string(3) "PRI" "privileges" => string(31) "select,insert,update,references" ) "name" => array(12) ( "type" => string(6) "string" "column_name" => string(4) "name" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool FALSE "ordinal_position" => integer 2 "character_maximum_length" => string(3) "255" "collation_name" => string(18) "utf8mb3_unicode_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "url" => array(12) ( "type" => string(6) "string" "column_name" => string(3) "url" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool FALSE "ordinal_position" => integer 3 "character_maximum_length" => string(3) "255" "collation_name" => string(18) "utf8mb3_unicode_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "count" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(5) "count" "column_default" => string(1) "0" "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 4 "display" => string(2) "11" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) ) protected _updated_column => NULL protected _created_column => NULL protected _serialize_columns => array(0) protected _primary_key => string(2) "id" protected _primary_key_value => string(1) "7" protected _table_names_plural => bool TRUE protected _db => object Database_MySQLi(6)) protected _valid => bool TRUE protected _loaded => bool TRUE protected _saved => bool FALSE protected _sorting => NULL protected _foreign_key_suffix => string(3) "_id" protected _object_name => string(4) "task" protected _object_plural => string(5) "tasks" protected _table_name => string(5) "tasks" protected _table_columns => array(16) ( "id" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(2) "id" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 1 "display" => string(2) "11" "comment" => string(0) "" "extra" => string(14) "auto_increment" "key" => string(3) "PRI" "privileges" => string(31) "select,insert,update,references" ) "category_id" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(11) "category_id" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 2 "display" => string(2) "11" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "text" => array(12) ( "type" => string(6) "string" "character_maximum_length" => string(5) "65535" "column_name" => string(4) "text" "column_default" => NULL "data_type" => string(4) "text" "is_nullable" => bool FALSE "ordinal_position" => integer 3 "collation_name" => string(18) "utf8mb3_unicode_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "zn_id" => array(13) ( "type" => string(3) "int" "min" => string(20) "-9223372036854775808" "max" => string(19) "9223372036854775807" "column_name" => string(5) "zn_id" "column_default" => string(1) "0" "data_type" => string(6) "bigint" "is_nullable" => bool FALSE "ordinal_position" => integer 4 "display" => string(2) "20" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "date_time" => array(10) ( "type" => string(6) "string" "column_name" => string(9) "date_time" "column_default" => string(19) "current_timestamp()" "data_type" => string(8) "datetime" "is_nullable" => bool FALSE "ordinal_position" => integer 5 "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "views" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(5) "views" "column_default" => string(1) "0" "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 6 "display" => string(2) "11" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "human_id" => array(13) ( "type" => string(3) "int" "min" => string(20) "-9223372036854775808" "max" => string(19) "9223372036854775807" "column_name" => string(8) "human_id" "column_default" => NULL "data_type" => string(6) "bigint" "is_nullable" => bool TRUE "ordinal_position" => integer 7 "display" => string(2) "20" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "ya_spell" => array(12) ( "type" => string(6) "string" "column_name" => string(8) "ya_spell" "column_default" => string(1) "0" "data_type" => string(4) "enum" "is_nullable" => bool FALSE "ordinal_position" => integer 8 "collation_name" => string(18) "utf8mb3_unicode_ci" "options" => array(2) ( 0 => string(1) "0" 1 => string(1) "1" ) "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "category_key" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(12) "category_key" "column_default" => string(1) "0" "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 9 "display" => string(2) "11" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "has_gpt" => array(12) ( "type" => string(6) "string" "column_name" => string(7) "has_gpt" "column_default" => NULL "data_type" => string(4) "enum" "is_nullable" => bool TRUE "ordinal_position" => integer 10 "collation_name" => string(18) "utf8mb3_unicode_ci" "options" => array(4) ( 0 => string(1) "0" 1 => string(1) "1" 2 => string(12) "has_attaches" 3 => string(4) "skip" ) "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "source" => array(12) ( "type" => string(6) "string" "column_name" => string(6) "source" "column_default" => NULL "data_type" => string(4) "enum" "is_nullable" => bool TRUE "ordinal_position" => integer 11 "collation_name" => string(18) "utf8mb3_unicode_ci" "options" => array(1) ( 0 => string(12) "vashurok.com" ) "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "source_id" => array(13) ( "type" => string(3) "int" "min" => string(20) "-9223372036854775808" "max" => string(19) "9223372036854775807" "column_name" => string(9) "source_id" "column_default" => NULL "data_type" => string(6) "bigint" "is_nullable" => bool TRUE "ordinal_position" => integer 12 "display" => string(2) "20" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "text_for_search" => array(12) ( "type" => string(6) "string" "character_maximum_length" => string(5) "65535" "column_name" => string(15) "text_for_search" "column_default" => NULL "data_type" => string(4) "text" "is_nullable" => bool TRUE "ordinal_position" => integer 13 "collation_name" => string(18) "utf8mb3_unicode_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "related" => array(12) ( "type" => string(6) "string" "column_name" => string(7) "related" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 14 "character_maximum_length" => string(4) "1023" "collation_name" => string(18) "utf8mb3_unicode_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "good" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(4) "good" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool TRUE "ordinal_position" => integer 15 "display" => string(2) "11" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "bad" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(3) "bad" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool TRUE "ordinal_position" => integer 16 "display" => string(2) "11" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) ) protected _updated_column => NULL protected _created_column => NULL protected _serialize_columns => array(0) protected _primary_key => string(2) "id" protected _primary_key_value => string(8) "10860218" protected _table_names_plural => bool TRUE protected _db => object Database_MySQLi(6){ protected _connection_id => string(40) "9fdecc117b583662f3b3d15c4c4ac71fc778e18d" protected _identifier => string(1) "`" public last_query => string(185) "SELECT `category`.`id` AS `id`, `category`.`name` AS `name`, `category`.`url` AS `url`, `category`.`count` AS `count` FROM `cate …" protected _instance => string(7) "default" protected _connection => object mysqli(19)protected _db_group => NULL protected _db_applied => array(0) protected _db_pending => array(0) protected _db_reset => bool TRUE protected _db_builder => NULL protected _with_applied => array(0) protected _cast_data => array(0) protected _errors_filename => string(8) "category" }{ public affected_rows => NULL public client_info => NULL public client_version => NULL public connect_errno => NULL public connect_error => NULL public errno => NULL public error => NULL public error_list => NULL public field_count => NULL public host_info => NULL public info => NULL public insert_id => NULL public server_info => NULL public server_version => NULL public stat => NULL public sqlstate => NULL public protocol_version => NULL public thread_id => NULL public warning_count => NULL }protected _config => array(6) ( "type" => string(6) "MySQLi" "connection" => array(3) ( "hostname" => string(9) "localhost" "database" => string(9) "uznavalka" "persistent" => bool FALSE ) "table_prefix" => string(0) "" "charset" => string(7) "utf8mb4" "caching" => bool FALSE "profiling" => bool FALSE ) }{ protected _connection_id => string(40) "9fdecc117b583662f3b3d15c4c4ac71fc778e18d" protected _identifier => string(1) "`" public last_query => string(185) "SELECT `category`.`id` AS `id`, `category`.`name` AS `name`, `category`.`url` AS `url`, `category`.`count` AS `count` FROM `cate …" protected _instance => string(7) "default" protected _connection => object mysqli(19)protected _db_group => NULL protected _db_applied => array(0) protected _db_pending => array(0) protected _db_reset => bool TRUE protected _db_builder => NULL protected _with_applied => array(0) protected _cast_data => array(0) protected _errors_filename => string(4) "task" }{ public affected_rows => NULL public client_info => NULL public client_version => NULL public connect_errno => NULL public connect_error => NULL public errno => NULL public error => NULL public error_list => NULL public field_count => NULL public host_info => NULL public info => NULL public insert_id => NULL public server_info => NULL public server_version => NULL public stat => NULL public sqlstate => NULL public protocol_version => NULL public thread_id => NULL public warning_count => NULL }protected _config => array(6) ( "type" => string(6) "MySQLi" "connection" => array(3) ( "hostname" => string(9) "localhost" "database" => string(9) "uznavalka" "persistent" => bool FALSE ) "table_prefix" => string(0) "" "charset" => string(7) "utf8mb4" "caching" => bool FALSE "profiling" => bool FALSE ) }{ protected _belongs_to => array(2) ( "category" => array(2) ( "model" => string(8) "Category" "foreign_key" => string(11) "category_id" ) "human" => array(2) ( "model" => string(5) "Human" "foreign_key" => string(8) "human_id" ) ) protected _has_many => array(4) ( "answers" => array(4) ( "model" => string(6) "Answer" "foreign_key" => string(7) "task_id" "through" => NULL "far_key" => string(9) "answer_id" ) "tattaches" => array(4) ( "model" => string(7) "Tattach" "foreign_key" => string(7) "task_id" "through" => NULL "far_key" => string(10) "tattach_id" ) "tops" => array(4) ( "model" => string(3) "Top" "foreign_key" => string(7) "task_id" "through" => NULL "far_key" => string(6) "top_id" ) "ipsviews" => array(4) ( "model" => string(7) "Ipsview" "foreign_key" => string(7) "task_id" "through" => NULL "far_key" => string(10) "ipsview_id" ) ) protected _reload_on_wakeup => bool FALSE protected _has_one => array(0) protected _load_with => array(0) protected _validation => NULL protected _object => array(16) ( "id" => string(8) "11327053" "category_id" => string(1) "7" "text" => string(584) "<span class="sg-text sg-text--large sg-text--bold sg-text--break-words brn-qpage-next-question-box-content__primary"> 9. Обчислі …" "zn_id" => string(8) "52874505" "date_time" => string(19) "2023-06-06 11:46:12" "views" => string(1) "5" "human_id" => string(7) "5925970" "ya_spell" => string(1) "0" "category_key" => string(6) "523674" "has_gpt" => string(1) "1" "source" => NULL "source_id" => NULL "text_for_search" => string(359) "9. Обчисліть масову частку натрій нітрату (NaNO3) в розчині, якщо до його розчину масою 130 г з масовою часткою солі 12% долили …" "related" => NULL "good" => NULL "bad" => NULL ) protected _changed => array(0) protected _original_values => array(16) ( "id" => string(8) "11327053" "category_id" => string(1) "7" "text" => string(584) "<span class="sg-text sg-text--large sg-text--bold sg-text--break-words brn-qpage-next-question-box-content__primary"> 9. Обчислі …" "zn_id" => string(8) "52874505" "date_time" => string(19) "2023-06-06 11:46:12" "views" => string(1) "5" "human_id" => string(7) "5925970" "ya_spell" => string(1) "0" "category_key" => string(6) "523674" "has_gpt" => string(1) "1" "source" => NULL "source_id" => NULL "text_for_search" => string(359) "9. Обчисліть масову частку натрій нітрату (NaNO3) в розчині, якщо до його розчину масою 130 г з масовою часткою солі 12% долили …" "related" => NULL "good" => NULL "bad" => NULL ) protected _related => array(2) ( "human" => object Model_Human(34)3 => object Model_Task(34){ protected _db_group => string(5) "looka" protected _has_many => array(4) ( "universities" => array(5) ( "model" => string(10) "university" "foreign_key" => string(8) "human_id" "through" => string(19) "humans_universities" "far_key" => string(13) "university_id" "_table_columns" => array(5) ( "faculty_id" => NULL "chair_id" => NULL "graduation" => NULL "education_form" => NULL "education_status" => NULL ) ) "humans_universities" => array(4) ( "model" => string(17) "Humans_University" "foreign_key" => string(8) "human_id" "through" => NULL "far_key" => string(20) "humans_university_id" ) "schools" => array(5) ( "model" => string(6) "school" "foreign_key" => string(8) "human_id" "through" => string(14) "humans_schools" "far_key" => string(9) "school_id" "_table_columns" => array(6) ( "year_from" => NULL "year_to" => NULL "year_graduated" => NULL "class" => NULL "speciality" => NULL "type" => NULL ) ) "humans_schools" => array(4) ( "model" => string(13) "Humans_School" "foreign_key" => string(8) "human_id" "through" => NULL "far_key" => string(16) "humans_school_id" ) ) protected _belongs_to => array(4) ( "lastname" => array(2) ( "model" => string(8) "Lastname" "foreign_key" => string(11) "lastname_id" ) "firstname" => array(2) ( "model" => string(9) "Firstname" "foreign_key" => string(12) "firstname_id" ) "country" => array(2) ( "model" => string(7) "Country" "foreign_key" => string(10) "country_id" ) "city" => array(2) ( "model" => string(4) "City" "foreign_key" => string(7) "city_id" ) ) protected _reload_on_wakeup => bool FALSE protected _has_one => array(0) protected _load_with => array(0) protected _validation => NULL protected _object => array(21) ( "id" => string(7) "5925970" "lastname_id" => string(4) "1425" "firstname_id" => string(1) "7" "nickname" => string(0) "" "vk_id" => string(9) "295323624" "bdate" => string(10) "2004-09-20" "info" => NULL "photo" => string(67) "https://sun9-7.userapi.com/c840629/v840629535/5f8cd/ptRHQOM0j_o.jpg" "city_id" => string(4) "1469" "country_id" => string(1) "1" "home_town" => NULL "home_phone" => string(0) "" "skype" => NULL "facebook" => NULL "twitter" => NULL "livejournal" => NULL "instagram" => NULL "occupation_type" => NULL "occupation_name" => NULL "rate" => string(2) "12" "count_firstnames_lastnames" => NULL ) protected _changed => array(0) protected _original_values => array(21) ( "id" => string(7) "5925970" "lastname_id" => string(4) "1425" "firstname_id" => string(1) "7" "nickname" => string(0) "" "vk_id" => string(9) "295323624" "bdate" => string(10) "2004-09-20" "info" => NULL "photo" => string(67) "https://sun9-7.userapi.com/c840629/v840629535/5f8cd/ptRHQOM0j_o.jpg" "city_id" => string(4) "1469" "country_id" => string(1) "1" "home_town" => NULL "home_phone" => string(0) "" "skype" => NULL "facebook" => NULL "twitter" => NULL "livejournal" => NULL "instagram" => NULL "occupation_type" => NULL "occupation_name" => NULL "rate" => string(2) "12" "count_firstnames_lastnames" => NULL ) protected _related => array(2) ( "lastname" => object Model_Lastname(34)"category" => object Model_Category(35){ protected _db_group => string(5) "looka" protected _reload_on_wakeup => bool FALSE protected _has_one => array(0) protected _belongs_to => array(0) protected _has_many => array(0) protected _load_with => array(0) protected _validation => NULL protected _object => array(2) ( "id" => string(4) "1425" "title" => string(18) "Андреевна" ) protected _changed => array(0) protected _original_values => array(2) ( "id" => string(4) "1425" "title" => string(18) "Андреевна" ) protected _related => array(0) protected _valid => bool TRUE protected _loaded => bool TRUE protected _saved => bool FALSE protected _sorting => NULL protected _foreign_key_suffix => string(3) "_id" protected _object_name => string(8) "lastname" protected _object_plural => string(9) "lastnames" protected _table_name => string(9) "lastnames" protected _table_columns => array(2) ( "id" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(2) "id" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 1 "display" => string(2) "11" "comment" => string(0) "" "extra" => string(14) "auto_increment" "key" => string(3) "PRI" "privileges" => string(31) "select,insert,update,references" ) "title" => array(12) ( "type" => string(6) "string" "column_name" => string(5) "title" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool FALSE "ordinal_position" => integer 2 "character_maximum_length" => string(3) "255" "collation_name" => string(18) "utf8mb4_unicode_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) ) protected _updated_column => NULL protected _created_column => NULL protected _serialize_columns => array(0) protected _primary_key => string(2) "id" protected _primary_key_value => string(4) "1425" protected _table_names_plural => bool TRUE protected _db => object Database_MySQLi(6)"firstname" => object Model_Firstname(34){ protected _connection_id => string(40) "d012da34ee02fd2c23a3776760afb1e9d4e5c681" protected _identifier => string(1) "`" public last_query => string(166) "SELECT `finder_lastname`.`id` AS `id`, `finder_lastname`.`title` AS `title` FROM `finder_lastnames` AS `finder_lastname` WHERE ` …" protected _instance => string(5) "looka" protected _connection => object mysqli(19)protected _db_applied => array(0) protected _db_pending => array(0) protected _db_reset => bool TRUE protected _db_builder => NULL protected _with_applied => array(0) protected _cast_data => array(0) protected _errors_filename => string(8) "lastname" }{ public affected_rows => NULL public client_info => NULL public client_version => NULL public connect_errno => NULL public connect_error => NULL public errno => NULL public error => NULL public error_list => NULL public field_count => NULL public host_info => NULL public info => NULL public insert_id => NULL public server_info => NULL public server_version => NULL public stat => NULL public sqlstate => NULL public protocol_version => NULL public thread_id => NULL public warning_count => NULL }protected _config => array(5) ( "type" => string(6) "MySQLi" "connection" => array(3) ( "hostname" => string(9) "localhost" "database" => string(5) "looka" "persistent" => bool FALSE ) "table_prefix" => string(7) "finder_" "charset" => string(7) "utf8mb4" "caching" => bool FALSE ) }{ protected _db_group => string(5) "looka" protected _has_many => array(1) ( "humans" => array(4) ( "model" => string(5) "Human" "foreign_key" => string(12) "firstname_id" "through" => NULL "far_key" => string(8) "human_id" ) ) protected _reload_on_wakeup => bool FALSE protected _has_one => array(0) protected _belongs_to => array(0) protected _load_with => array(0) protected _validation => NULL protected _object => array(2) ( "id" => string(1) "7" "title" => string(10) "Ольга" ) protected _changed => array(0) protected _original_values => array(2) ( "id" => string(1) "7" "title" => string(10) "Ольга" ) protected _related => array(0) protected _valid => bool TRUE protected _loaded => bool TRUE protected _saved => bool FALSE protected _sorting => NULL protected _foreign_key_suffix => string(3) "_id" protected _object_name => string(9) "firstname" protected _object_plural => string(10) "firstnames" protected _table_name => string(10) "firstnames" protected _table_columns => array(2) ( "id" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(2) "id" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 1 "display" => string(2) "11" "comment" => string(0) "" "extra" => string(14) "auto_increment" "key" => string(3) "PRI" "privileges" => string(31) "select,insert,update,references" ) "title" => array(12) ( "type" => string(6) "string" "column_name" => string(5) "title" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 2 "character_maximum_length" => string(3) "255" "collation_name" => string(18) "utf8mb4_unicode_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) ) protected _updated_column => NULL protected _created_column => NULL protected _serialize_columns => array(0) protected _primary_key => string(2) "id" protected _primary_key_value => string(1) "7" protected _table_names_plural => bool TRUE protected _db => object Database_MySQLi(6)) protected _valid => bool TRUE protected _loaded => bool TRUE protected _saved => bool FALSE protected _sorting => NULL protected _foreign_key_suffix => string(3) "_id" protected _object_name => string(5) "human" protected _object_plural => string(6) "humans" protected _table_name => string(6) "humans" protected _table_columns => array(21) ( "id" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(2) "id" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 1 "display" => string(2) "11" "comment" => string(0) "" "extra" => string(14) "auto_increment" "key" => string(3) "PRI" "privileges" => string(31) "select,insert,update,references" ) "lastname_id" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(11) "lastname_id" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 2 "display" => string(2) "11" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "firstname_id" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(12) "firstname_id" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 3 "display" => string(2) "11" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "nickname" => array(12) ( "type" => string(6) "string" "column_name" => string(8) "nickname" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 4 "character_maximum_length" => string(3) "255" "collation_name" => string(18) "utf8mb4_unicode_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "vk_id" => array(13) ( "type" => string(3) "int" "min" => string(20) "-9223372036854775808" "max" => string(19) "9223372036854775807" "column_name" => string(5) "vk_id" "column_default" => NULL "data_type" => string(6) "bigint" "is_nullable" => bool TRUE "ordinal_position" => integer 5 "display" => string(2) "20" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "bdate" => array(10) ( "type" => string(6) "string" "column_name" => string(5) "bdate" "column_default" => NULL "data_type" => string(4) "date" "is_nullable" => bool TRUE "ordinal_position" => integer 6 "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "info" => array(12) ( "type" => string(6) "string" "column_name" => string(4) "info" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 7 "character_maximum_length" => string(4) "1023" "collation_name" => string(18) "utf8mb4_unicode_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "photo" => array(12) ( "type" => string(6) "string" "column_name" => string(5) "photo" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 8 "character_maximum_length" => string(3) "255" "collation_name" => string(18) "utf8mb4_unicode_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "city_id" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(7) "city_id" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool TRUE "ordinal_position" => integer 9 "display" => string(2) "11" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "country_id" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(10) "country_id" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool TRUE "ordinal_position" => integer 10 "display" => string(2) "11" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "home_town" => array(12) ( "type" => string(6) "string" "column_name" => string(9) "home_town" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 11 "character_maximum_length" => string(3) "255" "collation_name" => string(18) "utf8mb4_unicode_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "home_phone" => array(12) ( "type" => string(6) "string" "column_name" => string(10) "home_phone" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 12 "character_maximum_length" => string(2) "63" "collation_name" => string(18) "utf8mb4_unicode_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "skype" => array(12) ( "type" => string(6) "string" "column_name" => string(5) "skype" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 13 "character_maximum_length" => string(3) "127" "collation_name" => string(18) "utf8mb4_unicode_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "facebook" => array(12) ( "type" => string(6) "string" "column_name" => string(8) "facebook" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 14 "character_maximum_length" => string(3) "127" "collation_name" => string(18) "utf8mb4_unicode_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "twitter" => array(12) ( "type" => string(6) "string" "column_name" => string(7) "twitter" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 15 "character_maximum_length" => string(3) "127" "collation_name" => string(18) "utf8mb4_unicode_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "livejournal" => array(12) ( "type" => string(6) "string" "column_name" => string(11) "livejournal" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 16 "character_maximum_length" => string(3) "127" "collation_name" => string(18) "utf8mb4_unicode_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "instagram" => array(12) ( "type" => string(6) "string" "column_name" => string(9) "instagram" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 17 "character_maximum_length" => string(3) "127" "collation_name" => string(18) "utf8mb4_unicode_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "occupation_type" => array(12) ( "type" => string(6) "string" "column_name" => string(15) "occupation_type" "column_default" => NULL "data_type" => string(4) "enum" "is_nullable" => bool TRUE "ordinal_position" => integer 18 "collation_name" => string(18) "utf8mb4_unicode_ci" "options" => array(3) ( 0 => string(4) "work" 1 => string(6) "school" 2 => string(10) "university" ) "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "occupation_name" => array(12) ( "type" => string(6) "string" "column_name" => string(15) "occupation_name" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 19 "character_maximum_length" => string(3) "255" "collation_name" => string(18) "utf8mb4_unicode_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "rate" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(4) "rate" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 20 "display" => string(2) "11" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "count_firstnames_lastnames" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(26) "count_firstnames_lastnames" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool TRUE "ordinal_position" => integer 21 "display" => string(2) "11" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) ) protected _updated_column => NULL protected _created_column => NULL protected _serialize_columns => array(0) protected _primary_key => string(2) "id" protected _primary_key_value => string(7) "5925970" protected _table_names_plural => bool TRUE protected _db => object Database_MySQLi(6){ protected _connection_id => string(40) "d012da34ee02fd2c23a3776760afb1e9d4e5c681" protected _identifier => string(1) "`" public last_query => string(166) "SELECT `finder_lastname`.`id` AS `id`, `finder_lastname`.`title` AS `title` FROM `finder_lastnames` AS `finder_lastname` WHERE ` …" protected _instance => string(5) "looka" protected _connection => object mysqli(19)protected _db_applied => array(0) protected _db_pending => array(0) protected _db_reset => bool TRUE protected _db_builder => NULL protected _with_applied => array(0) protected _cast_data => array(0) protected _errors_filename => string(9) "firstname" }{ public affected_rows => NULL public client_info => NULL public client_version => NULL public connect_errno => NULL public connect_error => NULL public errno => NULL public error => NULL public error_list => NULL public field_count => NULL public host_info => NULL public info => NULL public insert_id => NULL public server_info => NULL public server_version => NULL public stat => NULL public sqlstate => NULL public protocol_version => NULL public thread_id => NULL public warning_count => NULL }protected _config => array(5) ( "type" => string(6) "MySQLi" "connection" => array(3) ( "hostname" => string(9) "localhost" "database" => string(5) "looka" "persistent" => bool FALSE ) "table_prefix" => string(7) "finder_" "charset" => string(7) "utf8mb4" "caching" => bool FALSE ) }{ protected _connection_id => string(40) "d012da34ee02fd2c23a3776760afb1e9d4e5c681" protected _identifier => string(1) "`" public last_query => string(166) "SELECT `finder_lastname`.`id` AS `id`, `finder_lastname`.`title` AS `title` FROM `finder_lastnames` AS `finder_lastname` WHERE ` …" protected _instance => string(5) "looka" protected _connection => object mysqli(19)protected _db_applied => array(0) protected _db_pending => array(0) protected _db_reset => bool TRUE protected _db_builder => NULL protected _with_applied => array(0) protected _cast_data => array(0) protected _errors_filename => string(5) "human" }{ public affected_rows => NULL public client_info => NULL public client_version => NULL public connect_errno => NULL public connect_error => NULL public errno => NULL public error => NULL public error_list => NULL public field_count => NULL public host_info => NULL public info => NULL public insert_id => NULL public server_info => NULL public server_version => NULL public stat => NULL public sqlstate => NULL public protocol_version => NULL public thread_id => NULL public warning_count => NULL }protected _config => array(5) ( "type" => string(6) "MySQLi" "connection" => array(3) ( "hostname" => string(9) "localhost" "database" => string(5) "looka" "persistent" => bool FALSE ) "table_prefix" => string(7) "finder_" "charset" => string(7) "utf8mb4" "caching" => bool FALSE ) }{ protected _has_many => array(2) ( "tasks" => array(4) ( "model" => string(4) "Task" "foreign_key" => string(11) "category_id" "through" => NULL "far_key" => string(7) "task_id" ) "tops" => array(4) ( "model" => string(3) "Top" "foreign_key" => string(11) "category_id" "through" => NULL "far_key" => string(6) "top_id" ) ) protected prefix_url => string(9) "/subject/" protected _reload_on_wakeup => bool FALSE protected _has_one => array(0) protected _belongs_to => array(0) protected _load_with => array(0) protected _validation => NULL protected _object => array(4) ( "id" => string(1) "7" "name" => string(10) "Химия" "url" => string(9) "chemistry" "count" => string(6) "799022" ) protected _changed => array(0) protected _original_values => array(4) ( "id" => string(1) "7" "name" => string(10) "Химия" "url" => string(9) "chemistry" "count" => string(6) "799022" ) protected _related => array(0) protected _valid => bool TRUE protected _loaded => bool TRUE protected _saved => bool FALSE protected _sorting => NULL protected _foreign_key_suffix => string(3) "_id" protected _object_name => string(8) "category" protected _object_plural => string(10) "categories" protected _table_name => string(10) "categories" protected _table_columns => array(4) ( "id" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(2) "id" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 1 "display" => string(2) "11" "comment" => string(0) "" "extra" => string(14) "auto_increment" "key" => string(3) "PRI" "privileges" => string(31) "select,insert,update,references" ) "name" => array(12) ( "type" => string(6) "string" "column_name" => string(4) "name" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool FALSE "ordinal_position" => integer 2 "character_maximum_length" => string(3) "255" "collation_name" => string(18) "utf8mb3_unicode_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "url" => array(12) ( "type" => string(6) "string" "column_name" => string(3) "url" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool FALSE "ordinal_position" => integer 3 "character_maximum_length" => string(3) "255" "collation_name" => string(18) "utf8mb3_unicode_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "count" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(5) "count" "column_default" => string(1) "0" "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 4 "display" => string(2) "11" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) ) protected _updated_column => NULL protected _created_column => NULL protected _serialize_columns => array(0) protected _primary_key => string(2) "id" protected _primary_key_value => string(1) "7" protected _table_names_plural => bool TRUE protected _db => object Database_MySQLi(6)) protected _valid => bool TRUE protected _loaded => bool TRUE protected _saved => bool FALSE protected _sorting => NULL protected _foreign_key_suffix => string(3) "_id" protected _object_name => string(4) "task" protected _object_plural => string(5) "tasks" protected _table_name => string(5) "tasks" protected _table_columns => array(16) ( "id" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(2) "id" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 1 "display" => string(2) "11" "comment" => string(0) "" "extra" => string(14) "auto_increment" "key" => string(3) "PRI" "privileges" => string(31) "select,insert,update,references" ) "category_id" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(11) "category_id" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 2 "display" => string(2) "11" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "text" => array(12) ( "type" => string(6) "string" "character_maximum_length" => string(5) "65535" "column_name" => string(4) "text" "column_default" => NULL "data_type" => string(4) "text" "is_nullable" => bool FALSE "ordinal_position" => integer 3 "collation_name" => string(18) "utf8mb3_unicode_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "zn_id" => array(13) ( "type" => string(3) "int" "min" => string(20) "-9223372036854775808" "max" => string(19) "9223372036854775807" "column_name" => string(5) "zn_id" "column_default" => string(1) "0" "data_type" => string(6) "bigint" "is_nullable" => bool FALSE "ordinal_position" => integer 4 "display" => string(2) "20" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "date_time" => array(10) ( "type" => string(6) "string" "column_name" => string(9) "date_time" "column_default" => string(19) "current_timestamp()" "data_type" => string(8) "datetime" "is_nullable" => bool FALSE "ordinal_position" => integer 5 "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "views" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(5) "views" "column_default" => string(1) "0" "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 6 "display" => string(2) "11" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "human_id" => array(13) ( "type" => string(3) "int" "min" => string(20) "-9223372036854775808" "max" => string(19) "9223372036854775807" "column_name" => string(8) "human_id" "column_default" => NULL "data_type" => string(6) "bigint" "is_nullable" => bool TRUE "ordinal_position" => integer 7 "display" => string(2) "20" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "ya_spell" => array(12) ( "type" => string(6) "string" "column_name" => string(8) "ya_spell" "column_default" => string(1) "0" "data_type" => string(4) "enum" "is_nullable" => bool FALSE "ordinal_position" => integer 8 "collation_name" => string(18) "utf8mb3_unicode_ci" "options" => array(2) ( 0 => string(1) "0" 1 => string(1) "1" ) "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "category_key" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(12) "category_key" "column_default" => string(1) "0" "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 9 "display" => string(2) "11" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "has_gpt" => array(12) ( "type" => string(6) "string" "column_name" => string(7) "has_gpt" "column_default" => NULL "data_type" => string(4) "enum" "is_nullable" => bool TRUE "ordinal_position" => integer 10 "collation_name" => string(18) "utf8mb3_unicode_ci" "options" => array(4) ( 0 => string(1) "0" 1 => string(1) "1" 2 => string(12) "has_attaches" 3 => string(4) "skip" ) "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "source" => array(12) ( "type" => string(6) "string" "column_name" => string(6) "source" "column_default" => NULL "data_type" => string(4) "enum" "is_nullable" => bool TRUE "ordinal_position" => integer 11 "collation_name" => string(18) "utf8mb3_unicode_ci" "options" => array(1) ( 0 => string(12) "vashurok.com" ) "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "source_id" => array(13) ( "type" => string(3) "int" "min" => string(20) "-9223372036854775808" "max" => string(19) "9223372036854775807" "column_name" => string(9) "source_id" "column_default" => NULL "data_type" => string(6) "bigint" "is_nullable" => bool TRUE "ordinal_position" => integer 12 "display" => string(2) "20" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "text_for_search" => array(12) ( "type" => string(6) "string" "character_maximum_length" => string(5) "65535" "column_name" => string(15) "text_for_search" "column_default" => NULL "data_type" => string(4) "text" "is_nullable" => bool TRUE "ordinal_position" => integer 13 "collation_name" => string(18) "utf8mb3_unicode_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "related" => array(12) ( "type" => string(6) "string" "column_name" => string(7) "related" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 14 "character_maximum_length" => string(4) "1023" "collation_name" => string(18) "utf8mb3_unicode_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "good" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(4) "good" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool TRUE "ordinal_position" => integer 15 "display" => string(2) "11" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "bad" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(3) "bad" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool TRUE "ordinal_position" => integer 16 "display" => string(2) "11" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) ) protected _updated_column => NULL protected _created_column => NULL protected _serialize_columns => array(0) protected _primary_key => string(2) "id" protected _primary_key_value => string(8) "11327053" protected _table_names_plural => bool TRUE protected _db => object Database_MySQLi(6){ protected _connection_id => string(40) "9fdecc117b583662f3b3d15c4c4ac71fc778e18d" protected _identifier => string(1) "`" public last_query => string(185) "SELECT `category`.`id` AS `id`, `category`.`name` AS `name`, `category`.`url` AS `url`, `category`.`count` AS `count` FROM `cate …" protected _instance => string(7) "default" protected _connection => object mysqli(19)protected _db_group => NULL protected _db_applied => array(0) protected _db_pending => array(0) protected _db_reset => bool TRUE protected _db_builder => NULL protected _with_applied => array(0) protected _cast_data => array(0) protected _errors_filename => string(8) "category" }{ public affected_rows => NULL public client_info => NULL public client_version => NULL public connect_errno => NULL public connect_error => NULL public errno => NULL public error => NULL public error_list => NULL public field_count => NULL public host_info => NULL public info => NULL public insert_id => NULL public server_info => NULL public server_version => NULL public stat => NULL public sqlstate => NULL public protocol_version => NULL public thread_id => NULL public warning_count => NULL }protected _config => array(6) ( "type" => string(6) "MySQLi" "connection" => array(3) ( "hostname" => string(9) "localhost" "database" => string(9) "uznavalka" "persistent" => bool FALSE ) "table_prefix" => string(0) "" "charset" => string(7) "utf8mb4" "caching" => bool FALSE "profiling" => bool FALSE ) }{ protected _connection_id => string(40) "9fdecc117b583662f3b3d15c4c4ac71fc778e18d" protected _identifier => string(1) "`" public last_query => string(185) "SELECT `category`.`id` AS `id`, `category`.`name` AS `name`, `category`.`url` AS `url`, `category`.`count` AS `count` FROM `cate …" protected _instance => string(7) "default" protected _connection => object mysqli(19)protected _db_group => NULL protected _db_applied => array(0) protected _db_pending => array(0) protected _db_reset => bool TRUE protected _db_builder => NULL protected _with_applied => array(0) protected _cast_data => array(0) protected _errors_filename => string(4) "task" }{ public affected_rows => NULL public client_info => NULL public client_version => NULL public connect_errno => NULL public connect_error => NULL public errno => NULL public error => NULL public error_list => NULL public field_count => NULL public host_info => NULL public info => NULL public insert_id => NULL public server_info => NULL public server_version => NULL public stat => NULL public sqlstate => NULL public protocol_version => NULL public thread_id => NULL public warning_count => NULL }protected _config => array(6) ( "type" => string(6) "MySQLi" "connection" => array(3) ( "hostname" => string(9) "localhost" "database" => string(9) "uznavalka" "persistent" => bool FALSE ) "table_prefix" => string(0) "" "charset" => string(7) "utf8mb4" "caching" => bool FALSE "profiling" => bool FALSE ) }{ protected _belongs_to => array(2) ( "category" => array(2) ( "model" => string(8) "Category" "foreign_key" => string(11) "category_id" ) "human" => array(2) ( "model" => string(5) "Human" "foreign_key" => string(8) "human_id" ) ) protected _has_many => array(4) ( "answers" => array(4) ( "model" => string(6) "Answer" "foreign_key" => string(7) "task_id" "through" => NULL "far_key" => string(9) "answer_id" ) "tattaches" => array(4) ( "model" => string(7) "Tattach" "foreign_key" => string(7) "task_id" "through" => NULL "far_key" => string(10) "tattach_id" ) "tops" => array(4) ( "model" => string(3) "Top" "foreign_key" => string(7) "task_id" "through" => NULL "far_key" => string(6) "top_id" ) "ipsviews" => array(4) ( "model" => string(7) "Ipsview" "foreign_key" => string(7) "task_id" "through" => NULL "far_key" => string(10) "ipsview_id" ) ) protected _reload_on_wakeup => bool FALSE protected _has_one => array(0) protected _load_with => array(0) protected _validation => NULL protected _object => array(16) ( "id" => string(8) "16675451" "category_id" => string(1) "7" "text" => string(3964) "<span class="sg-text sg-text--large sg-text--bold sg-text--break-words brn-qpage-next-question-box-content__primary"> Опыт №1: О …" "zn_id" => string(8) "52411110" "date_time" => string(19) "2023-11-26 18:05:02" "views" => string(1) "4" "human_id" => string(8) "15663595" "ya_spell" => string(1) "0" "category_key" => string(6) "803176" "has_gpt" => string(1) "1" "source" => NULL "source_id" => NULL "text_for_search" => string(3561) "Опыт №1: Определение прозрачности воды Необходимое оборудование и вещества: стеклянный мерный цилиндр с плоским дном, печатный т …" "related" => string(107) "["11464428","2582542","15085328","11169084","8952576","13810661","6452450","3182316","14560936","13076381"]" "good" => NULL "bad" => NULL ) protected _changed => array(0) protected _original_values => array(16) ( "id" => string(8) "16675451" "category_id" => string(1) "7" "text" => string(3964) "<span class="sg-text sg-text--large sg-text--bold sg-text--break-words brn-qpage-next-question-box-content__primary"> Опыт №1: О …" "zn_id" => string(8) "52411110" "date_time" => string(19) "2023-11-26 18:05:02" "views" => string(1) "4" "human_id" => string(8) "15663595" "ya_spell" => string(1) "0" "category_key" => string(6) "803176" "has_gpt" => string(1) "1" "source" => NULL "source_id" => NULL "text_for_search" => string(3561) "Опыт №1: Определение прозрачности воды Необходимое оборудование и вещества: стеклянный мерный цилиндр с плоским дном, печатный т …" "related" => string(107) "["11464428","2582542","15085328","11169084","8952576","13810661","6452450","3182316","14560936","13076381"]" "good" => NULL "bad" => NULL ) protected _related => array(2) ( "human" => object Model_Human(34)4 => object Model_Task(34){ protected _db_group => string(5) "looka" protected _has_many => array(4) ( "universities" => array(5) ( "model" => string(10) "university" "foreign_key" => string(8) "human_id" "through" => string(19) "humans_universities" "far_key" => string(13) "university_id" "_table_columns" => array(5) ( "faculty_id" => NULL "chair_id" => NULL "graduation" => NULL "education_form" => NULL "education_status" => NULL ) ) "humans_universities" => array(4) ( "model" => string(17) "Humans_University" "foreign_key" => string(8) "human_id" "through" => NULL "far_key" => string(20) "humans_university_id" ) "schools" => array(5) ( "model" => string(6) "school" "foreign_key" => string(8) "human_id" "through" => string(14) "humans_schools" "far_key" => string(9) "school_id" "_table_columns" => array(6) ( "year_from" => NULL "year_to" => NULL "year_graduated" => NULL "class" => NULL "speciality" => NULL "type" => NULL ) ) "humans_schools" => array(4) ( "model" => string(13) "Humans_School" "foreign_key" => string(8) "human_id" "through" => NULL "far_key" => string(16) "humans_school_id" ) ) protected _belongs_to => array(4) ( "lastname" => array(2) ( "model" => string(8) "Lastname" "foreign_key" => string(11) "lastname_id" ) "firstname" => array(2) ( "model" => string(9) "Firstname" "foreign_key" => string(12) "firstname_id" ) "country" => array(2) ( "model" => string(7) "Country" "foreign_key" => string(10) "country_id" ) "city" => array(2) ( "model" => string(4) "City" "foreign_key" => string(7) "city_id" ) ) protected _reload_on_wakeup => bool FALSE protected _has_one => array(0) protected _load_with => array(0) protected _validation => NULL protected _object => array(21) ( "id" => string(8) "15663595" "lastname_id" => string(5) "76595" "firstname_id" => string(4) "1764" "nickname" => string(0) "" "vk_id" => string(9) "283442602" "bdate" => string(10) "2004-05-20" "info" => NULL "photo" => string(67) "https://sun9-1.userapi.com/c824500/v824500136/c93df/S53bPSQXfGk.jpg" "city_id" => NULL "country_id" => string(3) "121" "home_town" => NULL "home_phone" => string(0) "" "skype" => NULL "facebook" => string(16) "+376763392684942" "twitter" => NULL "livejournal" => NULL "instagram" => NULL "occupation_type" => NULL "occupation_name" => NULL "rate" => string(2) "12" "count_firstnames_lastnames" => NULL ) protected _changed => array(0) protected _original_values => array(21) ( "id" => string(8) "15663595" "lastname_id" => string(5) "76595" "firstname_id" => string(4) "1764" "nickname" => string(0) "" "vk_id" => string(9) "283442602" "bdate" => string(10) "2004-05-20" "info" => NULL "photo" => string(67) "https://sun9-1.userapi.com/c824500/v824500136/c93df/S53bPSQXfGk.jpg" "city_id" => NULL "country_id" => string(3) "121" "home_town" => NULL "home_phone" => string(0) "" "skype" => NULL "facebook" => string(16) "+376763392684942" "twitter" => NULL "livejournal" => NULL "instagram" => NULL "occupation_type" => NULL "occupation_name" => NULL "rate" => string(2) "12" "count_firstnames_lastnames" => NULL ) protected _related => array(2) ( "lastname" => object Model_Lastname(34)"category" => object Model_Category(35){ protected _db_group => string(5) "looka" protected _reload_on_wakeup => bool FALSE protected _has_one => array(0) protected _belongs_to => array(0) protected _has_many => array(0) protected _load_with => array(0) protected _validation => NULL protected _object => array(2) ( "id" => string(5) "76595" "title" => string(14) "Горбуль" ) protected _changed => array(0) protected _original_values => array(2) ( "id" => string(5) "76595" "title" => string(14) "Горбуль" ) protected _related => array(0) protected _valid => bool TRUE protected _loaded => bool TRUE protected _saved => bool FALSE protected _sorting => NULL protected _foreign_key_suffix => string(3) "_id" protected _object_name => string(8) "lastname" protected _object_plural => string(9) "lastnames" protected _table_name => string(9) "lastnames" protected _table_columns => array(2) ( "id" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(2) "id" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 1 "display" => string(2) "11" "comment" => string(0) "" "extra" => string(14) "auto_increment" "key" => string(3) "PRI" "privileges" => string(31) "select,insert,update,references" ) "title" => array(12) ( "type" => string(6) "string" "column_name" => string(5) "title" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool FALSE "ordinal_position" => integer 2 "character_maximum_length" => string(3) "255" "collation_name" => string(18) "utf8mb4_unicode_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) ) protected _updated_column => NULL protected _created_column => NULL protected _serialize_columns => array(0) protected _primary_key => string(2) "id" protected _primary_key_value => string(5) "76595" protected _table_names_plural => bool TRUE protected _db => object Database_MySQLi(6)"firstname" => object Model_Firstname(34){ protected _connection_id => string(40) "d012da34ee02fd2c23a3776760afb1e9d4e5c681" protected _identifier => string(1) "`" public last_query => string(166) "SELECT `finder_lastname`.`id` AS `id`, `finder_lastname`.`title` AS `title` FROM `finder_lastnames` AS `finder_lastname` WHERE ` …" protected _instance => string(5) "looka" protected _connection => object mysqli(19)protected _db_applied => array(0) protected _db_pending => array(0) protected _db_reset => bool TRUE protected _db_builder => NULL protected _with_applied => array(0) protected _cast_data => array(0) protected _errors_filename => string(8) "lastname" }{ public affected_rows => NULL public client_info => NULL public client_version => NULL public connect_errno => NULL public connect_error => NULL public errno => NULL public error => NULL public error_list => NULL public field_count => NULL public host_info => NULL public info => NULL public insert_id => NULL public server_info => NULL public server_version => NULL public stat => NULL public sqlstate => NULL public protocol_version => NULL public thread_id => NULL public warning_count => NULL }protected _config => array(5) ( "type" => string(6) "MySQLi" "connection" => array(3) ( "hostname" => string(9) "localhost" "database" => string(5) "looka" "persistent" => bool FALSE ) "table_prefix" => string(7) "finder_" "charset" => string(7) "utf8mb4" "caching" => bool FALSE ) }{ protected _db_group => string(5) "looka" protected _has_many => array(1) ( "humans" => array(4) ( "model" => string(5) "Human" "foreign_key" => string(12) "firstname_id" "through" => NULL "far_key" => string(8) "human_id" ) ) protected _reload_on_wakeup => bool FALSE protected _has_one => array(0) protected _belongs_to => array(0) protected _load_with => array(0) protected _validation => NULL protected _object => array(2) ( "id" => string(4) "1764" "title" => string(10) "Илона" ) protected _changed => array(0) protected _original_values => array(2) ( "id" => string(4) "1764" "title" => string(10) "Илона" ) protected _related => array(0) protected _valid => bool TRUE protected _loaded => bool TRUE protected _saved => bool FALSE protected _sorting => NULL protected _foreign_key_suffix => string(3) "_id" protected _object_name => string(9) "firstname" protected _object_plural => string(10) "firstnames" protected _table_name => string(10) "firstnames" protected _table_columns => array(2) ( "id" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(2) "id" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 1 "display" => string(2) "11" "comment" => string(0) "" "extra" => string(14) "auto_increment" "key" => string(3) "PRI" "privileges" => string(31) "select,insert,update,references" ) "title" => array(12) ( "type" => string(6) "string" "column_name" => string(5) "title" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 2 "character_maximum_length" => string(3) "255" "collation_name" => string(18) "utf8mb4_unicode_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) ) protected _updated_column => NULL protected _created_column => NULL protected _serialize_columns => array(0) protected _primary_key => string(2) "id" protected _primary_key_value => string(4) "1764" protected _table_names_plural => bool TRUE protected _db => object Database_MySQLi(6)) protected _valid => bool TRUE protected _loaded => bool TRUE protected _saved => bool FALSE protected _sorting => NULL protected _foreign_key_suffix => string(3) "_id" protected _object_name => string(5) "human" protected _object_plural => string(6) "humans" protected _table_name => string(6) "humans" protected _table_columns => array(21) ( "id" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(2) "id" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 1 "display" => string(2) "11" "comment" => string(0) "" "extra" => string(14) "auto_increment" "key" => string(3) "PRI" "privileges" => string(31) "select,insert,update,references" ) "lastname_id" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(11) "lastname_id" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 2 "display" => string(2) "11" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "firstname_id" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(12) "firstname_id" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 3 "display" => string(2) "11" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "nickname" => array(12) ( "type" => string(6) "string" "column_name" => string(8) "nickname" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 4 "character_maximum_length" => string(3) "255" "collation_name" => string(18) "utf8mb4_unicode_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "vk_id" => array(13) ( "type" => string(3) "int" "min" => string(20) "-9223372036854775808" "max" => string(19) "9223372036854775807" "column_name" => string(5) "vk_id" "column_default" => NULL "data_type" => string(6) "bigint" "is_nullable" => bool TRUE "ordinal_position" => integer 5 "display" => string(2) "20" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "bdate" => array(10) ( "type" => string(6) "string" "column_name" => string(5) "bdate" "column_default" => NULL "data_type" => string(4) "date" "is_nullable" => bool TRUE "ordinal_position" => integer 6 "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "info" => array(12) ( "type" => string(6) "string" "column_name" => string(4) "info" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 7 "character_maximum_length" => string(4) "1023" "collation_name" => string(18) "utf8mb4_unicode_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "photo" => array(12) ( "type" => string(6) "string" "column_name" => string(5) "photo" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 8 "character_maximum_length" => string(3) "255" "collation_name" => string(18) "utf8mb4_unicode_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "city_id" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(7) "city_id" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool TRUE "ordinal_position" => integer 9 "display" => string(2) "11" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "country_id" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(10) "country_id" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool TRUE "ordinal_position" => integer 10 "display" => string(2) "11" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "home_town" => array(12) ( "type" => string(6) "string" "column_name" => string(9) "home_town" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 11 "character_maximum_length" => string(3) "255" "collation_name" => string(18) "utf8mb4_unicode_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "home_phone" => array(12) ( "type" => string(6) "string" "column_name" => string(10) "home_phone" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 12 "character_maximum_length" => string(2) "63" "collation_name" => string(18) "utf8mb4_unicode_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "skype" => array(12) ( "type" => string(6) "string" "column_name" => string(5) "skype" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 13 "character_maximum_length" => string(3) "127" "collation_name" => string(18) "utf8mb4_unicode_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "facebook" => array(12) ( "type" => string(6) "string" "column_name" => string(8) "facebook" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 14 "character_maximum_length" => string(3) "127" "collation_name" => string(18) "utf8mb4_unicode_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "twitter" => array(12) ( "type" => string(6) "string" "column_name" => string(7) "twitter" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 15 "character_maximum_length" => string(3) "127" "collation_name" => string(18) "utf8mb4_unicode_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "livejournal" => array(12) ( "type" => string(6) "string" "column_name" => string(11) "livejournal" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 16 "character_maximum_length" => string(3) "127" "collation_name" => string(18) "utf8mb4_unicode_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "instagram" => array(12) ( "type" => string(6) "string" "column_name" => string(9) "instagram" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 17 "character_maximum_length" => string(3) "127" "collation_name" => string(18) "utf8mb4_unicode_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "occupation_type" => array(12) ( "type" => string(6) "string" "column_name" => string(15) "occupation_type" "column_default" => NULL "data_type" => string(4) "enum" "is_nullable" => bool TRUE "ordinal_position" => integer 18 "collation_name" => string(18) "utf8mb4_unicode_ci" "options" => array(3) ( 0 => string(4) "work" 1 => string(6) "school" 2 => string(10) "university" ) "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "occupation_name" => array(12) ( "type" => string(6) "string" "column_name" => string(15) "occupation_name" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 19 "character_maximum_length" => string(3) "255" "collation_name" => string(18) "utf8mb4_unicode_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "rate" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(4) "rate" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 20 "display" => string(2) "11" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "count_firstnames_lastnames" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(26) "count_firstnames_lastnames" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool TRUE "ordinal_position" => integer 21 "display" => string(2) "11" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) ) protected _updated_column => NULL protected _created_column => NULL protected _serialize_columns => array(0) protected _primary_key => string(2) "id" protected _primary_key_value => string(8) "15663595" protected _table_names_plural => bool TRUE protected _db => object Database_MySQLi(6){ protected _connection_id => string(40) "d012da34ee02fd2c23a3776760afb1e9d4e5c681" protected _identifier => string(1) "`" public last_query => string(166) "SELECT `finder_lastname`.`id` AS `id`, `finder_lastname`.`title` AS `title` FROM `finder_lastnames` AS `finder_lastname` WHERE ` …" protected _instance => string(5) "looka" protected _connection => object mysqli(19)protected _db_applied => array(0) protected _db_pending => array(0) protected _db_reset => bool TRUE protected _db_builder => NULL protected _with_applied => array(0) protected _cast_data => array(0) protected _errors_filename => string(9) "firstname" }{ public affected_rows => NULL public client_info => NULL public client_version => NULL public connect_errno => NULL public connect_error => NULL public errno => NULL public error => NULL public error_list => NULL public field_count => NULL public host_info => NULL public info => NULL public insert_id => NULL public server_info => NULL public server_version => NULL public stat => NULL public sqlstate => NULL public protocol_version => NULL public thread_id => NULL public warning_count => NULL }protected _config => array(5) ( "type" => string(6) "MySQLi" "connection" => array(3) ( "hostname" => string(9) "localhost" "database" => string(5) "looka" "persistent" => bool FALSE ) "table_prefix" => string(7) "finder_" "charset" => string(7) "utf8mb4" "caching" => bool FALSE ) }{ protected _connection_id => string(40) "d012da34ee02fd2c23a3776760afb1e9d4e5c681" protected _identifier => string(1) "`" public last_query => string(166) "SELECT `finder_lastname`.`id` AS `id`, `finder_lastname`.`title` AS `title` FROM `finder_lastnames` AS `finder_lastname` WHERE ` …" protected _instance => string(5) "looka" protected _connection => object mysqli(19)protected _db_applied => array(0) protected _db_pending => array(0) protected _db_reset => bool TRUE protected _db_builder => NULL protected _with_applied => array(0) protected _cast_data => array(0) protected _errors_filename => string(5) "human" }{ public affected_rows => NULL public client_info => NULL public client_version => NULL public connect_errno => NULL public connect_error => NULL public errno => NULL public error => NULL public error_list => NULL public field_count => NULL public host_info => NULL public info => NULL public insert_id => NULL public server_info => NULL public server_version => NULL public stat => NULL public sqlstate => NULL public protocol_version => NULL public thread_id => NULL public warning_count => NULL }protected _config => array(5) ( "type" => string(6) "MySQLi" "connection" => array(3) ( "hostname" => string(9) "localhost" "database" => string(5) "looka" "persistent" => bool FALSE ) "table_prefix" => string(7) "finder_" "charset" => string(7) "utf8mb4" "caching" => bool FALSE ) }{ protected _has_many => array(2) ( "tasks" => array(4) ( "model" => string(4) "Task" "foreign_key" => string(11) "category_id" "through" => NULL "far_key" => string(7) "task_id" ) "tops" => array(4) ( "model" => string(3) "Top" "foreign_key" => string(11) "category_id" "through" => NULL "far_key" => string(6) "top_id" ) ) protected prefix_url => string(9) "/subject/" protected _reload_on_wakeup => bool FALSE protected _has_one => array(0) protected _belongs_to => array(0) protected _load_with => array(0) protected _validation => NULL protected _object => array(4) ( "id" => string(1) "7" "name" => string(10) "Химия" "url" => string(9) "chemistry" "count" => string(6) "799022" ) protected _changed => array(0) protected _original_values => array(4) ( "id" => string(1) "7" "name" => string(10) "Химия" "url" => string(9) "chemistry" "count" => string(6) "799022" ) protected _related => array(0) protected _valid => bool TRUE protected _loaded => bool TRUE protected _saved => bool FALSE protected _sorting => NULL protected _foreign_key_suffix => string(3) "_id" protected _object_name => string(8) "category" protected _object_plural => string(10) "categories" protected _table_name => string(10) "categories" protected _table_columns => array(4) ( "id" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(2) "id" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 1 "display" => string(2) "11" "comment" => string(0) "" "extra" => string(14) "auto_increment" "key" => string(3) "PRI" "privileges" => string(31) "select,insert,update,references" ) "name" => array(12) ( "type" => string(6) "string" "column_name" => string(4) "name" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool FALSE "ordinal_position" => integer 2 "character_maximum_length" => string(3) "255" "collation_name" => string(18) "utf8mb3_unicode_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "url" => array(12) ( "type" => string(6) "string" "column_name" => string(3) "url" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool FALSE "ordinal_position" => integer 3 "character_maximum_length" => string(3) "255" "collation_name" => string(18) "utf8mb3_unicode_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "count" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(5) "count" "column_default" => string(1) "0" "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 4 "display" => string(2) "11" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) ) protected _updated_column => NULL protected _created_column => NULL protected _serialize_columns => array(0) protected _primary_key => string(2) "id" protected _primary_key_value => string(1) "7" protected _table_names_plural => bool TRUE protected _db => object Database_MySQLi(6)) protected _valid => bool TRUE protected _loaded => bool TRUE protected _saved => bool FALSE protected _sorting => NULL protected _foreign_key_suffix => string(3) "_id" protected _object_name => string(4) "task" protected _object_plural => string(5) "tasks" protected _table_name => string(5) "tasks" protected _table_columns => array(16) ( "id" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(2) "id" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 1 "display" => string(2) "11" "comment" => string(0) "" "extra" => string(14) "auto_increment" "key" => string(3) "PRI" "privileges" => string(31) "select,insert,update,references" ) "category_id" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(11) "category_id" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 2 "display" => string(2) "11" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "text" => array(12) ( "type" => string(6) "string" "character_maximum_length" => string(5) "65535" "column_name" => string(4) "text" "column_default" => NULL "data_type" => string(4) "text" "is_nullable" => bool FALSE "ordinal_position" => integer 3 "collation_name" => string(18) "utf8mb3_unicode_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "zn_id" => array(13) ( "type" => string(3) "int" "min" => string(20) "-9223372036854775808" "max" => string(19) "9223372036854775807" "column_name" => string(5) "zn_id" "column_default" => string(1) "0" "data_type" => string(6) "bigint" "is_nullable" => bool FALSE "ordinal_position" => integer 4 "display" => string(2) "20" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "date_time" => array(10) ( "type" => string(6) "string" "column_name" => string(9) "date_time" "column_default" => string(19) "current_timestamp()" "data_type" => string(8) "datetime" "is_nullable" => bool FALSE "ordinal_position" => integer 5 "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "views" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(5) "views" "column_default" => string(1) "0" "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 6 "display" => string(2) "11" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "human_id" => array(13) ( "type" => string(3) "int" "min" => string(20) "-9223372036854775808" "max" => string(19) "9223372036854775807" "column_name" => string(8) "human_id" "column_default" => NULL "data_type" => string(6) "bigint" "is_nullable" => bool TRUE "ordinal_position" => integer 7 "display" => string(2) "20" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "ya_spell" => array(12) ( "type" => string(6) "string" "column_name" => string(8) "ya_spell" "column_default" => string(1) "0" "data_type" => string(4) "enum" "is_nullable" => bool FALSE "ordinal_position" => integer 8 "collation_name" => string(18) "utf8mb3_unicode_ci" "options" => array(2) ( 0 => string(1) "0" 1 => string(1) "1" ) "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "category_key" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(12) "category_key" "column_default" => string(1) "0" "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 9 "display" => string(2) "11" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "has_gpt" => array(12) ( "type" => string(6) "string" "column_name" => string(7) "has_gpt" "column_default" => NULL "data_type" => string(4) "enum" "is_nullable" => bool TRUE "ordinal_position" => integer 10 "collation_name" => string(18) "utf8mb3_unicode_ci" "options" => array(4) ( 0 => string(1) "0" 1 => string(1) "1" 2 => string(12) "has_attaches" 3 => string(4) "skip" ) "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "source" => array(12) ( "type" => string(6) "string" "column_name" => string(6) "source" "column_default" => NULL "data_type" => string(4) "enum" "is_nullable" => bool TRUE "ordinal_position" => integer 11 "collation_name" => string(18) "utf8mb3_unicode_ci" "options" => array(1) ( 0 => string(12) "vashurok.com" ) "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "source_id" => array(13) ( "type" => string(3) "int" "min" => string(20) "-9223372036854775808" "max" => string(19) "9223372036854775807" "column_name" => string(9) "source_id" "column_default" => NULL "data_type" => string(6) "bigint" "is_nullable" => bool TRUE "ordinal_position" => integer 12 "display" => string(2) "20" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "text_for_search" => array(12) ( "type" => string(6) "string" "character_maximum_length" => string(5) "65535" "column_name" => string(15) "text_for_search" "column_default" => NULL "data_type" => string(4) "text" "is_nullable" => bool TRUE "ordinal_position" => integer 13 "collation_name" => string(18) "utf8mb3_unicode_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "related" => array(12) ( "type" => string(6) "string" "column_name" => string(7) "related" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 14 "character_maximum_length" => string(4) "1023" "collation_name" => string(18) "utf8mb3_unicode_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "good" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(4) "good" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool TRUE "ordinal_position" => integer 15 "display" => string(2) "11" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "bad" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(3) "bad" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool TRUE "ordinal_position" => integer 16 "display" => string(2) "11" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) ) protected _updated_column => NULL protected _created_column => NULL protected _serialize_columns => array(0) protected _primary_key => string(2) "id" protected _primary_key_value => string(8) "16675451" protected _table_names_plural => bool TRUE protected _db => object Database_MySQLi(6){ protected _connection_id => string(40) "9fdecc117b583662f3b3d15c4c4ac71fc778e18d" protected _identifier => string(1) "`" public last_query => string(185) "SELECT `category`.`id` AS `id`, `category`.`name` AS `name`, `category`.`url` AS `url`, `category`.`count` AS `count` FROM `cate …" protected _instance => string(7) "default" protected _connection => object mysqli(19)protected _db_group => NULL protected _db_applied => array(0) protected _db_pending => array(0) protected _db_reset => bool TRUE protected _db_builder => NULL protected _with_applied => array(0) protected _cast_data => array(0) protected _errors_filename => string(8) "category" }{ public affected_rows => NULL public client_info => NULL public client_version => NULL public connect_errno => NULL public connect_error => NULL public errno => NULL public error => NULL public error_list => NULL public field_count => NULL public host_info => NULL public info => NULL public insert_id => NULL public server_info => NULL public server_version => NULL public stat => NULL public sqlstate => NULL public protocol_version => NULL public thread_id => NULL public warning_count => NULL }protected _config => array(6) ( "type" => string(6) "MySQLi" "connection" => array(3) ( "hostname" => string(9) "localhost" "database" => string(9) "uznavalka" "persistent" => bool FALSE ) "table_prefix" => string(0) "" "charset" => string(7) "utf8mb4" "caching" => bool FALSE "profiling" => bool FALSE ) }{ protected _connection_id => string(40) "9fdecc117b583662f3b3d15c4c4ac71fc778e18d" protected _identifier => string(1) "`" public last_query => string(185) "SELECT `category`.`id` AS `id`, `category`.`name` AS `name`, `category`.`url` AS `url`, `category`.`count` AS `count` FROM `cate …" protected _instance => string(7) "default" protected _connection => object mysqli(19)protected _db_group => NULL protected _db_applied => array(0) protected _db_pending => array(0) protected _db_reset => bool TRUE protected _db_builder => NULL protected _with_applied => array(0) protected _cast_data => array(0) protected _errors_filename => string(4) "task" }{ public affected_rows => NULL public client_info => NULL public client_version => NULL public connect_errno => NULL public connect_error => NULL public errno => NULL public error => NULL public error_list => NULL public field_count => NULL public host_info => NULL public info => NULL public insert_id => NULL public server_info => NULL public server_version => NULL public stat => NULL public sqlstate => NULL public protocol_version => NULL public thread_id => NULL public warning_count => NULL }protected _config => array(6) ( "type" => string(6) "MySQLi" "connection" => array(3) ( "hostname" => string(9) "localhost" "database" => string(9) "uznavalka" "persistent" => bool FALSE ) "table_prefix" => string(0) "" "charset" => string(7) "utf8mb4" "caching" => bool FALSE "profiling" => bool FALSE ) }{ protected _belongs_to => array(2) ( "category" => array(2) ( "model" => string(8) "Category" "foreign_key" => string(11) "category_id" ) "human" => array(2) ( "model" => string(5) "Human" "foreign_key" => string(8) "human_id" ) ) protected _has_many => array(4) ( "answers" => array(4) ( "model" => string(6) "Answer" "foreign_key" => string(7) "task_id" "through" => NULL "far_key" => string(9) "answer_id" ) "tattaches" => array(4) ( "model" => string(7) "Tattach" "foreign_key" => string(7) "task_id" "through" => NULL "far_key" => string(10) "tattach_id" ) "tops" => array(4) ( "model" => string(3) "Top" "foreign_key" => string(7) "task_id" "through" => NULL "far_key" => string(6) "top_id" ) "ipsviews" => array(4) ( "model" => string(7) "Ipsview" "foreign_key" => string(7) "task_id" "through" => NULL "far_key" => string(10) "ipsview_id" ) ) protected _reload_on_wakeup => bool FALSE protected _has_one => array(0) protected _load_with => array(0) protected _validation => NULL protected _object => array(16) ( "id" => string(8) "13655758" "category_id" => string(1) "7" "text" => string(300) "<span class="sg-text sg-text--break-words brn-qpage-next-question-box-content__secondary"> скільки грамів натрію карбонату та во …" "zn_id" => string(8) "40262910" "date_time" => string(19) "2023-07-01 01:22:38" "views" => string(1) "2" "human_id" => string(8) "19740870" "ya_spell" => string(1) "0" "category_key" => string(6) "643914" "has_gpt" => string(1) "1" "source" => NULL "source_id" => NULL "text_for_search" => string(201) "скільки грамів натрію карбонату та води потрібно взяти, щоб виготовити 300 г розчину з масовою часткою солі 25%" "related" => string(121) "["11304668","12053800","11420828","11399677","12715641","11321139","11850519","9623947","11684177","11961224","12953770"]" "good" => NULL "bad" => NULL ) protected _changed => array(0) protected _original_values => array(16) ( "id" => string(8) "13655758" "category_id" => string(1) "7" "text" => string(300) "<span class="sg-text sg-text--break-words brn-qpage-next-question-box-content__secondary"> скільки грамів натрію карбонату та во …" "zn_id" => string(8) "40262910" "date_time" => string(19) "2023-07-01 01:22:38" "views" => string(1) "2" "human_id" => string(8) "19740870" "ya_spell" => string(1) "0" "category_key" => string(6) "643914" "has_gpt" => string(1) "1" "source" => NULL "source_id" => NULL "text_for_search" => string(201) "скільки грамів натрію карбонату та води потрібно взяти, щоб виготовити 300 г розчину з масовою часткою солі 25%" "related" => string(121) "["11304668","12053800","11420828","11399677","12715641","11321139","11850519","9623947","11684177","11961224","12953770"]" "good" => NULL "bad" => NULL ) protected _related => array(2) ( "human" => object Model_Human(34)5 => object Model_Task(34){ protected _db_group => string(5) "looka" protected _has_many => array(4) ( "universities" => array(5) ( "model" => string(10) "university" "foreign_key" => string(8) "human_id" "through" => string(19) "humans_universities" "far_key" => string(13) "university_id" "_table_columns" => array(5) ( "faculty_id" => NULL "chair_id" => NULL "graduation" => NULL "education_form" => NULL "education_status" => NULL ) ) "humans_universities" => array(4) ( "model" => string(17) "Humans_University" "foreign_key" => string(8) "human_id" "through" => NULL "far_key" => string(20) "humans_university_id" ) "schools" => array(5) ( "model" => string(6) "school" "foreign_key" => string(8) "human_id" "through" => string(14) "humans_schools" "far_key" => string(9) "school_id" "_table_columns" => array(6) ( "year_from" => NULL "year_to" => NULL "year_graduated" => NULL "class" => NULL "speciality" => NULL "type" => NULL ) ) "humans_schools" => array(4) ( "model" => string(13) "Humans_School" "foreign_key" => string(8) "human_id" "through" => NULL "far_key" => string(16) "humans_school_id" ) ) protected _belongs_to => array(4) ( "lastname" => array(2) ( "model" => string(8) "Lastname" "foreign_key" => string(11) "lastname_id" ) "firstname" => array(2) ( "model" => string(9) "Firstname" "foreign_key" => string(12) "firstname_id" ) "country" => array(2) ( "model" => string(7) "Country" "foreign_key" => string(10) "country_id" ) "city" => array(2) ( "model" => string(4) "City" "foreign_key" => string(7) "city_id" ) ) protected _reload_on_wakeup => bool FALSE protected _has_one => array(0) protected _load_with => array(0) protected _validation => NULL protected _object => array(21) ( "id" => string(8) "19740870" "lastname_id" => string(5) "62469" "firstname_id" => string(3) "441" "nickname" => string(0) "" "vk_id" => string(9) "278370020" "bdate" => string(10) "2004-11-21" "info" => NULL "photo" => string(67) "https://sun9-6.userapi.com/c840720/v840720834/631a8/TRFu3CVfgGo.jpg" "city_id" => string(3) "147" "country_id" => string(1) "1" "home_town" => NULL "home_phone" => string(20) "Надо скажу!" "skype" => NULL "facebook" => NULL "twitter" => NULL "livejournal" => NULL "instagram" => NULL "occupation_type" => string(6) "school" "occupation_name" => string(48) "Половинская средняя школа" "rate" => string(2) "13" "count_firstnames_lastnames" => NULL ) protected _changed => array(0) protected _original_values => array(21) ( "id" => string(8) "19740870" "lastname_id" => string(5) "62469" "firstname_id" => string(3) "441" "nickname" => string(0) "" "vk_id" => string(9) "278370020" "bdate" => string(10) "2004-11-21" "info" => NULL "photo" => string(67) "https://sun9-6.userapi.com/c840720/v840720834/631a8/TRFu3CVfgGo.jpg" "city_id" => string(3) "147" "country_id" => string(1) "1" "home_town" => NULL "home_phone" => string(20) "Надо скажу!" "skype" => NULL "facebook" => NULL "twitter" => NULL "livejournal" => NULL "instagram" => NULL "occupation_type" => string(6) "school" "occupation_name" => string(48) "Половинская средняя школа" "rate" => string(2) "13" "count_firstnames_lastnames" => NULL ) protected _related => array(2) ( "lastname" => object Model_Lastname(34)"category" => object Model_Category(35){ protected _db_group => string(5) "looka" protected _reload_on_wakeup => bool FALSE protected _has_one => array(0) protected _belongs_to => array(0) protected _has_many => array(0) protected _load_with => array(0) protected _validation => NULL protected _object => array(2) ( "id" => string(5) "62469" "title" => string(14) "Кадышев" ) protected _changed => array(0) protected _original_values => array(2) ( "id" => string(5) "62469" "title" => string(14) "Кадышев" ) protected _related => array(0) protected _valid => bool TRUE protected _loaded => bool TRUE protected _saved => bool FALSE protected _sorting => NULL protected _foreign_key_suffix => string(3) "_id" protected _object_name => string(8) "lastname" protected _object_plural => string(9) "lastnames" protected _table_name => string(9) "lastnames" protected _table_columns => array(2) ( "id" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(2) "id" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 1 "display" => string(2) "11" "comment" => string(0) "" "extra" => string(14) "auto_increment" "key" => string(3) "PRI" "privileges" => string(31) "select,insert,update,references" ) "title" => array(12) ( "type" => string(6) "string" "column_name" => string(5) "title" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool FALSE "ordinal_position" => integer 2 "character_maximum_length" => string(3) "255" "collation_name" => string(18) "utf8mb4_unicode_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) ) protected _updated_column => NULL protected _created_column => NULL protected _serialize_columns => array(0) protected _primary_key => string(2) "id" protected _primary_key_value => string(5) "62469" protected _table_names_plural => bool TRUE protected _db => object Database_MySQLi(6)"firstname" => object Model_Firstname(34){ protected _connection_id => string(40) "d012da34ee02fd2c23a3776760afb1e9d4e5c681" protected _identifier => string(1) "`" public last_query => string(166) "SELECT `finder_lastname`.`id` AS `id`, `finder_lastname`.`title` AS `title` FROM `finder_lastnames` AS `finder_lastname` WHERE ` …" protected _instance => string(5) "looka" protected _connection => object mysqli(19)protected _db_applied => array(0) protected _db_pending => array(0) protected _db_reset => bool TRUE protected _db_builder => NULL protected _with_applied => array(0) protected _cast_data => array(0) protected _errors_filename => string(8) "lastname" }{ public affected_rows => NULL public client_info => NULL public client_version => NULL public connect_errno => NULL public connect_error => NULL public errno => NULL public error => NULL public error_list => NULL public field_count => NULL public host_info => NULL public info => NULL public insert_id => NULL public server_info => NULL public server_version => NULL public stat => NULL public sqlstate => NULL public protocol_version => NULL public thread_id => NULL public warning_count => NULL }protected _config => array(5) ( "type" => string(6) "MySQLi" "connection" => array(3) ( "hostname" => string(9) "localhost" "database" => string(5) "looka" "persistent" => bool FALSE ) "table_prefix" => string(7) "finder_" "charset" => string(7) "utf8mb4" "caching" => bool FALSE ) }{ protected _db_group => string(5) "looka" protected _has_many => array(1) ( "humans" => array(4) ( "model" => string(5) "Human" "foreign_key" => string(12) "firstname_id" "through" => NULL "far_key" => string(8) "human_id" ) ) protected _reload_on_wakeup => bool FALSE protected _has_one => array(0) protected _belongs_to => array(0) protected _load_with => array(0) protected _validation => NULL protected _object => array(2) ( "id" => string(3) "441" "title" => string(12) "Богдан" ) protected _changed => array(0) protected _original_values => array(2) ( "id" => string(3) "441" "title" => string(12) "Богдан" ) protected _related => array(0) protected _valid => bool TRUE protected _loaded => bool TRUE protected _saved => bool FALSE protected _sorting => NULL protected _foreign_key_suffix => string(3) "_id" protected _object_name => string(9) "firstname" protected _object_plural => string(10) "firstnames" protected _table_name => string(10) "firstnames" protected _table_columns => array(2) ( "id" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(2) "id" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 1 "display" => string(2) "11" "comment" => string(0) "" "extra" => string(14) "auto_increment" "key" => string(3) "PRI" "privileges" => string(31) "select,insert,update,references" ) "title" => array(12) ( "type" => string(6) "string" "column_name" => string(5) "title" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 2 "character_maximum_length" => string(3) "255" "collation_name" => string(18) "utf8mb4_unicode_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) ) protected _updated_column => NULL protected _created_column => NULL protected _serialize_columns => array(0) protected _primary_key => string(2) "id" protected _primary_key_value => string(3) "441" protected _table_names_plural => bool TRUE protected _db => object Database_MySQLi(6)) protected _valid => bool TRUE protected _loaded => bool TRUE protected _saved => bool FALSE protected _sorting => NULL protected _foreign_key_suffix => string(3) "_id" protected _object_name => string(5) "human" protected _object_plural => string(6) "humans" protected _table_name => string(6) "humans" protected _table_columns => array(21) ( "id" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(2) "id" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 1 "display" => string(2) "11" "comment" => string(0) "" "extra" => string(14) "auto_increment" "key" => string(3) "PRI" "privileges" => string(31) "select,insert,update,references" ) "lastname_id" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(11) "lastname_id" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 2 "display" => string(2) "11" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "firstname_id" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(12) "firstname_id" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 3 "display" => string(2) "11" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "nickname" => array(12) ( "type" => string(6) "string" "column_name" => string(8) "nickname" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 4 "character_maximum_length" => string(3) "255" "collation_name" => string(18) "utf8mb4_unicode_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "vk_id" => array(13) ( "type" => string(3) "int" "min" => string(20) "-9223372036854775808" "max" => string(19) "9223372036854775807" "column_name" => string(5) "vk_id" "column_default" => NULL "data_type" => string(6) "bigint" "is_nullable" => bool TRUE "ordinal_position" => integer 5 "display" => string(2) "20" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "bdate" => array(10) ( "type" => string(6) "string" "column_name" => string(5) "bdate" "column_default" => NULL "data_type" => string(4) "date" "is_nullable" => bool TRUE "ordinal_position" => integer 6 "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "info" => array(12) ( "type" => string(6) "string" "column_name" => string(4) "info" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 7 "character_maximum_length" => string(4) "1023" "collation_name" => string(18) "utf8mb4_unicode_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "photo" => array(12) ( "type" => string(6) "string" "column_name" => string(5) "photo" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 8 "character_maximum_length" => string(3) "255" "collation_name" => string(18) "utf8mb4_unicode_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "city_id" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(7) "city_id" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool TRUE "ordinal_position" => integer 9 "display" => string(2) "11" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "country_id" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(10) "country_id" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool TRUE "ordinal_position" => integer 10 "display" => string(2) "11" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "home_town" => array(12) ( "type" => string(6) "string" "column_name" => string(9) "home_town" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 11 "character_maximum_length" => string(3) "255" "collation_name" => string(18) "utf8mb4_unicode_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "home_phone" => array(12) ( "type" => string(6) "string" "column_name" => string(10) "home_phone" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 12 "character_maximum_length" => string(2) "63" "collation_name" => string(18) "utf8mb4_unicode_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "skype" => array(12) ( "type" => string(6) "string" "column_name" => string(5) "skype" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 13 "character_maximum_length" => string(3) "127" "collation_name" => string(18) "utf8mb4_unicode_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "facebook" => array(12) ( "type" => string(6) "string" "column_name" => string(8) "facebook" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 14 "character_maximum_length" => string(3) "127" "collation_name" => string(18) "utf8mb4_unicode_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "twitter" => array(12) ( "type" => string(6) "string" "column_name" => string(7) "twitter" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 15 "character_maximum_length" => string(3) "127" "collation_name" => string(18) "utf8mb4_unicode_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "livejournal" => array(12) ( "type" => string(6) "string" "column_name" => string(11) "livejournal" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 16 "character_maximum_length" => string(3) "127" "collation_name" => string(18) "utf8mb4_unicode_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "instagram" => array(12) ( "type" => string(6) "string" "column_name" => string(9) "instagram" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 17 "character_maximum_length" => string(3) "127" "collation_name" => string(18) "utf8mb4_unicode_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "occupation_type" => array(12) ( "type" => string(6) "string" "column_name" => string(15) "occupation_type" "column_default" => NULL "data_type" => string(4) "enum" "is_nullable" => bool TRUE "ordinal_position" => integer 18 "collation_name" => string(18) "utf8mb4_unicode_ci" "options" => array(3) ( 0 => string(4) "work" 1 => string(6) "school" 2 => string(10) "university" ) "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "occupation_name" => array(12) ( "type" => string(6) "string" "column_name" => string(15) "occupation_name" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 19 "character_maximum_length" => string(3) "255" "collation_name" => string(18) "utf8mb4_unicode_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "rate" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(4) "rate" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 20 "display" => string(2) "11" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "count_firstnames_lastnames" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(26) "count_firstnames_lastnames" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool TRUE "ordinal_position" => integer 21 "display" => string(2) "11" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) ) protected _updated_column => NULL protected _created_column => NULL protected _serialize_columns => array(0) protected _primary_key => string(2) "id" protected _primary_key_value => string(8) "19740870" protected _table_names_plural => bool TRUE protected _db => object Database_MySQLi(6){ protected _connection_id => string(40) "d012da34ee02fd2c23a3776760afb1e9d4e5c681" protected _identifier => string(1) "`" public last_query => string(166) "SELECT `finder_lastname`.`id` AS `id`, `finder_lastname`.`title` AS `title` FROM `finder_lastnames` AS `finder_lastname` WHERE ` …" protected _instance => string(5) "looka" protected _connection => object mysqli(19)protected _db_applied => array(0) protected _db_pending => array(0) protected _db_reset => bool TRUE protected _db_builder => NULL protected _with_applied => array(0) protected _cast_data => array(0) protected _errors_filename => string(9) "firstname" }{ public affected_rows => NULL public client_info => NULL public client_version => NULL public connect_errno => NULL public connect_error => NULL public errno => NULL public error => NULL public error_list => NULL public field_count => NULL public host_info => NULL public info => NULL public insert_id => NULL public server_info => NULL public server_version => NULL public stat => NULL public sqlstate => NULL public protocol_version => NULL public thread_id => NULL public warning_count => NULL }protected _config => array(5) ( "type" => string(6) "MySQLi" "connection" => array(3) ( "hostname" => string(9) "localhost" "database" => string(5) "looka" "persistent" => bool FALSE ) "table_prefix" => string(7) "finder_" "charset" => string(7) "utf8mb4" "caching" => bool FALSE ) }{ protected _connection_id => string(40) "d012da34ee02fd2c23a3776760afb1e9d4e5c681" protected _identifier => string(1) "`" public last_query => string(166) "SELECT `finder_lastname`.`id` AS `id`, `finder_lastname`.`title` AS `title` FROM `finder_lastnames` AS `finder_lastname` WHERE ` …" protected _instance => string(5) "looka" protected _connection => object mysqli(19)protected _db_applied => array(0) protected _db_pending => array(0) protected _db_reset => bool TRUE protected _db_builder => NULL protected _with_applied => array(0) protected _cast_data => array(0) protected _errors_filename => string(5) "human" }{ public affected_rows => NULL public client_info => NULL public client_version => NULL public connect_errno => NULL public connect_error => NULL public errno => NULL public error => NULL public error_list => NULL public field_count => NULL public host_info => NULL public info => NULL public insert_id => NULL public server_info => NULL public server_version => NULL public stat => NULL public sqlstate => NULL public protocol_version => NULL public thread_id => NULL public warning_count => NULL }protected _config => array(5) ( "type" => string(6) "MySQLi" "connection" => array(3) ( "hostname" => string(9) "localhost" "database" => string(5) "looka" "persistent" => bool FALSE ) "table_prefix" => string(7) "finder_" "charset" => string(7) "utf8mb4" "caching" => bool FALSE ) }{ protected _has_many => array(2) ( "tasks" => array(4) ( "model" => string(4) "Task" "foreign_key" => string(11) "category_id" "through" => NULL "far_key" => string(7) "task_id" ) "tops" => array(4) ( "model" => string(3) "Top" "foreign_key" => string(11) "category_id" "through" => NULL "far_key" => string(6) "top_id" ) ) protected prefix_url => string(9) "/subject/" protected _reload_on_wakeup => bool FALSE protected _has_one => array(0) protected _belongs_to => array(0) protected _load_with => array(0) protected _validation => NULL protected _object => array(4) ( "id" => string(1) "7" "name" => string(10) "Химия" "url" => string(9) "chemistry" "count" => string(6) "799022" ) protected _changed => array(0) protected _original_values => array(4) ( "id" => string(1) "7" "name" => string(10) "Химия" "url" => string(9) "chemistry" "count" => string(6) "799022" ) protected _related => array(0) protected _valid => bool TRUE protected _loaded => bool TRUE protected _saved => bool FALSE protected _sorting => NULL protected _foreign_key_suffix => string(3) "_id" protected _object_name => string(8) "category" protected _object_plural => string(10) "categories" protected _table_name => string(10) "categories" protected _table_columns => array(4) ( "id" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(2) "id" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 1 "display" => string(2) "11" "comment" => string(0) "" "extra" => string(14) "auto_increment" "key" => string(3) "PRI" "privileges" => string(31) "select,insert,update,references" ) "name" => array(12) ( "type" => string(6) "string" "column_name" => string(4) "name" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool FALSE "ordinal_position" => integer 2 "character_maximum_length" => string(3) "255" "collation_name" => string(18) "utf8mb3_unicode_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "url" => array(12) ( "type" => string(6) "string" "column_name" => string(3) "url" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool FALSE "ordinal_position" => integer 3 "character_maximum_length" => string(3) "255" "collation_name" => string(18) "utf8mb3_unicode_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "count" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(5) "count" "column_default" => string(1) "0" "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 4 "display" => string(2) "11" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) ) protected _updated_column => NULL protected _created_column => NULL protected _serialize_columns => array(0) protected _primary_key => string(2) "id" protected _primary_key_value => string(1) "7" protected _table_names_plural => bool TRUE protected _db => object Database_MySQLi(6)) protected _valid => bool TRUE protected _loaded => bool TRUE protected _saved => bool FALSE protected _sorting => NULL protected _foreign_key_suffix => string(3) "_id" protected _object_name => string(4) "task" protected _object_plural => string(5) "tasks" protected _table_name => string(5) "tasks" protected _table_columns => array(16) ( "id" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(2) "id" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 1 "display" => string(2) "11" "comment" => string(0) "" "extra" => string(14) "auto_increment" "key" => string(3) "PRI" "privileges" => string(31) "select,insert,update,references" ) "category_id" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(11) "category_id" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 2 "display" => string(2) "11" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "text" => array(12) ( "type" => string(6) "string" "character_maximum_length" => string(5) "65535" "column_name" => string(4) "text" "column_default" => NULL "data_type" => string(4) "text" "is_nullable" => bool FALSE "ordinal_position" => integer 3 "collation_name" => string(18) "utf8mb3_unicode_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "zn_id" => array(13) ( "type" => string(3) "int" "min" => string(20) "-9223372036854775808" "max" => string(19) "9223372036854775807" "column_name" => string(5) "zn_id" "column_default" => string(1) "0" "data_type" => string(6) "bigint" "is_nullable" => bool FALSE "ordinal_position" => integer 4 "display" => string(2) "20" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "date_time" => array(10) ( "type" => string(6) "string" "column_name" => string(9) "date_time" "column_default" => string(19) "current_timestamp()" "data_type" => string(8) "datetime" "is_nullable" => bool FALSE "ordinal_position" => integer 5 "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "views" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(5) "views" "column_default" => string(1) "0" "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 6 "display" => string(2) "11" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "human_id" => array(13) ( "type" => string(3) "int" "min" => string(20) "-9223372036854775808" "max" => string(19) "9223372036854775807" "column_name" => string(8) "human_id" "column_default" => NULL "data_type" => string(6) "bigint" "is_nullable" => bool TRUE "ordinal_position" => integer 7 "display" => string(2) "20" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "ya_spell" => array(12) ( "type" => string(6) "string" "column_name" => string(8) "ya_spell" "column_default" => string(1) "0" "data_type" => string(4) "enum" "is_nullable" => bool FALSE "ordinal_position" => integer 8 "collation_name" => string(18) "utf8mb3_unicode_ci" "options" => array(2) ( 0 => string(1) "0" 1 => string(1) "1" ) "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "category_key" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(12) "category_key" "column_default" => string(1) "0" "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 9 "display" => string(2) "11" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "has_gpt" => array(12) ( "type" => string(6) "string" "column_name" => string(7) "has_gpt" "column_default" => NULL "data_type" => string(4) "enum" "is_nullable" => bool TRUE "ordinal_position" => integer 10 "collation_name" => string(18) "utf8mb3_unicode_ci" "options" => array(4) ( 0 => string(1) "0" 1 => string(1) "1" 2 => string(12) "has_attaches" 3 => string(4) "skip" ) "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "source" => array(12) ( "type" => string(6) "string" "column_name" => string(6) "source" "column_default" => NULL "data_type" => string(4) "enum" "is_nullable" => bool TRUE "ordinal_position" => integer 11 "collation_name" => string(18) "utf8mb3_unicode_ci" "options" => array(1) ( 0 => string(12) "vashurok.com" ) "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "source_id" => array(13) ( "type" => string(3) "int" "min" => string(20) "-9223372036854775808" "max" => string(19) "9223372036854775807" "column_name" => string(9) "source_id" "column_default" => NULL "data_type" => string(6) "bigint" "is_nullable" => bool TRUE "ordinal_position" => integer 12 "display" => string(2) "20" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "text_for_search" => array(12) ( "type" => string(6) "string" "character_maximum_length" => string(5) "65535" "column_name" => string(15) "text_for_search" "column_default" => NULL "data_type" => string(4) "text" "is_nullable" => bool TRUE "ordinal_position" => integer 13 "collation_name" => string(18) "utf8mb3_unicode_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "related" => array(12) ( "type" => string(6) "string" "column_name" => string(7) "related" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 14 "character_maximum_length" => string(4) "1023" "collation_name" => string(18) "utf8mb3_unicode_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "good" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(4) "good" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool TRUE "ordinal_position" => integer 15 "display" => string(2) "11" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "bad" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(3) "bad" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool TRUE "ordinal_position" => integer 16 "display" => string(2) "11" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) ) protected _updated_column => NULL protected _created_column => NULL protected _serialize_columns => array(0) protected _primary_key => string(2) "id" protected _primary_key_value => string(8) "13655758" protected _table_names_plural => bool TRUE protected _db => object Database_MySQLi(6){ protected _connection_id => string(40) "9fdecc117b583662f3b3d15c4c4ac71fc778e18d" protected _identifier => string(1) "`" public last_query => string(185) "SELECT `category`.`id` AS `id`, `category`.`name` AS `name`, `category`.`url` AS `url`, `category`.`count` AS `count` FROM `cate …" protected _instance => string(7) "default" protected _connection => object mysqli(19)protected _db_group => NULL protected _db_applied => array(0) protected _db_pending => array(0) protected _db_reset => bool TRUE protected _db_builder => NULL protected _with_applied => array(0) protected _cast_data => array(0) protected _errors_filename => string(8) "category" }{ public affected_rows => NULL public client_info => NULL public client_version => NULL public connect_errno => NULL public connect_error => NULL public errno => NULL public error => NULL public error_list => NULL public field_count => NULL public host_info => NULL public info => NULL public insert_id => NULL public server_info => NULL public server_version => NULL public stat => NULL public sqlstate => NULL public protocol_version => NULL public thread_id => NULL public warning_count => NULL }protected _config => array(6) ( "type" => string(6) "MySQLi" "connection" => array(3) ( "hostname" => string(9) "localhost" "database" => string(9) "uznavalka" "persistent" => bool FALSE ) "table_prefix" => string(0) "" "charset" => string(7) "utf8mb4" "caching" => bool FALSE "profiling" => bool FALSE ) }{ protected _connection_id => string(40) "9fdecc117b583662f3b3d15c4c4ac71fc778e18d" protected _identifier => string(1) "`" public last_query => string(185) "SELECT `category`.`id` AS `id`, `category`.`name` AS `name`, `category`.`url` AS `url`, `category`.`count` AS `count` FROM `cate …" protected _instance => string(7) "default" protected _connection => object mysqli(19)protected _db_group => NULL protected _db_applied => array(0) protected _db_pending => array(0) protected _db_reset => bool TRUE protected _db_builder => NULL protected _with_applied => array(0) protected _cast_data => array(0) protected _errors_filename => string(4) "task" }{ public affected_rows => NULL public client_info => NULL public client_version => NULL public connect_errno => NULL public connect_error => NULL public errno => NULL public error => NULL public error_list => NULL public field_count => NULL public host_info => NULL public info => NULL public insert_id => NULL public server_info => NULL public server_version => NULL public stat => NULL public sqlstate => NULL public protocol_version => NULL public thread_id => NULL public warning_count => NULL }protected _config => array(6) ( "type" => string(6) "MySQLi" "connection" => array(3) ( "hostname" => string(9) "localhost" "database" => string(9) "uznavalka" "persistent" => bool FALSE ) "table_prefix" => string(0) "" "charset" => string(7) "utf8mb4" "caching" => bool FALSE "profiling" => bool FALSE ) }{ protected _belongs_to => array(2) ( "category" => array(2) ( "model" => string(8) "Category" "foreign_key" => string(11) "category_id" ) "human" => array(2) ( "model" => string(5) "Human" "foreign_key" => string(8) "human_id" ) ) protected _has_many => array(4) ( "answers" => array(4) ( "model" => string(6) "Answer" "foreign_key" => string(7) "task_id" "through" => NULL "far_key" => string(9) "answer_id" ) "tattaches" => array(4) ( "model" => string(7) "Tattach" "foreign_key" => string(7) "task_id" "through" => NULL "far_key" => string(10) "tattach_id" ) "tops" => array(4) ( "model" => string(3) "Top" "foreign_key" => string(7) "task_id" "through" => NULL "far_key" => string(6) "top_id" ) "ipsviews" => array(4) ( "model" => string(7) "Ipsview" "foreign_key" => string(7) "task_id" "through" => NULL "far_key" => string(10) "ipsview_id" ) ) protected _reload_on_wakeup => bool FALSE protected _has_one => array(0) protected _load_with => array(0) protected _validation => NULL protected _object => array(16) ( "id" => string(8) "16768629" "category_id" => string(1) "7" "text" => string(279) "<span class="sg-text sg-text--large sg-text--bold sg-text--break-words brn-qpage-next-question-box-content__primary"> Плотность …" "zn_id" => string(8) "53905835" "date_time" => string(19) "2023-12-11 15:54:01" "views" => string(1) "5" "human_id" => string(8) "45430008" "ya_spell" => string(1) "0" "category_key" => string(6) "807968" "has_gpt" => string(1) "1" "source" => NULL "source_id" => NULL "text_for_search" => string(153) "Плотность газа (н. у) равна 1,964 г/дм3. Чему равна его относительная плотность по гелию?" "related" => string(115) "["5627434","9760947","15767002","8373576","8169876","13578701","3690788","13495168","4803913","16381419","9069156"]" "good" => NULL "bad" => NULL ) protected _changed => array(0) protected _original_values => array(16) ( "id" => string(8) "16768629" "category_id" => string(1) "7" "text" => string(279) "<span class="sg-text sg-text--large sg-text--bold sg-text--break-words brn-qpage-next-question-box-content__primary"> Плотность …" "zn_id" => string(8) "53905835" "date_time" => string(19) "2023-12-11 15:54:01" "views" => string(1) "5" "human_id" => string(8) "45430008" "ya_spell" => string(1) "0" "category_key" => string(6) "807968" "has_gpt" => string(1) "1" "source" => NULL "source_id" => NULL "text_for_search" => string(153) "Плотность газа (н. у) равна 1,964 г/дм3. Чему равна его относительная плотность по гелию?" "related" => string(115) "["5627434","9760947","15767002","8373576","8169876","13578701","3690788","13495168","4803913","16381419","9069156"]" "good" => NULL "bad" => NULL ) protected _related => array(2) ( "human" => object Model_Human(34)6 => object Model_Task(34){ protected _db_group => string(5) "looka" protected _has_many => array(4) ( "universities" => array(5) ( "model" => string(10) "university" "foreign_key" => string(8) "human_id" "through" => string(19) "humans_universities" "far_key" => string(13) "university_id" "_table_columns" => array(5) ( "faculty_id" => NULL "chair_id" => NULL "graduation" => NULL "education_form" => NULL "education_status" => NULL ) ) "humans_universities" => array(4) ( "model" => string(17) "Humans_University" "foreign_key" => string(8) "human_id" "through" => NULL "far_key" => string(20) "humans_university_id" ) "schools" => array(5) ( "model" => string(6) "school" "foreign_key" => string(8) "human_id" "through" => string(14) "humans_schools" "far_key" => string(9) "school_id" "_table_columns" => array(6) ( "year_from" => NULL "year_to" => NULL "year_graduated" => NULL "class" => NULL "speciality" => NULL "type" => NULL ) ) "humans_schools" => array(4) ( "model" => string(13) "Humans_School" "foreign_key" => string(8) "human_id" "through" => NULL "far_key" => string(16) "humans_school_id" ) ) protected _belongs_to => array(4) ( "lastname" => array(2) ( "model" => string(8) "Lastname" "foreign_key" => string(11) "lastname_id" ) "firstname" => array(2) ( "model" => string(9) "Firstname" "foreign_key" => string(12) "firstname_id" ) "country" => array(2) ( "model" => string(7) "Country" "foreign_key" => string(10) "country_id" ) "city" => array(2) ( "model" => string(4) "City" "foreign_key" => string(7) "city_id" ) ) protected _reload_on_wakeup => bool FALSE protected _has_one => array(0) protected _load_with => array(0) protected _validation => NULL protected _object => array(21) ( "id" => string(8) "45430008" "lastname_id" => string(5) "27069" "firstname_id" => string(5) "11435" "nickname" => string(0) "" "vk_id" => string(9) "246081689" "bdate" => string(10) "2004-10-09" "info" => NULL "photo" => string(63) "https://pp.userapi.com/c629313/v629313689/31cf6/dWs1Z4nnAYU.jpg" "city_id" => string(4) "3214" "country_id" => string(1) "1" "home_town" => string(0) "" "home_phone" => string(0) "" "skype" => NULL "facebook" => NULL "twitter" => NULL "livejournal" => NULL "instagram" => NULL "occupation_type" => NULL "occupation_name" => NULL "rate" => string(2) "13" "count_firstnames_lastnames" => NULL ) protected _changed => array(0) protected _original_values => array(21) ( "id" => string(8) "45430008" "lastname_id" => string(5) "27069" "firstname_id" => string(5) "11435" "nickname" => string(0) "" "vk_id" => string(9) "246081689" "bdate" => string(10) "2004-10-09" "info" => NULL "photo" => string(63) "https://pp.userapi.com/c629313/v629313689/31cf6/dWs1Z4nnAYU.jpg" "city_id" => string(4) "3214" "country_id" => string(1) "1" "home_town" => string(0) "" "home_phone" => string(0) "" "skype" => NULL "facebook" => NULL "twitter" => NULL "livejournal" => NULL "instagram" => NULL "occupation_type" => NULL "occupation_name" => NULL "rate" => string(2) "13" "count_firstnames_lastnames" => NULL ) protected _related => array(2) ( "lastname" => object Model_Lastname(34)"category" => object Model_Category(35){ protected _db_group => string(5) "looka" protected _reload_on_wakeup => bool FALSE protected _has_one => array(0) protected _belongs_to => array(0) protected _has_many => array(0) protected _load_with => array(0) protected _validation => NULL protected _object => array(2) ( "id" => string(5) "27069" "title" => string(14) "Тумасян" ) protected _changed => array(0) protected _original_values => array(2) ( "id" => string(5) "27069" "title" => string(14) "Тумасян" ) protected _related => array(0) protected _valid => bool TRUE protected _loaded => bool TRUE protected _saved => bool FALSE protected _sorting => NULL protected _foreign_key_suffix => string(3) "_id" protected _object_name => string(8) "lastname" protected _object_plural => string(9) "lastnames" protected _table_name => string(9) "lastnames" protected _table_columns => array(2) ( "id" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(2) "id" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 1 "display" => string(2) "11" "comment" => string(0) "" "extra" => string(14) "auto_increment" "key" => string(3) "PRI" "privileges" => string(31) "select,insert,update,references" ) "title" => array(12) ( "type" => string(6) "string" "column_name" => string(5) "title" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool FALSE "ordinal_position" => integer 2 "character_maximum_length" => string(3) "255" "collation_name" => string(18) "utf8mb4_unicode_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) ) protected _updated_column => NULL protected _created_column => NULL protected _serialize_columns => array(0) protected _primary_key => string(2) "id" protected _primary_key_value => string(5) "27069" protected _table_names_plural => bool TRUE protected _db => object Database_MySQLi(6)"firstname" => object Model_Firstname(34){ protected _connection_id => string(40) "d012da34ee02fd2c23a3776760afb1e9d4e5c681" protected _identifier => string(1) "`" public last_query => string(166) "SELECT `finder_lastname`.`id` AS `id`, `finder_lastname`.`title` AS `title` FROM `finder_lastnames` AS `finder_lastname` WHERE ` …" protected _instance => string(5) "looka" protected _connection => object mysqli(19)protected _db_applied => array(0) protected _db_pending => array(0) protected _db_reset => bool TRUE protected _db_builder => NULL protected _with_applied => array(0) protected _cast_data => array(0) protected _errors_filename => string(8) "lastname" }{ public affected_rows => NULL public client_info => NULL public client_version => NULL public connect_errno => NULL public connect_error => NULL public errno => NULL public error => NULL public error_list => NULL public field_count => NULL public host_info => NULL public info => NULL public insert_id => NULL public server_info => NULL public server_version => NULL public stat => NULL public sqlstate => NULL public protocol_version => NULL public thread_id => NULL public warning_count => NULL }protected _config => array(5) ( "type" => string(6) "MySQLi" "connection" => array(3) ( "hostname" => string(9) "localhost" "database" => string(5) "looka" "persistent" => bool FALSE ) "table_prefix" => string(7) "finder_" "charset" => string(7) "utf8mb4" "caching" => bool FALSE ) }{ protected _db_group => string(5) "looka" protected _has_many => array(1) ( "humans" => array(4) ( "model" => string(5) "Human" "foreign_key" => string(12) "firstname_id" "through" => NULL "far_key" => string(8) "human_id" ) ) protected _reload_on_wakeup => bool FALSE protected _has_one => array(0) protected _belongs_to => array(0) protected _load_with => array(0) protected _validation => NULL protected _object => array(2) ( "id" => string(5) "11435" "title" => string(16) "Джессика" ) protected _changed => array(0) protected _original_values => array(2) ( "id" => string(5) "11435" "title" => string(16) "Джессика" ) protected _related => array(0) protected _valid => bool TRUE protected _loaded => bool TRUE protected _saved => bool FALSE protected _sorting => NULL protected _foreign_key_suffix => string(3) "_id" protected _object_name => string(9) "firstname" protected _object_plural => string(10) "firstnames" protected _table_name => string(10) "firstnames" protected _table_columns => array(2) ( "id" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(2) "id" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 1 "display" => string(2) "11" "comment" => string(0) "" "extra" => string(14) "auto_increment" "key" => string(3) "PRI" "privileges" => string(31) "select,insert,update,references" ) "title" => array(12) ( "type" => string(6) "string" "column_name" => string(5) "title" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 2 "character_maximum_length" => string(3) "255" "collation_name" => string(18) "utf8mb4_unicode_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) ) protected _updated_column => NULL protected _created_column => NULL protected _serialize_columns => array(0) protected _primary_key => string(2) "id" protected _primary_key_value => string(5) "11435" protected _table_names_plural => bool TRUE protected _db => object Database_MySQLi(6)) protected _valid => bool TRUE protected _loaded => bool TRUE protected _saved => bool FALSE protected _sorting => NULL protected _foreign_key_suffix => string(3) "_id" protected _object_name => string(5) "human" protected _object_plural => string(6) "humans" protected _table_name => string(6) "humans" protected _table_columns => array(21) ( "id" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(2) "id" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 1 "display" => string(2) "11" "comment" => string(0) "" "extra" => string(14) "auto_increment" "key" => string(3) "PRI" "privileges" => string(31) "select,insert,update,references" ) "lastname_id" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(11) "lastname_id" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 2 "display" => string(2) "11" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "firstname_id" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(12) "firstname_id" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 3 "display" => string(2) "11" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "nickname" => array(12) ( "type" => string(6) "string" "column_name" => string(8) "nickname" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 4 "character_maximum_length" => string(3) "255" "collation_name" => string(18) "utf8mb4_unicode_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "vk_id" => array(13) ( "type" => string(3) "int" "min" => string(20) "-9223372036854775808" "max" => string(19) "9223372036854775807" "column_name" => string(5) "vk_id" "column_default" => NULL "data_type" => string(6) "bigint" "is_nullable" => bool TRUE "ordinal_position" => integer 5 "display" => string(2) "20" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "bdate" => array(10) ( "type" => string(6) "string" "column_name" => string(5) "bdate" "column_default" => NULL "data_type" => string(4) "date" "is_nullable" => bool TRUE "ordinal_position" => integer 6 "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "info" => array(12) ( "type" => string(6) "string" "column_name" => string(4) "info" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 7 "character_maximum_length" => string(4) "1023" "collation_name" => string(18) "utf8mb4_unicode_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "photo" => array(12) ( "type" => string(6) "string" "column_name" => string(5) "photo" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 8 "character_maximum_length" => string(3) "255" "collation_name" => string(18) "utf8mb4_unicode_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "city_id" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(7) "city_id" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool TRUE "ordinal_position" => integer 9 "display" => string(2) "11" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "country_id" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(10) "country_id" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool TRUE "ordinal_position" => integer 10 "display" => string(2) "11" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "home_town" => array(12) ( "type" => string(6) "string" "column_name" => string(9) "home_town" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 11 "character_maximum_length" => string(3) "255" "collation_name" => string(18) "utf8mb4_unicode_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "home_phone" => array(12) ( "type" => string(6) "string" "column_name" => string(10) "home_phone" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 12 "character_maximum_length" => string(2) "63" "collation_name" => string(18) "utf8mb4_unicode_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "skype" => array(12) ( "type" => string(6) "string" "column_name" => string(5) "skype" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 13 "character_maximum_length" => string(3) "127" "collation_name" => string(18) "utf8mb4_unicode_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "facebook" => array(12) ( "type" => string(6) "string" "column_name" => string(8) "facebook" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 14 "character_maximum_length" => string(3) "127" "collation_name" => string(18) "utf8mb4_unicode_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "twitter" => array(12) ( "type" => string(6) "string" "column_name" => string(7) "twitter" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 15 "character_maximum_length" => string(3) "127" "collation_name" => string(18) "utf8mb4_unicode_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "livejournal" => array(12) ( "type" => string(6) "string" "column_name" => string(11) "livejournal" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 16 "character_maximum_length" => string(3) "127" "collation_name" => string(18) "utf8mb4_unicode_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "instagram" => array(12) ( "type" => string(6) "string" "column_name" => string(9) "instagram" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 17 "character_maximum_length" => string(3) "127" "collation_name" => string(18) "utf8mb4_unicode_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "occupation_type" => array(12) ( "type" => string(6) "string" "column_name" => string(15) "occupation_type" "column_default" => NULL "data_type" => string(4) "enum" "is_nullable" => bool TRUE "ordinal_position" => integer 18 "collation_name" => string(18) "utf8mb4_unicode_ci" "options" => array(3) ( 0 => string(4) "work" 1 => string(6) "school" 2 => string(10) "university" ) "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "occupation_name" => array(12) ( "type" => string(6) "string" "column_name" => string(15) "occupation_name" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 19 "character_maximum_length" => string(3) "255" "collation_name" => string(18) "utf8mb4_unicode_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "rate" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(4) "rate" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 20 "display" => string(2) "11" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "count_firstnames_lastnames" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(26) "count_firstnames_lastnames" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool TRUE "ordinal_position" => integer 21 "display" => string(2) "11" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) ) protected _updated_column => NULL protected _created_column => NULL protected _serialize_columns => array(0) protected _primary_key => string(2) "id" protected _primary_key_value => string(8) "45430008" protected _table_names_plural => bool TRUE protected _db => object Database_MySQLi(6){ protected _connection_id => string(40) "d012da34ee02fd2c23a3776760afb1e9d4e5c681" protected _identifier => string(1) "`" public last_query => string(166) "SELECT `finder_lastname`.`id` AS `id`, `finder_lastname`.`title` AS `title` FROM `finder_lastnames` AS `finder_lastname` WHERE ` …" protected _instance => string(5) "looka" protected _connection => object mysqli(19)protected _db_applied => array(0) protected _db_pending => array(0) protected _db_reset => bool TRUE protected _db_builder => NULL protected _with_applied => array(0) protected _cast_data => array(0) protected _errors_filename => string(9) "firstname" }{ public affected_rows => NULL public client_info => NULL public client_version => NULL public connect_errno => NULL public connect_error => NULL public errno => NULL public error => NULL public error_list => NULL public field_count => NULL public host_info => NULL public info => NULL public insert_id => NULL public server_info => NULL public server_version => NULL public stat => NULL public sqlstate => NULL public protocol_version => NULL public thread_id => NULL public warning_count => NULL }protected _config => array(5) ( "type" => string(6) "MySQLi" "connection" => array(3) ( "hostname" => string(9) "localhost" "database" => string(5) "looka" "persistent" => bool FALSE ) "table_prefix" => string(7) "finder_" "charset" => string(7) "utf8mb4" "caching" => bool FALSE ) }{ protected _connection_id => string(40) "d012da34ee02fd2c23a3776760afb1e9d4e5c681" protected _identifier => string(1) "`" public last_query => string(166) "SELECT `finder_lastname`.`id` AS `id`, `finder_lastname`.`title` AS `title` FROM `finder_lastnames` AS `finder_lastname` WHERE ` …" protected _instance => string(5) "looka" protected _connection => object mysqli(19)protected _db_applied => array(0) protected _db_pending => array(0) protected _db_reset => bool TRUE protected _db_builder => NULL protected _with_applied => array(0) protected _cast_data => array(0) protected _errors_filename => string(5) "human" }{ public affected_rows => NULL public client_info => NULL public client_version => NULL public connect_errno => NULL public connect_error => NULL public errno => NULL public error => NULL public error_list => NULL public field_count => NULL public host_info => NULL public info => NULL public insert_id => NULL public server_info => NULL public server_version => NULL public stat => NULL public sqlstate => NULL public protocol_version => NULL public thread_id => NULL public warning_count => NULL }protected _config => array(5) ( "type" => string(6) "MySQLi" "connection" => array(3) ( "hostname" => string(9) "localhost" "database" => string(5) "looka" "persistent" => bool FALSE ) "table_prefix" => string(7) "finder_" "charset" => string(7) "utf8mb4" "caching" => bool FALSE ) }{ protected _has_many => array(2) ( "tasks" => array(4) ( "model" => string(4) "Task" "foreign_key" => string(11) "category_id" "through" => NULL "far_key" => string(7) "task_id" ) "tops" => array(4) ( "model" => string(3) "Top" "foreign_key" => string(11) "category_id" "through" => NULL "far_key" => string(6) "top_id" ) ) protected prefix_url => string(9) "/subject/" protected _reload_on_wakeup => bool FALSE protected _has_one => array(0) protected _belongs_to => array(0) protected _load_with => array(0) protected _validation => NULL protected _object => array(4) ( "id" => string(1) "7" "name" => string(10) "Химия" "url" => string(9) "chemistry" "count" => string(6) "799022" ) protected _changed => array(0) protected _original_values => array(4) ( "id" => string(1) "7" "name" => string(10) "Химия" "url" => string(9) "chemistry" "count" => string(6) "799022" ) protected _related => array(0) protected _valid => bool TRUE protected _loaded => bool TRUE protected _saved => bool FALSE protected _sorting => NULL protected _foreign_key_suffix => string(3) "_id" protected _object_name => string(8) "category" protected _object_plural => string(10) "categories" protected _table_name => string(10) "categories" protected _table_columns => array(4) ( "id" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(2) "id" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 1 "display" => string(2) "11" "comment" => string(0) "" "extra" => string(14) "auto_increment" "key" => string(3) "PRI" "privileges" => string(31) "select,insert,update,references" ) "name" => array(12) ( "type" => string(6) "string" "column_name" => string(4) "name" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool FALSE "ordinal_position" => integer 2 "character_maximum_length" => string(3) "255" "collation_name" => string(18) "utf8mb3_unicode_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "url" => array(12) ( "type" => string(6) "string" "column_name" => string(3) "url" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool FALSE "ordinal_position" => integer 3 "character_maximum_length" => string(3) "255" "collation_name" => string(18) "utf8mb3_unicode_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "count" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(5) "count" "column_default" => string(1) "0" "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 4 "display" => string(2) "11" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) ) protected _updated_column => NULL protected _created_column => NULL protected _serialize_columns => array(0) protected _primary_key => string(2) "id" protected _primary_key_value => string(1) "7" protected _table_names_plural => bool TRUE protected _db => object Database_MySQLi(6)) protected _valid => bool TRUE protected _loaded => bool TRUE protected _saved => bool FALSE protected _sorting => NULL protected _foreign_key_suffix => string(3) "_id" protected _object_name => string(4) "task" protected _object_plural => string(5) "tasks" protected _table_name => string(5) "tasks" protected _table_columns => array(16) ( "id" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(2) "id" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 1 "display" => string(2) "11" "comment" => string(0) "" "extra" => string(14) "auto_increment" "key" => string(3) "PRI" "privileges" => string(31) "select,insert,update,references" ) "category_id" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(11) "category_id" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 2 "display" => string(2) "11" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "text" => array(12) ( "type" => string(6) "string" "character_maximum_length" => string(5) "65535" "column_name" => string(4) "text" "column_default" => NULL "data_type" => string(4) "text" "is_nullable" => bool FALSE "ordinal_position" => integer 3 "collation_name" => string(18) "utf8mb3_unicode_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "zn_id" => array(13) ( "type" => string(3) "int" "min" => string(20) "-9223372036854775808" "max" => string(19) "9223372036854775807" "column_name" => string(5) "zn_id" "column_default" => string(1) "0" "data_type" => string(6) "bigint" "is_nullable" => bool FALSE "ordinal_position" => integer 4 "display" => string(2) "20" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "date_time" => array(10) ( "type" => string(6) "string" "column_name" => string(9) "date_time" "column_default" => string(19) "current_timestamp()" "data_type" => string(8) "datetime" "is_nullable" => bool FALSE "ordinal_position" => integer 5 "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "views" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(5) "views" "column_default" => string(1) "0" "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 6 "display" => string(2) "11" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "human_id" => array(13) ( "type" => string(3) "int" "min" => string(20) "-9223372036854775808" "max" => string(19) "9223372036854775807" "column_name" => string(8) "human_id" "column_default" => NULL "data_type" => string(6) "bigint" "is_nullable" => bool TRUE "ordinal_position" => integer 7 "display" => string(2) "20" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "ya_spell" => array(12) ( "type" => string(6) "string" "column_name" => string(8) "ya_spell" "column_default" => string(1) "0" "data_type" => string(4) "enum" "is_nullable" => bool FALSE "ordinal_position" => integer 8 "collation_name" => string(18) "utf8mb3_unicode_ci" "options" => array(2) ( 0 => string(1) "0" 1 => string(1) "1" ) "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "category_key" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(12) "category_key" "column_default" => string(1) "0" "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 9 "display" => string(2) "11" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "has_gpt" => array(12) ( "type" => string(6) "string" "column_name" => string(7) "has_gpt" "column_default" => NULL "data_type" => string(4) "enum" "is_nullable" => bool TRUE "ordinal_position" => integer 10 "collation_name" => string(18) "utf8mb3_unicode_ci" "options" => array(4) ( 0 => string(1) "0" 1 => string(1) "1" 2 => string(12) "has_attaches" 3 => string(4) "skip" ) "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "source" => array(12) ( "type" => string(6) "string" "column_name" => string(6) "source" "column_default" => NULL "data_type" => string(4) "enum" "is_nullable" => bool TRUE "ordinal_position" => integer 11 "collation_name" => string(18) "utf8mb3_unicode_ci" "options" => array(1) ( 0 => string(12) "vashurok.com" ) "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "source_id" => array(13) ( "type" => string(3) "int" "min" => string(20) "-9223372036854775808" "max" => string(19) "9223372036854775807" "column_name" => string(9) "source_id" "column_default" => NULL "data_type" => string(6) "bigint" "is_nullable" => bool TRUE "ordinal_position" => integer 12 "display" => string(2) "20" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "text_for_search" => array(12) ( "type" => string(6) "string" "character_maximum_length" => string(5) "65535" "column_name" => string(15) "text_for_search" "column_default" => NULL "data_type" => string(4) "text" "is_nullable" => bool TRUE "ordinal_position" => integer 13 "collation_name" => string(18) "utf8mb3_unicode_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "related" => array(12) ( "type" => string(6) "string" "column_name" => string(7) "related" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 14 "character_maximum_length" => string(4) "1023" "collation_name" => string(18) "utf8mb3_unicode_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "good" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(4) "good" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool TRUE "ordinal_position" => integer 15 "display" => string(2) "11" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "bad" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(3) "bad" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool TRUE "ordinal_position" => integer 16 "display" => string(2) "11" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) ) protected _updated_column => NULL protected _created_column => NULL protected _serialize_columns => array(0) protected _primary_key => string(2) "id" protected _primary_key_value => string(8) "16768629" protected _table_names_plural => bool TRUE protected _db => object Database_MySQLi(6){ protected _connection_id => string(40) "9fdecc117b583662f3b3d15c4c4ac71fc778e18d" protected _identifier => string(1) "`" public last_query => string(185) "SELECT `category`.`id` AS `id`, `category`.`name` AS `name`, `category`.`url` AS `url`, `category`.`count` AS `count` FROM `cate …" protected _instance => string(7) "default" protected _connection => object mysqli(19)protected _db_group => NULL protected _db_applied => array(0) protected _db_pending => array(0) protected _db_reset => bool TRUE protected _db_builder => NULL protected _with_applied => array(0) protected _cast_data => array(0) protected _errors_filename => string(8) "category" }{ public affected_rows => NULL public client_info => NULL public client_version => NULL public connect_errno => NULL public connect_error => NULL public errno => NULL public error => NULL public error_list => NULL public field_count => NULL public host_info => NULL public info => NULL public insert_id => NULL public server_info => NULL public server_version => NULL public stat => NULL public sqlstate => NULL public protocol_version => NULL public thread_id => NULL public warning_count => NULL }protected _config => array(6) ( "type" => string(6) "MySQLi" "connection" => array(3) ( "hostname" => string(9) "localhost" "database" => string(9) "uznavalka" "persistent" => bool FALSE ) "table_prefix" => string(0) "" "charset" => string(7) "utf8mb4" "caching" => bool FALSE "profiling" => bool FALSE ) }{ protected _connection_id => string(40) "9fdecc117b583662f3b3d15c4c4ac71fc778e18d" protected _identifier => string(1) "`" public last_query => string(185) "SELECT `category`.`id` AS `id`, `category`.`name` AS `name`, `category`.`url` AS `url`, `category`.`count` AS `count` FROM `cate …" protected _instance => string(7) "default" protected _connection => object mysqli(19)protected _db_group => NULL protected _db_applied => array(0) protected _db_pending => array(0) protected _db_reset => bool TRUE protected _db_builder => NULL protected _with_applied => array(0) protected _cast_data => array(0) protected _errors_filename => string(4) "task" }{ public affected_rows => NULL public client_info => NULL public client_version => NULL public connect_errno => NULL public connect_error => NULL public errno => NULL public error => NULL public error_list => NULL public field_count => NULL public host_info => NULL public info => NULL public insert_id => NULL public server_info => NULL public server_version => NULL public stat => NULL public sqlstate => NULL public protocol_version => NULL public thread_id => NULL public warning_count => NULL }protected _config => array(6) ( "type" => string(6) "MySQLi" "connection" => array(3) ( "hostname" => string(9) "localhost" "database" => string(9) "uznavalka" "persistent" => bool FALSE ) "table_prefix" => string(0) "" "charset" => string(7) "utf8mb4" "caching" => bool FALSE "profiling" => bool FALSE ) }{ protected _belongs_to => array(2) ( "category" => array(2) ( "model" => string(8) "Category" "foreign_key" => string(11) "category_id" ) "human" => array(2) ( "model" => string(5) "Human" "foreign_key" => string(8) "human_id" ) ) protected _has_many => array(4) ( "answers" => array(4) ( "model" => string(6) "Answer" "foreign_key" => string(7) "task_id" "through" => NULL "far_key" => string(9) "answer_id" ) "tattaches" => array(4) ( "model" => string(7) "Tattach" "foreign_key" => string(7) "task_id" "through" => NULL "far_key" => string(10) "tattach_id" ) "tops" => array(4) ( "model" => string(3) "Top" "foreign_key" => string(7) "task_id" "through" => NULL "far_key" => string(6) "top_id" ) "ipsviews" => array(4) ( "model" => string(7) "Ipsview" "foreign_key" => string(7) "task_id" "through" => NULL "far_key" => string(10) "ipsview_id" ) ) protected _reload_on_wakeup => bool FALSE protected _has_one => array(0) protected _load_with => array(0) protected _validation => NULL protected _object => array(16) ( "id" => string(8) "11100414" "category_id" => string(1) "7" "text" => string(238) "<span class="sg-text sg-text--large sg-text--bold sg-text--break-words brn-qpage-next-question-box-content__primary"> Написать п …" "zn_id" => string(8) "40448283" "date_time" => string(19) "2023-05-16 13:21:41" "views" => string(2) "90" "human_id" => string(8) "65153551" "ya_spell" => string(1) "0" "category_key" => string(6) "507145" "has_gpt" => string(1) "1" "source" => NULL "source_id" => NULL "text_for_search" => string(112) "Написать полное и сокращённое ионное уравнение KOH + HCL = KCL + H2O" "related" => NULL "good" => NULL "bad" => NULL ) protected _changed => array(0) protected _original_values => array(16) ( "id" => string(8) "11100414" "category_id" => string(1) "7" "text" => string(238) "<span class="sg-text sg-text--large sg-text--bold sg-text--break-words brn-qpage-next-question-box-content__primary"> Написать п …" "zn_id" => string(8) "40448283" "date_time" => string(19) "2023-05-16 13:21:41" "views" => string(2) "90" "human_id" => string(8) "65153551" "ya_spell" => string(1) "0" "category_key" => string(6) "507145" "has_gpt" => string(1) "1" "source" => NULL "source_id" => NULL "text_for_search" => string(112) "Написать полное и сокращённое ионное уравнение KOH + HCL = KCL + H2O" "related" => NULL "good" => NULL "bad" => NULL ) protected _related => array(2) ( "human" => object Model_Human(34)7 => object Model_Task(34){ protected _db_group => string(5) "looka" protected _has_many => array(4) ( "universities" => array(5) ( "model" => string(10) "university" "foreign_key" => string(8) "human_id" "through" => string(19) "humans_universities" "far_key" => string(13) "university_id" "_table_columns" => array(5) ( "faculty_id" => NULL "chair_id" => NULL "graduation" => NULL "education_form" => NULL "education_status" => NULL ) ) "humans_universities" => array(4) ( "model" => string(17) "Humans_University" "foreign_key" => string(8) "human_id" "through" => NULL "far_key" => string(20) "humans_university_id" ) "schools" => array(5) ( "model" => string(6) "school" "foreign_key" => string(8) "human_id" "through" => string(14) "humans_schools" "far_key" => string(9) "school_id" "_table_columns" => array(6) ( "year_from" => NULL "year_to" => NULL "year_graduated" => NULL "class" => NULL "speciality" => NULL "type" => NULL ) ) "humans_schools" => array(4) ( "model" => string(13) "Humans_School" "foreign_key" => string(8) "human_id" "through" => NULL "far_key" => string(16) "humans_school_id" ) ) protected _belongs_to => array(4) ( "lastname" => array(2) ( "model" => string(8) "Lastname" "foreign_key" => string(11) "lastname_id" ) "firstname" => array(2) ( "model" => string(9) "Firstname" "foreign_key" => string(12) "firstname_id" ) "country" => array(2) ( "model" => string(7) "Country" "foreign_key" => string(10) "country_id" ) "city" => array(2) ( "model" => string(4) "City" "foreign_key" => string(7) "city_id" ) ) protected _reload_on_wakeup => bool FALSE protected _has_one => array(0) protected _load_with => array(0) protected _validation => NULL protected _object => array(21) ( "id" => string(8) "65153551" "lastname_id" => string(5) "14830" "firstname_id" => string(3) "149" "nickname" => string(0) "" "vk_id" => string(9) "221232596" "bdate" => string(10) "2004-02-28" "info" => NULL "photo" => string(63) "https://pp.userapi.com/c840336/v840336825/413f1/xXzVytFWIC8.jpg" "city_id" => string(5) "21855" "country_id" => string(1) "1" "home_town" => string(18) "Мичуринск" "home_phone" => string(0) "" "skype" => NULL "facebook" => NULL "twitter" => NULL "livejournal" => NULL "instagram" => NULL "occupation_type" => string(6) "school" "occupation_name" => string(48) "Борщевская основная школа" "rate" => string(2) "15" "count_firstnames_lastnames" => NULL ) protected _changed => array(0) protected _original_values => array(21) ( "id" => string(8) "65153551" "lastname_id" => string(5) "14830" "firstname_id" => string(3) "149" "nickname" => string(0) "" "vk_id" => string(9) "221232596" "bdate" => string(10) "2004-02-28" "info" => NULL "photo" => string(63) "https://pp.userapi.com/c840336/v840336825/413f1/xXzVytFWIC8.jpg" "city_id" => string(5) "21855" "country_id" => string(1) "1" "home_town" => string(18) "Мичуринск" "home_phone" => string(0) "" "skype" => NULL "facebook" => NULL "twitter" => NULL "livejournal" => NULL "instagram" => NULL "occupation_type" => string(6) "school" "occupation_name" => string(48) "Борщевская основная школа" "rate" => string(2) "15" "count_firstnames_lastnames" => NULL ) protected _related => array(2) ( "lastname" => object Model_Lastname(34)"category" => object Model_Category(35){ protected _db_group => string(5) "looka" protected _reload_on_wakeup => bool FALSE protected _has_one => array(0) protected _belongs_to => array(0) protected _has_many => array(0) protected _load_with => array(0) protected _validation => NULL protected _object => array(2) ( "id" => string(5) "14830" "title" => string(14) "Струков" ) protected _changed => array(0) protected _original_values => array(2) ( "id" => string(5) "14830" "title" => string(14) "Струков" ) protected _related => array(0) protected _valid => bool TRUE protected _loaded => bool TRUE protected _saved => bool FALSE protected _sorting => NULL protected _foreign_key_suffix => string(3) "_id" protected _object_name => string(8) "lastname" protected _object_plural => string(9) "lastnames" protected _table_name => string(9) "lastnames" protected _table_columns => array(2) ( "id" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(2) "id" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 1 "display" => string(2) "11" "comment" => string(0) "" "extra" => string(14) "auto_increment" "key" => string(3) "PRI" "privileges" => string(31) "select,insert,update,references" ) "title" => array(12) ( "type" => string(6) "string" "column_name" => string(5) "title" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool FALSE "ordinal_position" => integer 2 "character_maximum_length" => string(3) "255" "collation_name" => string(18) "utf8mb4_unicode_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) ) protected _updated_column => NULL protected _created_column => NULL protected _serialize_columns => array(0) protected _primary_key => string(2) "id" protected _primary_key_value => string(5) "14830" protected _table_names_plural => bool TRUE protected _db => object Database_MySQLi(6)"firstname" => object Model_Firstname(34){ protected _connection_id => string(40) "d012da34ee02fd2c23a3776760afb1e9d4e5c681" protected _identifier => string(1) "`" public last_query => string(166) "SELECT `finder_lastname`.`id` AS `id`, `finder_lastname`.`title` AS `title` FROM `finder_lastnames` AS `finder_lastname` WHERE ` …" protected _instance => string(5) "looka" protected _connection => object mysqli(19)protected _db_applied => array(0) protected _db_pending => array(0) protected _db_reset => bool TRUE protected _db_builder => NULL protected _with_applied => array(0) protected _cast_data => array(0) protected _errors_filename => string(8) "lastname" }{ public affected_rows => NULL public client_info => NULL public client_version => NULL public connect_errno => NULL public connect_error => NULL public errno => NULL public error => NULL public error_list => NULL public field_count => NULL public host_info => NULL public info => NULL public insert_id => NULL public server_info => NULL public server_version => NULL public stat => NULL public sqlstate => NULL public protocol_version => NULL public thread_id => NULL public warning_count => NULL }protected _config => array(5) ( "type" => string(6) "MySQLi" "connection" => array(3) ( "hostname" => string(9) "localhost" "database" => string(5) "looka" "persistent" => bool FALSE ) "table_prefix" => string(7) "finder_" "charset" => string(7) "utf8mb4" "caching" => bool FALSE ) }{ protected _db_group => string(5) "looka" protected _has_many => array(1) ( "humans" => array(4) ( "model" => string(5) "Human" "foreign_key" => string(12) "firstname_id" "through" => NULL "far_key" => string(8) "human_id" ) ) protected _reload_on_wakeup => bool FALSE protected _has_one => array(0) protected _belongs_to => array(0) protected _load_with => array(0) protected _validation => NULL protected _object => array(2) ( "id" => string(3) "149" "title" => string(8) "Илья" ) protected _changed => array(0) protected _original_values => array(2) ( "id" => string(3) "149" "title" => string(8) "Илья" ) protected _related => array(0) protected _valid => bool TRUE protected _loaded => bool TRUE protected _saved => bool FALSE protected _sorting => NULL protected _foreign_key_suffix => string(3) "_id" protected _object_name => string(9) "firstname" protected _object_plural => string(10) "firstnames" protected _table_name => string(10) "firstnames" protected _table_columns => array(2) ( "id" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(2) "id" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 1 "display" => string(2) "11" "comment" => string(0) "" "extra" => string(14) "auto_increment" "key" => string(3) "PRI" "privileges" => string(31) "select,insert,update,references" ) "title" => array(12) ( "type" => string(6) "string" "column_name" => string(5) "title" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 2 "character_maximum_length" => string(3) "255" "collation_name" => string(18) "utf8mb4_unicode_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) ) protected _updated_column => NULL protected _created_column => NULL protected _serialize_columns => array(0) protected _primary_key => string(2) "id" protected _primary_key_value => string(3) "149" protected _table_names_plural => bool TRUE protected _db => object Database_MySQLi(6)) protected _valid => bool TRUE protected _loaded => bool TRUE protected _saved => bool FALSE protected _sorting => NULL protected _foreign_key_suffix => string(3) "_id" protected _object_name => string(5) "human" protected _object_plural => string(6) "humans" protected _table_name => string(6) "humans" protected _table_columns => array(21) ( "id" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(2) "id" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 1 "display" => string(2) "11" "comment" => string(0) "" "extra" => string(14) "auto_increment" "key" => string(3) "PRI" "privileges" => string(31) "select,insert,update,references" ) "lastname_id" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(11) "lastname_id" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 2 "display" => string(2) "11" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "firstname_id" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(12) "firstname_id" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 3 "display" => string(2) "11" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "nickname" => array(12) ( "type" => string(6) "string" "column_name" => string(8) "nickname" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 4 "character_maximum_length" => string(3) "255" "collation_name" => string(18) "utf8mb4_unicode_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "vk_id" => array(13) ( "type" => string(3) "int" "min" => string(20) "-9223372036854775808" "max" => string(19) "9223372036854775807" "column_name" => string(5) "vk_id" "column_default" => NULL "data_type" => string(6) "bigint" "is_nullable" => bool TRUE "ordinal_position" => integer 5 "display" => string(2) "20" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "bdate" => array(10) ( "type" => string(6) "string" "column_name" => string(5) "bdate" "column_default" => NULL "data_type" => string(4) "date" "is_nullable" => bool TRUE "ordinal_position" => integer 6 "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "info" => array(12) ( "type" => string(6) "string" "column_name" => string(4) "info" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 7 "character_maximum_length" => string(4) "1023" "collation_name" => string(18) "utf8mb4_unicode_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "photo" => array(12) ( "type" => string(6) "string" "column_name" => string(5) "photo" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 8 "character_maximum_length" => string(3) "255" "collation_name" => string(18) "utf8mb4_unicode_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "city_id" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(7) "city_id" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool TRUE "ordinal_position" => integer 9 "display" => string(2) "11" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "country_id" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(10) "country_id" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool TRUE "ordinal_position" => integer 10 "display" => string(2) "11" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "home_town" => array(12) ( "type" => string(6) "string" "column_name" => string(9) "home_town" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 11 "character_maximum_length" => string(3) "255" "collation_name" => string(18) "utf8mb4_unicode_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "home_phone" => array(12) ( "type" => string(6) "string" "column_name" => string(10) "home_phone" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 12 "character_maximum_length" => string(2) "63" "collation_name" => string(18) "utf8mb4_unicode_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "skype" => array(12) ( "type" => string(6) "string" "column_name" => string(5) "skype" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 13 "character_maximum_length" => string(3) "127" "collation_name" => string(18) "utf8mb4_unicode_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "facebook" => array(12) ( "type" => string(6) "string" "column_name" => string(8) "facebook" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 14 "character_maximum_length" => string(3) "127" "collation_name" => string(18) "utf8mb4_unicode_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "twitter" => array(12) ( "type" => string(6) "string" "column_name" => string(7) "twitter" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 15 "character_maximum_length" => string(3) "127" "collation_name" => string(18) "utf8mb4_unicode_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "livejournal" => array(12) ( "type" => string(6) "string" "column_name" => string(11) "livejournal" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 16 "character_maximum_length" => string(3) "127" "collation_name" => string(18) "utf8mb4_unicode_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "instagram" => array(12) ( "type" => string(6) "string" "column_name" => string(9) "instagram" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 17 "character_maximum_length" => string(3) "127" "collation_name" => string(18) "utf8mb4_unicode_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "occupation_type" => array(12) ( "type" => string(6) "string" "column_name" => string(15) "occupation_type" "column_default" => NULL "data_type" => string(4) "enum" "is_nullable" => bool TRUE "ordinal_position" => integer 18 "collation_name" => string(18) "utf8mb4_unicode_ci" "options" => array(3) ( 0 => string(4) "work" 1 => string(6) "school" 2 => string(10) "university" ) "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "occupation_name" => array(12) ( "type" => string(6) "string" "column_name" => string(15) "occupation_name" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 19 "character_maximum_length" => string(3) "255" "collation_name" => string(18) "utf8mb4_unicode_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "rate" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(4) "rate" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 20 "display" => string(2) "11" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "count_firstnames_lastnames" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(26) "count_firstnames_lastnames" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool TRUE "ordinal_position" => integer 21 "display" => string(2) "11" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) ) protected _updated_column => NULL protected _created_column => NULL protected _serialize_columns => array(0) protected _primary_key => string(2) "id" protected _primary_key_value => string(8) "65153551" protected _table_names_plural => bool TRUE protected _db => object Database_MySQLi(6){ protected _connection_id => string(40) "d012da34ee02fd2c23a3776760afb1e9d4e5c681" protected _identifier => string(1) "`" public last_query => string(166) "SELECT `finder_lastname`.`id` AS `id`, `finder_lastname`.`title` AS `title` FROM `finder_lastnames` AS `finder_lastname` WHERE ` …" protected _instance => string(5) "looka" protected _connection => object mysqli(19)protected _db_applied => array(0) protected _db_pending => array(0) protected _db_reset => bool TRUE protected _db_builder => NULL protected _with_applied => array(0) protected _cast_data => array(0) protected _errors_filename => string(9) "firstname" }{ public affected_rows => NULL public client_info => NULL public client_version => NULL public connect_errno => NULL public connect_error => NULL public errno => NULL public error => NULL public error_list => NULL public field_count => NULL public host_info => NULL public info => NULL public insert_id => NULL public server_info => NULL public server_version => NULL public stat => NULL public sqlstate => NULL public protocol_version => NULL public thread_id => NULL public warning_count => NULL }protected _config => array(5) ( "type" => string(6) "MySQLi" "connection" => array(3) ( "hostname" => string(9) "localhost" "database" => string(5) "looka" "persistent" => bool FALSE ) "table_prefix" => string(7) "finder_" "charset" => string(7) "utf8mb4" "caching" => bool FALSE ) }{ protected _connection_id => string(40) "d012da34ee02fd2c23a3776760afb1e9d4e5c681" protected _identifier => string(1) "`" public last_query => string(166) "SELECT `finder_lastname`.`id` AS `id`, `finder_lastname`.`title` AS `title` FROM `finder_lastnames` AS `finder_lastname` WHERE ` …" protected _instance => string(5) "looka" protected _connection => object mysqli(19)protected _db_applied => array(0) protected _db_pending => array(0) protected _db_reset => bool TRUE protected _db_builder => NULL protected _with_applied => array(0) protected _cast_data => array(0) protected _errors_filename => string(5) "human" }{ public affected_rows => NULL public client_info => NULL public client_version => NULL public connect_errno => NULL public connect_error => NULL public errno => NULL public error => NULL public error_list => NULL public field_count => NULL public host_info => NULL public info => NULL public insert_id => NULL public server_info => NULL public server_version => NULL public stat => NULL public sqlstate => NULL public protocol_version => NULL public thread_id => NULL public warning_count => NULL }protected _config => array(5) ( "type" => string(6) "MySQLi" "connection" => array(3) ( "hostname" => string(9) "localhost" "database" => string(5) "looka" "persistent" => bool FALSE ) "table_prefix" => string(7) "finder_" "charset" => string(7) "utf8mb4" "caching" => bool FALSE ) }{ protected _has_many => array(2) ( "tasks" => array(4) ( "model" => string(4) "Task" "foreign_key" => string(11) "category_id" "through" => NULL "far_key" => string(7) "task_id" ) "tops" => array(4) ( "model" => string(3) "Top" "foreign_key" => string(11) "category_id" "through" => NULL "far_key" => string(6) "top_id" ) ) protected prefix_url => string(9) "/subject/" protected _reload_on_wakeup => bool FALSE protected _has_one => array(0) protected _belongs_to => array(0) protected _load_with => array(0) protected _validation => NULL protected _object => array(4) ( "id" => string(1) "7" "name" => string(10) "Химия" "url" => string(9) "chemistry" "count" => string(6) "799022" ) protected _changed => array(0) protected _original_values => array(4) ( "id" => string(1) "7" "name" => string(10) "Химия" "url" => string(9) "chemistry" "count" => string(6) "799022" ) protected _related => array(0) protected _valid => bool TRUE protected _loaded => bool TRUE protected _saved => bool FALSE protected _sorting => NULL protected _foreign_key_suffix => string(3) "_id" protected _object_name => string(8) "category" protected _object_plural => string(10) "categories" protected _table_name => string(10) "categories" protected _table_columns => array(4) ( "id" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(2) "id" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 1 "display" => string(2) "11" "comment" => string(0) "" "extra" => string(14) "auto_increment" "key" => string(3) "PRI" "privileges" => string(31) "select,insert,update,references" ) "name" => array(12) ( "type" => string(6) "string" "column_name" => string(4) "name" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool FALSE "ordinal_position" => integer 2 "character_maximum_length" => string(3) "255" "collation_name" => string(18) "utf8mb3_unicode_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "url" => array(12) ( "type" => string(6) "string" "column_name" => string(3) "url" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool FALSE "ordinal_position" => integer 3 "character_maximum_length" => string(3) "255" "collation_name" => string(18) "utf8mb3_unicode_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "count" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(5) "count" "column_default" => string(1) "0" "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 4 "display" => string(2) "11" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) ) protected _updated_column => NULL protected _created_column => NULL protected _serialize_columns => array(0) protected _primary_key => string(2) "id" protected _primary_key_value => string(1) "7" protected _table_names_plural => bool TRUE protected _db => object Database_MySQLi(6)) protected _valid => bool TRUE protected _loaded => bool TRUE protected _saved => bool FALSE protected _sorting => NULL protected _foreign_key_suffix => string(3) "_id" protected _object_name => string(4) "task" protected _object_plural => string(5) "tasks" protected _table_name => string(5) "tasks" protected _table_columns => array(16) ( "id" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(2) "id" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 1 "display" => string(2) "11" "comment" => string(0) "" "extra" => string(14) "auto_increment" "key" => string(3) "PRI" "privileges" => string(31) "select,insert,update,references" ) "category_id" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(11) "category_id" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 2 "display" => string(2) "11" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "text" => array(12) ( "type" => string(6) "string" "character_maximum_length" => string(5) "65535" "column_name" => string(4) "text" "column_default" => NULL "data_type" => string(4) "text" "is_nullable" => bool FALSE "ordinal_position" => integer 3 "collation_name" => string(18) "utf8mb3_unicode_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "zn_id" => array(13) ( "type" => string(3) "int" "min" => string(20) "-9223372036854775808" "max" => string(19) "9223372036854775807" "column_name" => string(5) "zn_id" "column_default" => string(1) "0" "data_type" => string(6) "bigint" "is_nullable" => bool FALSE "ordinal_position" => integer 4 "display" => string(2) "20" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "date_time" => array(10) ( "type" => string(6) "string" "column_name" => string(9) "date_time" "column_default" => string(19) "current_timestamp()" "data_type" => string(8) "datetime" "is_nullable" => bool FALSE "ordinal_position" => integer 5 "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "views" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(5) "views" "column_default" => string(1) "0" "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 6 "display" => string(2) "11" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "human_id" => array(13) ( "type" => string(3) "int" "min" => string(20) "-9223372036854775808" "max" => string(19) "9223372036854775807" "column_name" => string(8) "human_id" "column_default" => NULL "data_type" => string(6) "bigint" "is_nullable" => bool TRUE "ordinal_position" => integer 7 "display" => string(2) "20" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "ya_spell" => array(12) ( "type" => string(6) "string" "column_name" => string(8) "ya_spell" "column_default" => string(1) "0" "data_type" => string(4) "enum" "is_nullable" => bool FALSE "ordinal_position" => integer 8 "collation_name" => string(18) "utf8mb3_unicode_ci" "options" => array(2) ( 0 => string(1) "0" 1 => string(1) "1" ) "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "category_key" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(12) "category_key" "column_default" => string(1) "0" "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 9 "display" => string(2) "11" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "has_gpt" => array(12) ( "type" => string(6) "string" "column_name" => string(7) "has_gpt" "column_default" => NULL "data_type" => string(4) "enum" "is_nullable" => bool TRUE "ordinal_position" => integer 10 "collation_name" => string(18) "utf8mb3_unicode_ci" "options" => array(4) ( 0 => string(1) "0" 1 => string(1) "1" 2 => string(12) "has_attaches" 3 => string(4) "skip" ) "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "source" => array(12) ( "type" => string(6) "string" "column_name" => string(6) "source" "column_default" => NULL "data_type" => string(4) "enum" "is_nullable" => bool TRUE "ordinal_position" => integer 11 "collation_name" => string(18) "utf8mb3_unicode_ci" "options" => array(1) ( 0 => string(12) "vashurok.com" ) "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "source_id" => array(13) ( "type" => string(3) "int" "min" => string(20) "-9223372036854775808" "max" => string(19) "9223372036854775807" "column_name" => string(9) "source_id" "column_default" => NULL "data_type" => string(6) "bigint" "is_nullable" => bool TRUE "ordinal_position" => integer 12 "display" => string(2) "20" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "text_for_search" => array(12) ( "type" => string(6) "string" "character_maximum_length" => string(5) "65535" "column_name" => string(15) "text_for_search" "column_default" => NULL "data_type" => string(4) "text" "is_nullable" => bool TRUE "ordinal_position" => integer 13 "collation_name" => string(18) "utf8mb3_unicode_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "related" => array(12) ( "type" => string(6) "string" "column_name" => string(7) "related" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 14 "character_maximum_length" => string(4) "1023" "collation_name" => string(18) "utf8mb3_unicode_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "good" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(4) "good" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool TRUE "ordinal_position" => integer 15 "display" => string(2) "11" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "bad" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(3) "bad" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool TRUE "ordinal_position" => integer 16 "display" => string(2) "11" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) ) protected _updated_column => NULL protected _created_column => NULL protected _serialize_columns => array(0) protected _primary_key => string(2) "id" protected _primary_key_value => string(8) "11100414" protected _table_names_plural => bool TRUE protected _db => object Database_MySQLi(6){ protected _connection_id => string(40) "9fdecc117b583662f3b3d15c4c4ac71fc778e18d" protected _identifier => string(1) "`" public last_query => string(185) "SELECT `category`.`id` AS `id`, `category`.`name` AS `name`, `category`.`url` AS `url`, `category`.`count` AS `count` FROM `cate …" protected _instance => string(7) "default" protected _connection => object mysqli(19)protected _db_group => NULL protected _db_applied => array(0) protected _db_pending => array(0) protected _db_reset => bool TRUE protected _db_builder => NULL protected _with_applied => array(0) protected _cast_data => array(0) protected _errors_filename => string(8) "category" }{ public affected_rows => NULL public client_info => NULL public client_version => NULL public connect_errno => NULL public connect_error => NULL public errno => NULL public error => NULL public error_list => NULL public field_count => NULL public host_info => NULL public info => NULL public insert_id => NULL public server_info => NULL public server_version => NULL public stat => NULL public sqlstate => NULL public protocol_version => NULL public thread_id => NULL public warning_count => NULL }protected _config => array(6) ( "type" => string(6) "MySQLi" "connection" => array(3) ( "hostname" => string(9) "localhost" "database" => string(9) "uznavalka" "persistent" => bool FALSE ) "table_prefix" => string(0) "" "charset" => string(7) "utf8mb4" "caching" => bool FALSE "profiling" => bool FALSE ) }{ protected _connection_id => string(40) "9fdecc117b583662f3b3d15c4c4ac71fc778e18d" protected _identifier => string(1) "`" public last_query => string(185) "SELECT `category`.`id` AS `id`, `category`.`name` AS `name`, `category`.`url` AS `url`, `category`.`count` AS `count` FROM `cate …" protected _instance => string(7) "default" protected _connection => object mysqli(19)protected _db_group => NULL protected _db_applied => array(0) protected _db_pending => array(0) protected _db_reset => bool TRUE protected _db_builder => NULL protected _with_applied => array(0) protected _cast_data => array(0) protected _errors_filename => string(4) "task" }{ public affected_rows => NULL public client_info => NULL public client_version => NULL public connect_errno => NULL public connect_error => NULL public errno => NULL public error => NULL public error_list => NULL public field_count => NULL public host_info => NULL public info => NULL public insert_id => NULL public server_info => NULL public server_version => NULL public stat => NULL public sqlstate => NULL public protocol_version => NULL public thread_id => NULL public warning_count => NULL }protected _config => array(6) ( "type" => string(6) "MySQLi" "connection" => array(3) ( "hostname" => string(9) "localhost" "database" => string(9) "uznavalka" "persistent" => bool FALSE ) "table_prefix" => string(0) "" "charset" => string(7) "utf8mb4" "caching" => bool FALSE "profiling" => bool FALSE ) }{ protected _belongs_to => array(2) ( "category" => array(2) ( "model" => string(8) "Category" "foreign_key" => string(11) "category_id" ) "human" => array(2) ( "model" => string(5) "Human" "foreign_key" => string(8) "human_id" ) ) protected _has_many => array(4) ( "answers" => array(4) ( "model" => string(6) "Answer" "foreign_key" => string(7) "task_id" "through" => NULL "far_key" => string(9) "answer_id" ) "tattaches" => array(4) ( "model" => string(7) "Tattach" "foreign_key" => string(7) "task_id" "through" => NULL "far_key" => string(10) "tattach_id" ) "tops" => array(4) ( "model" => string(3) "Top" "foreign_key" => string(7) "task_id" "through" => NULL "far_key" => string(6) "top_id" ) "ipsviews" => array(4) ( "model" => string(7) "Ipsview" "foreign_key" => string(7) "task_id" "through" => NULL "far_key" => string(10) "ipsview_id" ) ) protected _reload_on_wakeup => bool FALSE protected _has_one => array(0) protected _load_with => array(0) protected _validation => NULL protected _object => array(16) ( "id" => string(8) "11761506" "category_id" => string(1) "7" "text" => string(435) "<span class="sg-text sg-text--break-words brn-qpage-next-question-box-content__secondary"> 1. Завдання Які маси солі і води потр …" "zn_id" => string(8) "52323833" "date_time" => string(19) "2023-06-10 14:47:28" "views" => string(1) "5" "human_id" => string(8) "20776821" "ya_spell" => string(1) "0" "category_key" => string(6) "550584" "has_gpt" => string(1) "1" "source" => NULL "source_id" => NULL "text_for_search" => string(336) "1. Завдання Які маси солі і води потрібно взяти, щоб одержати 2 кг розчину з масовою часткою 10 %? 2. Які маси солі та води потр …" "related" => NULL "good" => NULL "bad" => NULL ) protected _changed => array(0) protected _original_values => array(16) ( "id" => string(8) "11761506" "category_id" => string(1) "7" "text" => string(435) "<span class="sg-text sg-text--break-words brn-qpage-next-question-box-content__secondary"> 1. Завдання Які маси солі і води потр …" "zn_id" => string(8) "52323833" "date_time" => string(19) "2023-06-10 14:47:28" "views" => string(1) "5" "human_id" => string(8) "20776821" "ya_spell" => string(1) "0" "category_key" => string(6) "550584" "has_gpt" => string(1) "1" "source" => NULL "source_id" => NULL "text_for_search" => string(336) "1. Завдання Які маси солі і води потрібно взяти, щоб одержати 2 кг розчину з масовою часткою 10 %? 2. Які маси солі та води потр …" "related" => NULL "good" => NULL "bad" => NULL ) protected _related => array(2) ( "human" => object Model_Human(34)8 => object Model_Task(34){ protected _db_group => string(5) "looka" protected _has_many => array(4) ( "universities" => array(5) ( "model" => string(10) "university" "foreign_key" => string(8) "human_id" "through" => string(19) "humans_universities" "far_key" => string(13) "university_id" "_table_columns" => array(5) ( "faculty_id" => NULL "chair_id" => NULL "graduation" => NULL "education_form" => NULL "education_status" => NULL ) ) "humans_universities" => array(4) ( "model" => string(17) "Humans_University" "foreign_key" => string(8) "human_id" "through" => NULL "far_key" => string(20) "humans_university_id" ) "schools" => array(5) ( "model" => string(6) "school" "foreign_key" => string(8) "human_id" "through" => string(14) "humans_schools" "far_key" => string(9) "school_id" "_table_columns" => array(6) ( "year_from" => NULL "year_to" => NULL "year_graduated" => NULL "class" => NULL "speciality" => NULL "type" => NULL ) ) "humans_schools" => array(4) ( "model" => string(13) "Humans_School" "foreign_key" => string(8) "human_id" "through" => NULL "far_key" => string(16) "humans_school_id" ) ) protected _belongs_to => array(4) ( "lastname" => array(2) ( "model" => string(8) "Lastname" "foreign_key" => string(11) "lastname_id" ) "firstname" => array(2) ( "model" => string(9) "Firstname" "foreign_key" => string(12) "firstname_id" ) "country" => array(2) ( "model" => string(7) "Country" "foreign_key" => string(10) "country_id" ) "city" => array(2) ( "model" => string(4) "City" "foreign_key" => string(7) "city_id" ) ) protected _reload_on_wakeup => bool FALSE protected _has_one => array(0) protected _load_with => array(0) protected _validation => NULL protected _object => array(21) ( "id" => string(8) "20776821" "lastname_id" => string(6) "120086" "firstname_id" => string(3) "108" "nickname" => string(0) "" "vk_id" => string(9) "277063149" "bdate" => string(10) "2004-10-30" "info" => NULL "photo" => string(63) "https://pp.userapi.com/c639725/v639725666/49c94/wXdZnA_Aebw.jpg" "city_id" => NULL "country_id" => string(1) "1" "home_town" => NULL "home_phone" => string(0) "" "skype" => NULL "facebook" => NULL "twitter" => NULL "livejournal" => NULL "instagram" => NULL "occupation_type" => NULL "occupation_name" => NULL "rate" => string(2) "11" "count_firstnames_lastnames" => NULL ) protected _changed => array(0) protected _original_values => array(21) ( "id" => string(8) "20776821" "lastname_id" => string(6) "120086" "firstname_id" => string(3) "108" "nickname" => string(0) "" "vk_id" => string(9) "277063149" "bdate" => string(10) "2004-10-30" "info" => NULL "photo" => string(63) "https://pp.userapi.com/c639725/v639725666/49c94/wXdZnA_Aebw.jpg" "city_id" => NULL "country_id" => string(1) "1" "home_town" => NULL "home_phone" => string(0) "" "skype" => NULL "facebook" => NULL "twitter" => NULL "livejournal" => NULL "instagram" => NULL "occupation_type" => NULL "occupation_name" => NULL "rate" => string(2) "11" "count_firstnames_lastnames" => NULL ) protected _related => array(2) ( "lastname" => object Model_Lastname(34)"category" => object Model_Category(35){ protected _db_group => string(5) "looka" protected _reload_on_wakeup => bool FALSE protected _has_one => array(0) protected _belongs_to => array(0) protected _has_many => array(0) protected _load_with => array(0) protected _validation => NULL protected _object => array(2) ( "id" => string(6) "120086" "title" => string(18) "Дондокова" ) protected _changed => array(0) protected _original_values => array(2) ( "id" => string(6) "120086" "title" => string(18) "Дондокова" ) protected _related => array(0) protected _valid => bool TRUE protected _loaded => bool TRUE protected _saved => bool FALSE protected _sorting => NULL protected _foreign_key_suffix => string(3) "_id" protected _object_name => string(8) "lastname" protected _object_plural => string(9) "lastnames" protected _table_name => string(9) "lastnames" protected _table_columns => array(2) ( "id" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(2) "id" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 1 "display" => string(2) "11" "comment" => string(0) "" "extra" => string(14) "auto_increment" "key" => string(3) "PRI" "privileges" => string(31) "select,insert,update,references" ) "title" => array(12) ( "type" => string(6) "string" "column_name" => string(5) "title" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool FALSE "ordinal_position" => integer 2 "character_maximum_length" => string(3) "255" "collation_name" => string(18) "utf8mb4_unicode_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) ) protected _updated_column => NULL protected _created_column => NULL protected _serialize_columns => array(0) protected _primary_key => string(2) "id" protected _primary_key_value => string(6) "120086" protected _table_names_plural => bool TRUE protected _db => object Database_MySQLi(6)"firstname" => object Model_Firstname(34){ protected _connection_id => string(40) "d012da34ee02fd2c23a3776760afb1e9d4e5c681" protected _identifier => string(1) "`" public last_query => string(166) "SELECT `finder_lastname`.`id` AS `id`, `finder_lastname`.`title` AS `title` FROM `finder_lastnames` AS `finder_lastname` WHERE ` …" protected _instance => string(5) "looka" protected _connection => object mysqli(19)protected _db_applied => array(0) protected _db_pending => array(0) protected _db_reset => bool TRUE protected _db_builder => NULL protected _with_applied => array(0) protected _cast_data => array(0) protected _errors_filename => string(8) "lastname" }{ public affected_rows => NULL public client_info => NULL public client_version => NULL public connect_errno => NULL public connect_error => NULL public errno => NULL public error => NULL public error_list => NULL public field_count => NULL public host_info => NULL public info => NULL public insert_id => NULL public server_info => NULL public server_version => NULL public stat => NULL public sqlstate => NULL public protocol_version => NULL public thread_id => NULL public warning_count => NULL }protected _config => array(5) ( "type" => string(6) "MySQLi" "connection" => array(3) ( "hostname" => string(9) "localhost" "database" => string(5) "looka" "persistent" => bool FALSE ) "table_prefix" => string(7) "finder_" "charset" => string(7) "utf8mb4" "caching" => bool FALSE ) }{ protected _db_group => string(5) "looka" protected _has_many => array(1) ( "humans" => array(4) ( "model" => string(5) "Human" "foreign_key" => string(12) "firstname_id" "through" => NULL "far_key" => string(8) "human_id" ) ) protected _reload_on_wakeup => bool FALSE protected _has_one => array(0) protected _belongs_to => array(0) protected _load_with => array(0) protected _validation => NULL protected _object => array(2) ( "id" => string(3) "108" "title" => string(12) "Наташа" ) protected _changed => array(0) protected _original_values => array(2) ( "id" => string(3) "108" "title" => string(12) "Наташа" ) protected _related => array(0) protected _valid => bool TRUE protected _loaded => bool TRUE protected _saved => bool FALSE protected _sorting => NULL protected _foreign_key_suffix => string(3) "_id" protected _object_name => string(9) "firstname" protected _object_plural => string(10) "firstnames" protected _table_name => string(10) "firstnames" protected _table_columns => array(2) ( "id" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(2) "id" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 1 "display" => string(2) "11" "comment" => string(0) "" "extra" => string(14) "auto_increment" "key" => string(3) "PRI" "privileges" => string(31) "select,insert,update,references" ) "title" => array(12) ( "type" => string(6) "string" "column_name" => string(5) "title" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 2 "character_maximum_length" => string(3) "255" "collation_name" => string(18) "utf8mb4_unicode_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) ) protected _updated_column => NULL protected _created_column => NULL protected _serialize_columns => array(0) protected _primary_key => string(2) "id" protected _primary_key_value => string(3) "108" protected _table_names_plural => bool TRUE protected _db => object Database_MySQLi(6)) protected _valid => bool TRUE protected _loaded => bool TRUE protected _saved => bool FALSE protected _sorting => NULL protected _foreign_key_suffix => string(3) "_id" protected _object_name => string(5) "human" protected _object_plural => string(6) "humans" protected _table_name => string(6) "humans" protected _table_columns => array(21) ( "id" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(2) "id" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 1 "display" => string(2) "11" "comment" => string(0) "" "extra" => string(14) "auto_increment" "key" => string(3) "PRI" "privileges" => string(31) "select,insert,update,references" ) "lastname_id" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(11) "lastname_id" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 2 "display" => string(2) "11" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "firstname_id" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(12) "firstname_id" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 3 "display" => string(2) "11" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "nickname" => array(12) ( "type" => string(6) "string" "column_name" => string(8) "nickname" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 4 "character_maximum_length" => string(3) "255" "collation_name" => string(18) "utf8mb4_unicode_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "vk_id" => array(13) ( "type" => string(3) "int" "min" => string(20) "-9223372036854775808" "max" => string(19) "9223372036854775807" "column_name" => string(5) "vk_id" "column_default" => NULL "data_type" => string(6) "bigint" "is_nullable" => bool TRUE "ordinal_position" => integer 5 "display" => string(2) "20" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "bdate" => array(10) ( "type" => string(6) "string" "column_name" => string(5) "bdate" "column_default" => NULL "data_type" => string(4) "date" "is_nullable" => bool TRUE "ordinal_position" => integer 6 "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "info" => array(12) ( "type" => string(6) "string" "column_name" => string(4) "info" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 7 "character_maximum_length" => string(4) "1023" "collation_name" => string(18) "utf8mb4_unicode_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "photo" => array(12) ( "type" => string(6) "string" "column_name" => string(5) "photo" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 8 "character_maximum_length" => string(3) "255" "collation_name" => string(18) "utf8mb4_unicode_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "city_id" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(7) "city_id" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool TRUE "ordinal_position" => integer 9 "display" => string(2) "11" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "country_id" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(10) "country_id" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool TRUE "ordinal_position" => integer 10 "display" => string(2) "11" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "home_town" => array(12) ( "type" => string(6) "string" "column_name" => string(9) "home_town" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 11 "character_maximum_length" => string(3) "255" "collation_name" => string(18) "utf8mb4_unicode_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "home_phone" => array(12) ( "type" => string(6) "string" "column_name" => string(10) "home_phone" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 12 "character_maximum_length" => string(2) "63" "collation_name" => string(18) "utf8mb4_unicode_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "skype" => array(12) ( "type" => string(6) "string" "column_name" => string(5) "skype" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 13 "character_maximum_length" => string(3) "127" "collation_name" => string(18) "utf8mb4_unicode_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "facebook" => array(12) ( "type" => string(6) "string" "column_name" => string(8) "facebook" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 14 "character_maximum_length" => string(3) "127" "collation_name" => string(18) "utf8mb4_unicode_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "twitter" => array(12) ( "type" => string(6) "string" "column_name" => string(7) "twitter" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 15 "character_maximum_length" => string(3) "127" "collation_name" => string(18) "utf8mb4_unicode_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "livejournal" => array(12) ( "type" => string(6) "string" "column_name" => string(11) "livejournal" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 16 "character_maximum_length" => string(3) "127" "collation_name" => string(18) "utf8mb4_unicode_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "instagram" => array(12) ( "type" => string(6) "string" "column_name" => string(9) "instagram" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 17 "character_maximum_length" => string(3) "127" "collation_name" => string(18) "utf8mb4_unicode_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "occupation_type" => array(12) ( "type" => string(6) "string" "column_name" => string(15) "occupation_type" "column_default" => NULL "data_type" => string(4) "enum" "is_nullable" => bool TRUE "ordinal_position" => integer 18 "collation_name" => string(18) "utf8mb4_unicode_ci" "options" => array(3) ( 0 => string(4) "work" 1 => string(6) "school" 2 => string(10) "university" ) "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "occupation_name" => array(12) ( "type" => string(6) "string" "column_name" => string(15) "occupation_name" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 19 "character_maximum_length" => string(3) "255" "collation_name" => string(18) "utf8mb4_unicode_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "rate" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(4) "rate" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 20 "display" => string(2) "11" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "count_firstnames_lastnames" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(26) "count_firstnames_lastnames" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool TRUE "ordinal_position" => integer 21 "display" => string(2) "11" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) ) protected _updated_column => NULL protected _created_column => NULL protected _serialize_columns => array(0) protected _primary_key => string(2) "id" protected _primary_key_value => string(8) "20776821" protected _table_names_plural => bool TRUE protected _db => object Database_MySQLi(6){ protected _connection_id => string(40) "d012da34ee02fd2c23a3776760afb1e9d4e5c681" protected _identifier => string(1) "`" public last_query => string(166) "SELECT `finder_lastname`.`id` AS `id`, `finder_lastname`.`title` AS `title` FROM `finder_lastnames` AS `finder_lastname` WHERE ` …" protected _instance => string(5) "looka" protected _connection => object mysqli(19)protected _db_applied => array(0) protected _db_pending => array(0) protected _db_reset => bool TRUE protected _db_builder => NULL protected _with_applied => array(0) protected _cast_data => array(0) protected _errors_filename => string(9) "firstname" }{ public affected_rows => NULL public client_info => NULL public client_version => NULL public connect_errno => NULL public connect_error => NULL public errno => NULL public error => NULL public error_list => NULL public field_count => NULL public host_info => NULL public info => NULL public insert_id => NULL public server_info => NULL public server_version => NULL public stat => NULL public sqlstate => NULL public protocol_version => NULL public thread_id => NULL public warning_count => NULL }protected _config => array(5) ( "type" => string(6) "MySQLi" "connection" => array(3) ( "hostname" => string(9) "localhost" "database" => string(5) "looka" "persistent" => bool FALSE ) "table_prefix" => string(7) "finder_" "charset" => string(7) "utf8mb4" "caching" => bool FALSE ) }{ protected _connection_id => string(40) "d012da34ee02fd2c23a3776760afb1e9d4e5c681" protected _identifier => string(1) "`" public last_query => string(166) "SELECT `finder_lastname`.`id` AS `id`, `finder_lastname`.`title` AS `title` FROM `finder_lastnames` AS `finder_lastname` WHERE ` …" protected _instance => string(5) "looka" protected _connection => object mysqli(19)protected _db_applied => array(0) protected _db_pending => array(0) protected _db_reset => bool TRUE protected _db_builder => NULL protected _with_applied => array(0) protected _cast_data => array(0) protected _errors_filename => string(5) "human" }{ public affected_rows => NULL public client_info => NULL public client_version => NULL public connect_errno => NULL public connect_error => NULL public errno => NULL public error => NULL public error_list => NULL public field_count => NULL public host_info => NULL public info => NULL public insert_id => NULL public server_info => NULL public server_version => NULL public stat => NULL public sqlstate => NULL public protocol_version => NULL public thread_id => NULL public warning_count => NULL }protected _config => array(5) ( "type" => string(6) "MySQLi" "connection" => array(3) ( "hostname" => string(9) "localhost" "database" => string(5) "looka" "persistent" => bool FALSE ) "table_prefix" => string(7) "finder_" "charset" => string(7) "utf8mb4" "caching" => bool FALSE ) }{ protected _has_many => array(2) ( "tasks" => array(4) ( "model" => string(4) "Task" "foreign_key" => string(11) "category_id" "through" => NULL "far_key" => string(7) "task_id" ) "tops" => array(4) ( "model" => string(3) "Top" "foreign_key" => string(11) "category_id" "through" => NULL "far_key" => string(6) "top_id" ) ) protected prefix_url => string(9) "/subject/" protected _reload_on_wakeup => bool FALSE protected _has_one => array(0) protected _belongs_to => array(0) protected _load_with => array(0) protected _validation => NULL protected _object => array(4) ( "id" => string(1) "7" "name" => string(10) "Химия" "url" => string(9) "chemistry" "count" => string(6) "799022" ) protected _changed => array(0) protected _original_values => array(4) ( "id" => string(1) "7" "name" => string(10) "Химия" "url" => string(9) "chemistry" "count" => string(6) "799022" ) protected _related => array(0) protected _valid => bool TRUE protected _loaded => bool TRUE protected _saved => bool FALSE protected _sorting => NULL protected _foreign_key_suffix => string(3) "_id" protected _object_name => string(8) "category" protected _object_plural => string(10) "categories" protected _table_name => string(10) "categories" protected _table_columns => array(4) ( "id" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(2) "id" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 1 "display" => string(2) "11" "comment" => string(0) "" "extra" => string(14) "auto_increment" "key" => string(3) "PRI" "privileges" => string(31) "select,insert,update,references" ) "name" => array(12) ( "type" => string(6) "string" "column_name" => string(4) "name" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool FALSE "ordinal_position" => integer 2 "character_maximum_length" => string(3) "255" "collation_name" => string(18) "utf8mb3_unicode_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "url" => array(12) ( "type" => string(6) "string" "column_name" => string(3) "url" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool FALSE "ordinal_position" => integer 3 "character_maximum_length" => string(3) "255" "collation_name" => string(18) "utf8mb3_unicode_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "count" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(5) "count" "column_default" => string(1) "0" "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 4 "display" => string(2) "11" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) ) protected _updated_column => NULL protected _created_column => NULL protected _serialize_columns => array(0) protected _primary_key => string(2) "id" protected _primary_key_value => string(1) "7" protected _table_names_plural => bool TRUE protected _db => object Database_MySQLi(6)) protected _valid => bool TRUE protected _loaded => bool TRUE protected _saved => bool FALSE protected _sorting => NULL protected _foreign_key_suffix => string(3) "_id" protected _object_name => string(4) "task" protected _object_plural => string(5) "tasks" protected _table_name => string(5) "tasks" protected _table_columns => array(16) ( "id" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(2) "id" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 1 "display" => string(2) "11" "comment" => string(0) "" "extra" => string(14) "auto_increment" "key" => string(3) "PRI" "privileges" => string(31) "select,insert,update,references" ) "category_id" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(11) "category_id" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 2 "display" => string(2) "11" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "text" => array(12) ( "type" => string(6) "string" "character_maximum_length" => string(5) "65535" "column_name" => string(4) "text" "column_default" => NULL "data_type" => string(4) "text" "is_nullable" => bool FALSE "ordinal_position" => integer 3 "collation_name" => string(18) "utf8mb3_unicode_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "zn_id" => array(13) ( "type" => string(3) "int" "min" => string(20) "-9223372036854775808" "max" => string(19) "9223372036854775807" "column_name" => string(5) "zn_id" "column_default" => string(1) "0" "data_type" => string(6) "bigint" "is_nullable" => bool FALSE "ordinal_position" => integer 4 "display" => string(2) "20" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "date_time" => array(10) ( "type" => string(6) "string" "column_name" => string(9) "date_time" "column_default" => string(19) "current_timestamp()" "data_type" => string(8) "datetime" "is_nullable" => bool FALSE "ordinal_position" => integer 5 "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "views" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(5) "views" "column_default" => string(1) "0" "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 6 "display" => string(2) "11" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "human_id" => array(13) ( "type" => string(3) "int" "min" => string(20) "-9223372036854775808" "max" => string(19) "9223372036854775807" "column_name" => string(8) "human_id" "column_default" => NULL "data_type" => string(6) "bigint" "is_nullable" => bool TRUE "ordinal_position" => integer 7 "display" => string(2) "20" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "ya_spell" => array(12) ( "type" => string(6) "string" "column_name" => string(8) "ya_spell" "column_default" => string(1) "0" "data_type" => string(4) "enum" "is_nullable" => bool FALSE "ordinal_position" => integer 8 "collation_name" => string(18) "utf8mb3_unicode_ci" "options" => array(2) ( 0 => string(1) "0" 1 => string(1) "1" ) "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "category_key" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(12) "category_key" "column_default" => string(1) "0" "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 9 "display" => string(2) "11" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "has_gpt" => array(12) ( "type" => string(6) "string" "column_name" => string(7) "has_gpt" "column_default" => NULL "data_type" => string(4) "enum" "is_nullable" => bool TRUE "ordinal_position" => integer 10 "collation_name" => string(18) "utf8mb3_unicode_ci" "options" => array(4) ( 0 => string(1) "0" 1 => string(1) "1" 2 => string(12) "has_attaches" 3 => string(4) "skip" ) "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "source" => array(12) ( "type" => string(6) "string" "column_name" => string(6) "source" "column_default" => NULL "data_type" => string(4) "enum" "is_nullable" => bool TRUE "ordinal_position" => integer 11 "collation_name" => string(18) "utf8mb3_unicode_ci" "options" => array(1) ( 0 => string(12) "vashurok.com" ) "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "source_id" => array(13) ( "type" => string(3) "int" "min" => string(20) "-9223372036854775808" "max" => string(19) "9223372036854775807" "column_name" => string(9) "source_id" "column_default" => NULL "data_type" => string(6) "bigint" "is_nullable" => bool TRUE "ordinal_position" => integer 12 "display" => string(2) "20" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "text_for_search" => array(12) ( "type" => string(6) "string" "character_maximum_length" => string(5) "65535" "column_name" => string(15) "text_for_search" "column_default" => NULL "data_type" => string(4) "text" "is_nullable" => bool TRUE "ordinal_position" => integer 13 "collation_name" => string(18) "utf8mb3_unicode_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "related" => array(12) ( "type" => string(6) "string" "column_name" => string(7) "related" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 14 "character_maximum_length" => string(4) "1023" "collation_name" => string(18) "utf8mb3_unicode_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "good" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(4) "good" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool TRUE "ordinal_position" => integer 15 "display" => string(2) "11" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "bad" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(3) "bad" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool TRUE "ordinal_position" => integer 16 "display" => string(2) "11" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) ) protected _updated_column => NULL protected _created_column => NULL protected _serialize_columns => array(0) protected _primary_key => string(2) "id" protected _primary_key_value => string(8) "11761506" protected _table_names_plural => bool TRUE protected _db => object Database_MySQLi(6){ protected _connection_id => string(40) "9fdecc117b583662f3b3d15c4c4ac71fc778e18d" protected _identifier => string(1) "`" public last_query => string(185) "SELECT `category`.`id` AS `id`, `category`.`name` AS `name`, `category`.`url` AS `url`, `category`.`count` AS `count` FROM `cate …" protected _instance => string(7) "default" protected _connection => object mysqli(19)protected _db_group => NULL protected _db_applied => array(0) protected _db_pending => array(0) protected _db_reset => bool TRUE protected _db_builder => NULL protected _with_applied => array(0) protected _cast_data => array(0) protected _errors_filename => string(8) "category" }{ public affected_rows => NULL public client_info => NULL public client_version => NULL public connect_errno => NULL public connect_error => NULL public errno => NULL public error => NULL public error_list => NULL public field_count => NULL public host_info => NULL public info => NULL public insert_id => NULL public server_info => NULL public server_version => NULL public stat => NULL public sqlstate => NULL public protocol_version => NULL public thread_id => NULL public warning_count => NULL }protected _config => array(6) ( "type" => string(6) "MySQLi" "connection" => array(3) ( "hostname" => string(9) "localhost" "database" => string(9) "uznavalka" "persistent" => bool FALSE ) "table_prefix" => string(0) "" "charset" => string(7) "utf8mb4" "caching" => bool FALSE "profiling" => bool FALSE ) }{ protected _connection_id => string(40) "9fdecc117b583662f3b3d15c4c4ac71fc778e18d" protected _identifier => string(1) "`" public last_query => string(185) "SELECT `category`.`id` AS `id`, `category`.`name` AS `name`, `category`.`url` AS `url`, `category`.`count` AS `count` FROM `cate …" protected _instance => string(7) "default" protected _connection => object mysqli(19)protected _db_group => NULL protected _db_applied => array(0) protected _db_pending => array(0) protected _db_reset => bool TRUE protected _db_builder => NULL protected _with_applied => array(0) protected _cast_data => array(0) protected _errors_filename => string(4) "task" }{ public affected_rows => NULL public client_info => NULL public client_version => NULL public connect_errno => NULL public connect_error => NULL public errno => NULL public error => NULL public error_list => NULL public field_count => NULL public host_info => NULL public info => NULL public insert_id => NULL public server_info => NULL public server_version => NULL public stat => NULL public sqlstate => NULL public protocol_version => NULL public thread_id => NULL public warning_count => NULL }protected _config => array(6) ( "type" => string(6) "MySQLi" "connection" => array(3) ( "hostname" => string(9) "localhost" "database" => string(9) "uznavalka" "persistent" => bool FALSE ) "table_prefix" => string(0) "" "charset" => string(7) "utf8mb4" "caching" => bool FALSE "profiling" => bool FALSE ) }{ protected _belongs_to => array(2) ( "category" => array(2) ( "model" => string(8) "Category" "foreign_key" => string(11) "category_id" ) "human" => array(2) ( "model" => string(5) "Human" "foreign_key" => string(8) "human_id" ) ) protected _has_many => array(4) ( "answers" => array(4) ( "model" => string(6) "Answer" "foreign_key" => string(7) "task_id" "through" => NULL "far_key" => string(9) "answer_id" ) "tattaches" => array(4) ( "model" => string(7) "Tattach" "foreign_key" => string(7) "task_id" "through" => NULL "far_key" => string(10) "tattach_id" ) "tops" => array(4) ( "model" => string(3) "Top" "foreign_key" => string(7) "task_id" "through" => NULL "far_key" => string(6) "top_id" ) "ipsviews" => array(4) ( "model" => string(7) "Ipsview" "foreign_key" => string(7) "task_id" "through" => NULL "far_key" => string(10) "ipsview_id" ) ) protected _reload_on_wakeup => bool FALSE protected _has_one => array(0) protected _load_with => array(0) protected _validation => NULL protected _object => array(16) ( "id" => string(8) "14103798" "category_id" => string(1) "7" "text" => string(191) "<span class="sg-text sg-text--large sg-text--bold sg-text--break-words brn-qpage-next-question-box-content__primary"> До складу …" "zn_id" => string(8) "37500115" "date_time" => string(19) "2023-07-07 01:03:02" "views" => string(1) "3" "human_id" => string(7) "1186243" "ya_spell" => string(1) "0" "category_key" => string(6) "666218" "has_gpt" => string(1) "1" "source" => NULL "source_id" => NULL "text_for_search" => string(65) "До складу оксидів завжди входять? " "related" => string(120) "["7108902","14050961","11347733","13025802","11399709","11342486","5548477","11254901","11292172","12151480","11270209"]" "good" => NULL "bad" => NULL ) protected _changed => array(0) protected _original_values => array(16) ( "id" => string(8) "14103798" "category_id" => string(1) "7" "text" => string(191) "<span class="sg-text sg-text--large sg-text--bold sg-text--break-words brn-qpage-next-question-box-content__primary"> До складу …" "zn_id" => string(8) "37500115" "date_time" => string(19) "2023-07-07 01:03:02" "views" => string(1) "3" "human_id" => string(7) "1186243" "ya_spell" => string(1) "0" "category_key" => string(6) "666218" "has_gpt" => string(1) "1" "source" => NULL "source_id" => NULL "text_for_search" => string(65) "До складу оксидів завжди входять? " "related" => string(120) "["7108902","14050961","11347733","13025802","11399709","11342486","5548477","11254901","11292172","12151480","11270209"]" "good" => NULL "bad" => NULL ) protected _related => array(2) ( "human" => object Model_Human(34)9 => object Model_Task(34){ protected _db_group => string(5) "looka" protected _has_many => array(4) ( "universities" => array(5) ( "model" => string(10) "university" "foreign_key" => string(8) "human_id" "through" => string(19) "humans_universities" "far_key" => string(13) "university_id" "_table_columns" => array(5) ( "faculty_id" => NULL "chair_id" => NULL "graduation" => NULL "education_form" => NULL "education_status" => NULL ) ) "humans_universities" => array(4) ( "model" => string(17) "Humans_University" "foreign_key" => string(8) "human_id" "through" => NULL "far_key" => string(20) "humans_university_id" ) "schools" => array(5) ( "model" => string(6) "school" "foreign_key" => string(8) "human_id" "through" => string(14) "humans_schools" "far_key" => string(9) "school_id" "_table_columns" => array(6) ( "year_from" => NULL "year_to" => NULL "year_graduated" => NULL "class" => NULL "speciality" => NULL "type" => NULL ) ) "humans_schools" => array(4) ( "model" => string(13) "Humans_School" "foreign_key" => string(8) "human_id" "through" => NULL "far_key" => string(16) "humans_school_id" ) ) protected _belongs_to => array(4) ( "lastname" => array(2) ( "model" => string(8) "Lastname" "foreign_key" => string(11) "lastname_id" ) "firstname" => array(2) ( "model" => string(9) "Firstname" "foreign_key" => string(12) "firstname_id" ) "country" => array(2) ( "model" => string(7) "Country" "foreign_key" => string(10) "country_id" ) "city" => array(2) ( "model" => string(4) "City" "foreign_key" => string(7) "city_id" ) ) protected _reload_on_wakeup => bool FALSE protected _has_one => array(0) protected _load_with => array(0) protected _validation => NULL protected _object => array(21) ( "id" => string(7) "1186243" "lastname_id" => string(6) "276626" "firstname_id" => string(2) "88" "nickname" => string(0) "" "vk_id" => string(7) "1275961" "bdate" => string(10) "2004-02-04" "info" => NULL "photo" => string(63) "https://pp.userapi.com/c636329/v636329961/549a0/7gb03U4fzkU.jpg" "city_id" => string(7) "1710182" "country_id" => string(2) "43" "home_town" => NULL "home_phone" => NULL "skype" => NULL "facebook" => NULL "twitter" => NULL "livejournal" => NULL "instagram" => NULL "occupation_type" => string(4) "work" "occupation_name" => string(15) "Bank of Nikolai" "rate" => string(2) "12" "count_firstnames_lastnames" => NULL ) protected _changed => array(0) protected _original_values => array(21) ( "id" => string(7) "1186243" "lastname_id" => string(6) "276626" "firstname_id" => string(2) "88" "nickname" => string(0) "" "vk_id" => string(7) "1275961" "bdate" => string(10) "2004-02-04" "info" => NULL "photo" => string(63) "https://pp.userapi.com/c636329/v636329961/549a0/7gb03U4fzkU.jpg" "city_id" => string(7) "1710182" "country_id" => string(2) "43" "home_town" => NULL "home_phone" => NULL "skype" => NULL "facebook" => NULL "twitter" => NULL "livejournal" => NULL "instagram" => NULL "occupation_type" => string(4) "work" "occupation_name" => string(15) "Bank of Nikolai" "rate" => string(2) "12" "count_firstnames_lastnames" => NULL ) protected _related => array(2) ( "lastname" => object Model_Lastname(34)"category" => object Model_Category(35){ protected _db_group => string(5) "looka" protected _reload_on_wakeup => bool FALSE protected _has_one => array(0) protected _belongs_to => array(0) protected _has_many => array(0) protected _load_with => array(0) protected _validation => NULL protected _object => array(2) ( "id" => string(6) "276626" "title" => string(12) "Barbq-Junior" ) protected _changed => array(0) protected _original_values => array(2) ( "id" => string(6) "276626" "title" => string(12) "Barbq-Junior" ) protected _related => array(0) protected _valid => bool TRUE protected _loaded => bool TRUE protected _saved => bool FALSE protected _sorting => NULL protected _foreign_key_suffix => string(3) "_id" protected _object_name => string(8) "lastname" protected _object_plural => string(9) "lastnames" protected _table_name => string(9) "lastnames" protected _table_columns => array(2) ( "id" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(2) "id" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 1 "display" => string(2) "11" "comment" => string(0) "" "extra" => string(14) "auto_increment" "key" => string(3) "PRI" "privileges" => string(31) "select,insert,update,references" ) "title" => array(12) ( "type" => string(6) "string" "column_name" => string(5) "title" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool FALSE "ordinal_position" => integer 2 "character_maximum_length" => string(3) "255" "collation_name" => string(18) "utf8mb4_unicode_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) ) protected _updated_column => NULL protected _created_column => NULL protected _serialize_columns => array(0) protected _primary_key => string(2) "id" protected _primary_key_value => string(6) "276626" protected _table_names_plural => bool TRUE protected _db => object Database_MySQLi(6)"firstname" => object Model_Firstname(34){ protected _connection_id => string(40) "d012da34ee02fd2c23a3776760afb1e9d4e5c681" protected _identifier => string(1) "`" public last_query => string(166) "SELECT `finder_lastname`.`id` AS `id`, `finder_lastname`.`title` AS `title` FROM `finder_lastnames` AS `finder_lastname` WHERE ` …" protected _instance => string(5) "looka" protected _connection => object mysqli(19)protected _db_applied => array(0) protected _db_pending => array(0) protected _db_reset => bool TRUE protected _db_builder => NULL protected _with_applied => array(0) protected _cast_data => array(0) protected _errors_filename => string(8) "lastname" }{ public affected_rows => NULL public client_info => NULL public client_version => NULL public connect_errno => NULL public connect_error => NULL public errno => NULL public error => NULL public error_list => NULL public field_count => NULL public host_info => NULL public info => NULL public insert_id => NULL public server_info => NULL public server_version => NULL public stat => NULL public sqlstate => NULL public protocol_version => NULL public thread_id => NULL public warning_count => NULL }protected _config => array(5) ( "type" => string(6) "MySQLi" "connection" => array(3) ( "hostname" => string(9) "localhost" "database" => string(5) "looka" "persistent" => bool FALSE ) "table_prefix" => string(7) "finder_" "charset" => string(7) "utf8mb4" "caching" => bool FALSE ) }{ protected _db_group => string(5) "looka" protected _has_many => array(1) ( "humans" => array(4) ( "model" => string(5) "Human" "foreign_key" => string(12) "firstname_id" "through" => NULL "far_key" => string(8) "human_id" ) ) protected _reload_on_wakeup => bool FALSE protected _has_one => array(0) protected _belongs_to => array(0) protected _load_with => array(0) protected _validation => NULL protected _object => array(2) ( "id" => string(2) "88" "title" => string(14) "Андрюха" ) protected _changed => array(0) protected _original_values => array(2) ( "id" => string(2) "88" "title" => string(14) "Андрюха" ) protected _related => array(0) protected _valid => bool TRUE protected _loaded => bool TRUE protected _saved => bool FALSE protected _sorting => NULL protected _foreign_key_suffix => string(3) "_id" protected _object_name => string(9) "firstname" protected _object_plural => string(10) "firstnames" protected _table_name => string(10) "firstnames" protected _table_columns => array(2) ( "id" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(2) "id" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 1 "display" => string(2) "11" "comment" => string(0) "" "extra" => string(14) "auto_increment" "key" => string(3) "PRI" "privileges" => string(31) "select,insert,update,references" ) "title" => array(12) ( "type" => string(6) "string" "column_name" => string(5) "title" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 2 "character_maximum_length" => string(3) "255" "collation_name" => string(18) "utf8mb4_unicode_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) ) protected _updated_column => NULL protected _created_column => NULL protected _serialize_columns => array(0) protected _primary_key => string(2) "id" protected _primary_key_value => string(2) "88" protected _table_names_plural => bool TRUE protected _db => object Database_MySQLi(6)) protected _valid => bool TRUE protected _loaded => bool TRUE protected _saved => bool FALSE protected _sorting => NULL protected _foreign_key_suffix => string(3) "_id" protected _object_name => string(5) "human" protected _object_plural => string(6) "humans" protected _table_name => string(6) "humans" protected _table_columns => array(21) ( "id" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(2) "id" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 1 "display" => string(2) "11" "comment" => string(0) "" "extra" => string(14) "auto_increment" "key" => string(3) "PRI" "privileges" => string(31) "select,insert,update,references" ) "lastname_id" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(11) "lastname_id" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 2 "display" => string(2) "11" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "firstname_id" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(12) "firstname_id" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 3 "display" => string(2) "11" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "nickname" => array(12) ( "type" => string(6) "string" "column_name" => string(8) "nickname" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 4 "character_maximum_length" => string(3) "255" "collation_name" => string(18) "utf8mb4_unicode_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "vk_id" => array(13) ( "type" => string(3) "int" "min" => string(20) "-9223372036854775808" "max" => string(19) "9223372036854775807" "column_name" => string(5) "vk_id" "column_default" => NULL "data_type" => string(6) "bigint" "is_nullable" => bool TRUE "ordinal_position" => integer 5 "display" => string(2) "20" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "bdate" => array(10) ( "type" => string(6) "string" "column_name" => string(5) "bdate" "column_default" => NULL "data_type" => string(4) "date" "is_nullable" => bool TRUE "ordinal_position" => integer 6 "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "info" => array(12) ( "type" => string(6) "string" "column_name" => string(4) "info" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 7 "character_maximum_length" => string(4) "1023" "collation_name" => string(18) "utf8mb4_unicode_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "photo" => array(12) ( "type" => string(6) "string" "column_name" => string(5) "photo" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 8 "character_maximum_length" => string(3) "255" "collation_name" => string(18) "utf8mb4_unicode_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "city_id" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(7) "city_id" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool TRUE "ordinal_position" => integer 9 "display" => string(2) "11" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "country_id" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(10) "country_id" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool TRUE "ordinal_position" => integer 10 "display" => string(2) "11" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "home_town" => array(12) ( "type" => string(6) "string" "column_name" => string(9) "home_town" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 11 "character_maximum_length" => string(3) "255" "collation_name" => string(18) "utf8mb4_unicode_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "home_phone" => array(12) ( "type" => string(6) "string" "column_name" => string(10) "home_phone" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 12 "character_maximum_length" => string(2) "63" "collation_name" => string(18) "utf8mb4_unicode_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "skype" => array(12) ( "type" => string(6) "string" "column_name" => string(5) "skype" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 13 "character_maximum_length" => string(3) "127" "collation_name" => string(18) "utf8mb4_unicode_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "facebook" => array(12) ( "type" => string(6) "string" "column_name" => string(8) "facebook" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 14 "character_maximum_length" => string(3) "127" "collation_name" => string(18) "utf8mb4_unicode_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "twitter" => array(12) ( "type" => string(6) "string" "column_name" => string(7) "twitter" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 15 "character_maximum_length" => string(3) "127" "collation_name" => string(18) "utf8mb4_unicode_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "livejournal" => array(12) ( "type" => string(6) "string" "column_name" => string(11) "livejournal" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 16 "character_maximum_length" => string(3) "127" "collation_name" => string(18) "utf8mb4_unicode_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "instagram" => array(12) ( "type" => string(6) "string" "column_name" => string(9) "instagram" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 17 "character_maximum_length" => string(3) "127" "collation_name" => string(18) "utf8mb4_unicode_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "occupation_type" => array(12) ( "type" => string(6) "string" "column_name" => string(15) "occupation_type" "column_default" => NULL "data_type" => string(4) "enum" "is_nullable" => bool TRUE "ordinal_position" => integer 18 "collation_name" => string(18) "utf8mb4_unicode_ci" "options" => array(3) ( 0 => string(4) "work" 1 => string(6) "school" 2 => string(10) "university" ) "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "occupation_name" => array(12) ( "type" => string(6) "string" "column_name" => string(15) "occupation_name" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 19 "character_maximum_length" => string(3) "255" "collation_name" => string(18) "utf8mb4_unicode_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "rate" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(4) "rate" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 20 "display" => string(2) "11" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "count_firstnames_lastnames" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(26) "count_firstnames_lastnames" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool TRUE "ordinal_position" => integer 21 "display" => string(2) "11" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) ) protected _updated_column => NULL protected _created_column => NULL protected _serialize_columns => array(0) protected _primary_key => string(2) "id" protected _primary_key_value => string(7) "1186243" protected _table_names_plural => bool TRUE protected _db => object Database_MySQLi(6){ protected _connection_id => string(40) "d012da34ee02fd2c23a3776760afb1e9d4e5c681" protected _identifier => string(1) "`" public last_query => string(166) "SELECT `finder_lastname`.`id` AS `id`, `finder_lastname`.`title` AS `title` FROM `finder_lastnames` AS `finder_lastname` WHERE ` …" protected _instance => string(5) "looka" protected _connection => object mysqli(19)protected _db_applied => array(0) protected _db_pending => array(0) protected _db_reset => bool TRUE protected _db_builder => NULL protected _with_applied => array(0) protected _cast_data => array(0) protected _errors_filename => string(9) "firstname" }{ public affected_rows => NULL public client_info => NULL public client_version => NULL public connect_errno => NULL public connect_error => NULL public errno => NULL public error => NULL public error_list => NULL public field_count => NULL public host_info => NULL public info => NULL public insert_id => NULL public server_info => NULL public server_version => NULL public stat => NULL public sqlstate => NULL public protocol_version => NULL public thread_id => NULL public warning_count => NULL }protected _config => array(5) ( "type" => string(6) "MySQLi" "connection" => array(3) ( "hostname" => string(9) "localhost" "database" => string(5) "looka" "persistent" => bool FALSE ) "table_prefix" => string(7) "finder_" "charset" => string(7) "utf8mb4" "caching" => bool FALSE ) }{ protected _connection_id => string(40) "d012da34ee02fd2c23a3776760afb1e9d4e5c681" protected _identifier => string(1) "`" public last_query => string(166) "SELECT `finder_lastname`.`id` AS `id`, `finder_lastname`.`title` AS `title` FROM `finder_lastnames` AS `finder_lastname` WHERE ` …" protected _instance => string(5) "looka" protected _connection => object mysqli(19)protected _db_applied => array(0) protected _db_pending => array(0) protected _db_reset => bool TRUE protected _db_builder => NULL protected _with_applied => array(0) protected _cast_data => array(0) protected _errors_filename => string(5) "human" }{ public affected_rows => NULL public client_info => NULL public client_version => NULL public connect_errno => NULL public connect_error => NULL public errno => NULL public error => NULL public error_list => NULL public field_count => NULL public host_info => NULL public info => NULL public insert_id => NULL public server_info => NULL public server_version => NULL public stat => NULL public sqlstate => NULL public protocol_version => NULL public thread_id => NULL public warning_count => NULL }protected _config => array(5) ( "type" => string(6) "MySQLi" "connection" => array(3) ( "hostname" => string(9) "localhost" "database" => string(5) "looka" "persistent" => bool FALSE ) "table_prefix" => string(7) "finder_" "charset" => string(7) "utf8mb4" "caching" => bool FALSE ) }{ protected _has_many => array(2) ( "tasks" => array(4) ( "model" => string(4) "Task" "foreign_key" => string(11) "category_id" "through" => NULL "far_key" => string(7) "task_id" ) "tops" => array(4) ( "model" => string(3) "Top" "foreign_key" => string(11) "category_id" "through" => NULL "far_key" => string(6) "top_id" ) ) protected prefix_url => string(9) "/subject/" protected _reload_on_wakeup => bool FALSE protected _has_one => array(0) protected _belongs_to => array(0) protected _load_with => array(0) protected _validation => NULL protected _object => array(4) ( "id" => string(1) "7" "name" => string(10) "Химия" "url" => string(9) "chemistry" "count" => string(6) "799022" ) protected _changed => array(0) protected _original_values => array(4) ( "id" => string(1) "7" "name" => string(10) "Химия" "url" => string(9) "chemistry" "count" => string(6) "799022" ) protected _related => array(0) protected _valid => bool TRUE protected _loaded => bool TRUE protected _saved => bool FALSE protected _sorting => NULL protected _foreign_key_suffix => string(3) "_id" protected _object_name => string(8) "category" protected _object_plural => string(10) "categories" protected _table_name => string(10) "categories" protected _table_columns => array(4) ( "id" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(2) "id" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 1 "display" => string(2) "11" "comment" => string(0) "" "extra" => string(14) "auto_increment" "key" => string(3) "PRI" "privileges" => string(31) "select,insert,update,references" ) "name" => array(12) ( "type" => string(6) "string" "column_name" => string(4) "name" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool FALSE "ordinal_position" => integer 2 "character_maximum_length" => string(3) "255" "collation_name" => string(18) "utf8mb3_unicode_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "url" => array(12) ( "type" => string(6) "string" "column_name" => string(3) "url" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool FALSE "ordinal_position" => integer 3 "character_maximum_length" => string(3) "255" "collation_name" => string(18) "utf8mb3_unicode_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "count" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(5) "count" "column_default" => string(1) "0" "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 4 "display" => string(2) "11" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) ) protected _updated_column => NULL protected _created_column => NULL protected _serialize_columns => array(0) protected _primary_key => string(2) "id" protected _primary_key_value => string(1) "7" protected _table_names_plural => bool TRUE protected _db => object Database_MySQLi(6)) protected _valid => bool TRUE protected _loaded => bool TRUE protected _saved => bool FALSE protected _sorting => NULL protected _foreign_key_suffix => string(3) "_id" protected _object_name => string(4) "task" protected _object_plural => string(5) "tasks" protected _table_name => string(5) "tasks" protected _table_columns => array(16) ( "id" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(2) "id" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 1 "display" => string(2) "11" "comment" => string(0) "" "extra" => string(14) "auto_increment" "key" => string(3) "PRI" "privileges" => string(31) "select,insert,update,references" ) "category_id" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(11) "category_id" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 2 "display" => string(2) "11" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "text" => array(12) ( "type" => string(6) "string" "character_maximum_length" => string(5) "65535" "column_name" => string(4) "text" "column_default" => NULL "data_type" => string(4) "text" "is_nullable" => bool FALSE "ordinal_position" => integer 3 "collation_name" => string(18) "utf8mb3_unicode_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "zn_id" => array(13) ( "type" => string(3) "int" "min" => string(20) "-9223372036854775808" "max" => string(19) "9223372036854775807" "column_name" => string(5) "zn_id" "column_default" => string(1) "0" "data_type" => string(6) "bigint" "is_nullable" => bool FALSE "ordinal_position" => integer 4 "display" => string(2) "20" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "date_time" => array(10) ( "type" => string(6) "string" "column_name" => string(9) "date_time" "column_default" => string(19) "current_timestamp()" "data_type" => string(8) "datetime" "is_nullable" => bool FALSE "ordinal_position" => integer 5 "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "views" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(5) "views" "column_default" => string(1) "0" "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 6 "display" => string(2) "11" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "human_id" => array(13) ( "type" => string(3) "int" "min" => string(20) "-9223372036854775808" "max" => string(19) "9223372036854775807" "column_name" => string(8) "human_id" "column_default" => NULL "data_type" => string(6) "bigint" "is_nullable" => bool TRUE "ordinal_position" => integer 7 "display" => string(2) "20" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "ya_spell" => array(12) ( "type" => string(6) "string" "column_name" => string(8) "ya_spell" "column_default" => string(1) "0" "data_type" => string(4) "enum" "is_nullable" => bool FALSE "ordinal_position" => integer 8 "collation_name" => string(18) "utf8mb3_unicode_ci" "options" => array(2) ( 0 => string(1) "0" 1 => string(1) "1" ) "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "category_key" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(12) "category_key" "column_default" => string(1) "0" "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 9 "display" => string(2) "11" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "has_gpt" => array(12) ( "type" => string(6) "string" "column_name" => string(7) "has_gpt" "column_default" => NULL "data_type" => string(4) "enum" "is_nullable" => bool TRUE "ordinal_position" => integer 10 "collation_name" => string(18) "utf8mb3_unicode_ci" "options" => array(4) ( 0 => string(1) "0" 1 => string(1) "1" 2 => string(12) "has_attaches" 3 => string(4) "skip" ) "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "source" => array(12) ( "type" => string(6) "string" "column_name" => string(6) "source" "column_default" => NULL "data_type" => string(4) "enum" "is_nullable" => bool TRUE "ordinal_position" => integer 11 "collation_name" => string(18) "utf8mb3_unicode_ci" "options" => array(1) ( 0 => string(12) "vashurok.com" ) "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "source_id" => array(13) ( "type" => string(3) "int" "min" => string(20) "-9223372036854775808" "max" => string(19) "9223372036854775807" "column_name" => string(9) "source_id" "column_default" => NULL "data_type" => string(6) "bigint" "is_nullable" => bool TRUE "ordinal_position" => integer 12 "display" => string(2) "20" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "text_for_search" => array(12) ( "type" => string(6) "string" "character_maximum_length" => string(5) "65535" "column_name" => string(15) "text_for_search" "column_default" => NULL "data_type" => string(4) "text" "is_nullable" => bool TRUE "ordinal_position" => integer 13 "collation_name" => string(18) "utf8mb3_unicode_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "related" => array(12) ( "type" => string(6) "string" "column_name" => string(7) "related" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 14 "character_maximum_length" => string(4) "1023" "collation_name" => string(18) "utf8mb3_unicode_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "good" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(4) "good" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool TRUE "ordinal_position" => integer 15 "display" => string(2) "11" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "bad" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(3) "bad" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool TRUE "ordinal_position" => integer 16 "display" => string(2) "11" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) ) protected _updated_column => NULL protected _created_column => NULL protected _serialize_columns => array(0) protected _primary_key => string(2) "id" protected _primary_key_value => string(8) "14103798" protected _table_names_plural => bool TRUE protected _db => object Database_MySQLi(6){ protected _connection_id => string(40) "9fdecc117b583662f3b3d15c4c4ac71fc778e18d" protected _identifier => string(1) "`" public last_query => string(185) "SELECT `category`.`id` AS `id`, `category`.`name` AS `name`, `category`.`url` AS `url`, `category`.`count` AS `count` FROM `cate …" protected _instance => string(7) "default" protected _connection => object mysqli(19)protected _db_group => NULL protected _db_applied => array(0) protected _db_pending => array(0) protected _db_reset => bool TRUE protected _db_builder => NULL protected _with_applied => array(0) protected _cast_data => array(0) protected _errors_filename => string(8) "category" }{ public affected_rows => NULL public client_info => NULL public client_version => NULL public connect_errno => NULL public connect_error => NULL public errno => NULL public error => NULL public error_list => NULL public field_count => NULL public host_info => NULL public info => NULL public insert_id => NULL public server_info => NULL public server_version => NULL public stat => NULL public sqlstate => NULL public protocol_version => NULL public thread_id => NULL public warning_count => NULL }protected _config => array(6) ( "type" => string(6) "MySQLi" "connection" => array(3) ( "hostname" => string(9) "localhost" "database" => string(9) "uznavalka" "persistent" => bool FALSE ) "table_prefix" => string(0) "" "charset" => string(7) "utf8mb4" "caching" => bool FALSE "profiling" => bool FALSE ) }{ protected _connection_id => string(40) "9fdecc117b583662f3b3d15c4c4ac71fc778e18d" protected _identifier => string(1) "`" public last_query => string(185) "SELECT `category`.`id` AS `id`, `category`.`name` AS `name`, `category`.`url` AS `url`, `category`.`count` AS `count` FROM `cate …" protected _instance => string(7) "default" protected _connection => object mysqli(19)protected _db_group => NULL protected _db_applied => array(0) protected _db_pending => array(0) protected _db_reset => bool TRUE protected _db_builder => NULL protected _with_applied => array(0) protected _cast_data => array(0) protected _errors_filename => string(4) "task" }{ public affected_rows => NULL public client_info => NULL public client_version => NULL public connect_errno => NULL public connect_error => NULL public errno => NULL public error => NULL public error_list => NULL public field_count => NULL public host_info => NULL public info => NULL public insert_id => NULL public server_info => NULL public server_version => NULL public stat => NULL public sqlstate => NULL public protocol_version => NULL public thread_id => NULL public warning_count => NULL }protected _config => array(6) ( "type" => string(6) "MySQLi" "connection" => array(3) ( "hostname" => string(9) "localhost" "database" => string(9) "uznavalka" "persistent" => bool FALSE ) "table_prefix" => string(0) "" "charset" => string(7) "utf8mb4" "caching" => bool FALSE "profiling" => bool FALSE ) }{ protected _belongs_to => array(2) ( "category" => array(2) ( "model" => string(8) "Category" "foreign_key" => string(11) "category_id" ) "human" => array(2) ( "model" => string(5) "Human" "foreign_key" => string(8) "human_id" ) ) protected _has_many => array(4) ( "answers" => array(4) ( "model" => string(6) "Answer" "foreign_key" => string(7) "task_id" "through" => NULL "far_key" => string(9) "answer_id" ) "tattaches" => array(4) ( "model" => string(7) "Tattach" "foreign_key" => string(7) "task_id" "through" => NULL "far_key" => string(10) "tattach_id" ) "tops" => array(4) ( "model" => string(3) "Top" "foreign_key" => string(7) "task_id" "through" => NULL "far_key" => string(6) "top_id" ) "ipsviews" => array(4) ( "model" => string(7) "Ipsview" "foreign_key" => string(7) "task_id" "through" => NULL "far_key" => string(10) "ipsview_id" ) ) protected _reload_on_wakeup => bool FALSE protected _has_one => array(0) protected _load_with => array(0) protected _validation => NULL protected _object => array(16) ( "id" => string(7) "1972445" "category_id" => string(1) "7" "text" => string(170) "Составьте уравнения реакции окисления бутаналя. Определите молярную массу продукта реакции" "zn_id" => string(7) "5517167" "date_time" => string(19) "2018-11-02 03:30:29" "views" => string(2) "17" "human_id" => string(7) "9897776" "ya_spell" => string(1) "0" "category_key" => string(5) "88488" "has_gpt" => string(1) "1" "source" => NULL "source_id" => NULL "text_for_search" => string(170) "Составьте уравнения реакции окисления бутаналя. Определите молярную массу продукта реакции" "related" => NULL "good" => NULL "bad" => NULL ) protected _changed => array(0) protected _original_values => array(16) ( "id" => string(7) "1972445" "category_id" => string(1) "7" "text" => string(170) "Составьте уравнения реакции окисления бутаналя. Определите молярную массу продукта реакции" "zn_id" => string(7) "5517167" "date_time" => string(19) "2018-11-02 03:30:29" "views" => string(2) "17" "human_id" => string(7) "9897776" "ya_spell" => string(1) "0" "category_key" => string(5) "88488" "has_gpt" => string(1) "1" "source" => NULL "source_id" => NULL "text_for_search" => string(170) "Составьте уравнения реакции окисления бутаналя. Определите молярную массу продукта реакции" "related" => NULL "good" => NULL "bad" => NULL ) protected _related => array(2) ( "human" => object Model_Human(34)) ){ protected _db_group => string(5) "looka" protected _has_many => array(4) ( "universities" => array(5) ( "model" => string(10) "university" "foreign_key" => string(8) "human_id" "through" => string(19) "humans_universities" "far_key" => string(13) "university_id" "_table_columns" => array(5) ( "faculty_id" => NULL "chair_id" => NULL "graduation" => NULL "education_form" => NULL "education_status" => NULL ) ) "humans_universities" => array(4) ( "model" => string(17) "Humans_University" "foreign_key" => string(8) "human_id" "through" => NULL "far_key" => string(20) "humans_university_id" ) "schools" => array(5) ( "model" => string(6) "school" "foreign_key" => string(8) "human_id" "through" => string(14) "humans_schools" "far_key" => string(9) "school_id" "_table_columns" => array(6) ( "year_from" => NULL "year_to" => NULL "year_graduated" => NULL "class" => NULL "speciality" => NULL "type" => NULL ) ) "humans_schools" => array(4) ( "model" => string(13) "Humans_School" "foreign_key" => string(8) "human_id" "through" => NULL "far_key" => string(16) "humans_school_id" ) ) protected _belongs_to => array(4) ( "lastname" => array(2) ( "model" => string(8) "Lastname" "foreign_key" => string(11) "lastname_id" ) "firstname" => array(2) ( "model" => string(9) "Firstname" "foreign_key" => string(12) "firstname_id" ) "country" => array(2) ( "model" => string(7) "Country" "foreign_key" => string(10) "country_id" ) "city" => array(2) ( "model" => string(4) "City" "foreign_key" => string(7) "city_id" ) ) protected _reload_on_wakeup => bool FALSE protected _has_one => array(0) protected _load_with => array(0) protected _validation => NULL protected _object => array(21) ( "id" => string(7) "9897776" "lastname_id" => string(3) "191" "firstname_id" => string(3) "122" "nickname" => string(0) "" "vk_id" => string(9) "290447056" "bdate" => string(10) "2004-02-07" "info" => NULL "photo" => string(63) "https://pp.userapi.com/c841227/v841227747/697b6/VrQAaLpcGNE.jpg" "city_id" => string(3) "589" "country_id" => string(1) "1" "home_town" => NULL "home_phone" => NULL "skype" => NULL "facebook" => NULL "twitter" => NULL "livejournal" => NULL "instagram" => NULL "occupation_type" => string(6) "school" "occupation_name" => string(15) "Школа №9" "rate" => string(2) "12" "count_firstnames_lastnames" => NULL ) protected _changed => array(0) protected _original_values => array(21) ( "id" => string(7) "9897776" "lastname_id" => string(3) "191" "firstname_id" => string(3) "122" "nickname" => string(0) "" "vk_id" => string(9) "290447056" "bdate" => string(10) "2004-02-07" "info" => NULL "photo" => string(63) "https://pp.userapi.com/c841227/v841227747/697b6/VrQAaLpcGNE.jpg" "city_id" => string(3) "589" "country_id" => string(1) "1" "home_town" => NULL "home_phone" => NULL "skype" => NULL "facebook" => NULL "twitter" => NULL "livejournal" => NULL "instagram" => NULL "occupation_type" => string(6) "school" "occupation_name" => string(15) "Школа №9" "rate" => string(2) "12" "count_firstnames_lastnames" => NULL ) protected _related => array(2) ( "lastname" => object Model_Lastname(34)"category" => object Model_Category(35){ protected _db_group => string(5) "looka" protected _reload_on_wakeup => bool FALSE protected _has_one => array(0) protected _belongs_to => array(0) protected _has_many => array(0) protected _load_with => array(0) protected _validation => NULL protected _object => array(2) ( "id" => string(3) "191" "title" => string(20) "Бондаренко" ) protected _changed => array(0) protected _original_values => array(2) ( "id" => string(3) "191" "title" => string(20) "Бондаренко" ) protected _related => array(0) protected _valid => bool TRUE protected _loaded => bool TRUE protected _saved => bool FALSE protected _sorting => NULL protected _foreign_key_suffix => string(3) "_id" protected _object_name => string(8) "lastname" protected _object_plural => string(9) "lastnames" protected _table_name => string(9) "lastnames" protected _table_columns => array(2) ( "id" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(2) "id" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 1 "display" => string(2) "11" "comment" => string(0) "" "extra" => string(14) "auto_increment" "key" => string(3) "PRI" "privileges" => string(31) "select,insert,update,references" ) "title" => array(12) ( "type" => string(6) "string" "column_name" => string(5) "title" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool FALSE "ordinal_position" => integer 2 "character_maximum_length" => string(3) "255" "collation_name" => string(18) "utf8mb4_unicode_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) ) protected _updated_column => NULL protected _created_column => NULL protected _serialize_columns => array(0) protected _primary_key => string(2) "id" protected _primary_key_value => string(3) "191" protected _table_names_plural => bool TRUE protected _db => object Database_MySQLi(6)"firstname" => object Model_Firstname(34){ protected _connection_id => string(40) "d012da34ee02fd2c23a3776760afb1e9d4e5c681" protected _identifier => string(1) "`" public last_query => string(166) "SELECT `finder_lastname`.`id` AS `id`, `finder_lastname`.`title` AS `title` FROM `finder_lastnames` AS `finder_lastname` WHERE ` …" protected _instance => string(5) "looka" protected _connection => object mysqli(19)protected _db_applied => array(0) protected _db_pending => array(0) protected _db_reset => bool TRUE protected _db_builder => NULL protected _with_applied => array(0) protected _cast_data => array(0) protected _errors_filename => string(8) "lastname" }{ public affected_rows => NULL public client_info => NULL public client_version => NULL public connect_errno => NULL public connect_error => NULL public errno => NULL public error => NULL public error_list => NULL public field_count => NULL public host_info => NULL public info => NULL public insert_id => NULL public server_info => NULL public server_version => NULL public stat => NULL public sqlstate => NULL public protocol_version => NULL public thread_id => NULL public warning_count => NULL }protected _config => array(5) ( "type" => string(6) "MySQLi" "connection" => array(3) ( "hostname" => string(9) "localhost" "database" => string(5) "looka" "persistent" => bool FALSE ) "table_prefix" => string(7) "finder_" "charset" => string(7) "utf8mb4" "caching" => bool FALSE ) }{ protected _db_group => string(5) "looka" protected _has_many => array(1) ( "humans" => array(4) ( "model" => string(5) "Human" "foreign_key" => string(12) "firstname_id" "through" => NULL "far_key" => string(8) "human_id" ) ) protected _reload_on_wakeup => bool FALSE protected _has_one => array(0) protected _belongs_to => array(0) protected _load_with => array(0) protected _validation => NULL protected _object => array(2) ( "id" => string(3) "122" "title" => string(20) "Александра" ) protected _changed => array(0) protected _original_values => array(2) ( "id" => string(3) "122" "title" => string(20) "Александра" ) protected _related => array(0) protected _valid => bool TRUE protected _loaded => bool TRUE protected _saved => bool FALSE protected _sorting => NULL protected _foreign_key_suffix => string(3) "_id" protected _object_name => string(9) "firstname" protected _object_plural => string(10) "firstnames" protected _table_name => string(10) "firstnames" protected _table_columns => array(2) ( "id" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(2) "id" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 1 "display" => string(2) "11" "comment" => string(0) "" "extra" => string(14) "auto_increment" "key" => string(3) "PRI" "privileges" => string(31) "select,insert,update,references" ) "title" => array(12) ( "type" => string(6) "string" "column_name" => string(5) "title" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 2 "character_maximum_length" => string(3) "255" "collation_name" => string(18) "utf8mb4_unicode_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) ) protected _updated_column => NULL protected _created_column => NULL protected _serialize_columns => array(0) protected _primary_key => string(2) "id" protected _primary_key_value => string(3) "122" protected _table_names_plural => bool TRUE protected _db => object Database_MySQLi(6)) protected _valid => bool TRUE protected _loaded => bool TRUE protected _saved => bool FALSE protected _sorting => NULL protected _foreign_key_suffix => string(3) "_id" protected _object_name => string(5) "human" protected _object_plural => string(6) "humans" protected _table_name => string(6) "humans" protected _table_columns => array(21) ( "id" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(2) "id" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 1 "display" => string(2) "11" "comment" => string(0) "" "extra" => string(14) "auto_increment" "key" => string(3) "PRI" "privileges" => string(31) "select,insert,update,references" ) "lastname_id" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(11) "lastname_id" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 2 "display" => string(2) "11" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "firstname_id" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(12) "firstname_id" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 3 "display" => string(2) "11" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "nickname" => array(12) ( "type" => string(6) "string" "column_name" => string(8) "nickname" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 4 "character_maximum_length" => string(3) "255" "collation_name" => string(18) "utf8mb4_unicode_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "vk_id" => array(13) ( "type" => string(3) "int" "min" => string(20) "-9223372036854775808" "max" => string(19) "9223372036854775807" "column_name" => string(5) "vk_id" "column_default" => NULL "data_type" => string(6) "bigint" "is_nullable" => bool TRUE "ordinal_position" => integer 5 "display" => string(2) "20" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "bdate" => array(10) ( "type" => string(6) "string" "column_name" => string(5) "bdate" "column_default" => NULL "data_type" => string(4) "date" "is_nullable" => bool TRUE "ordinal_position" => integer 6 "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "info" => array(12) ( "type" => string(6) "string" "column_name" => string(4) "info" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 7 "character_maximum_length" => string(4) "1023" "collation_name" => string(18) "utf8mb4_unicode_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "photo" => array(12) ( "type" => string(6) "string" "column_name" => string(5) "photo" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 8 "character_maximum_length" => string(3) "255" "collation_name" => string(18) "utf8mb4_unicode_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "city_id" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(7) "city_id" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool TRUE "ordinal_position" => integer 9 "display" => string(2) "11" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "country_id" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(10) "country_id" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool TRUE "ordinal_position" => integer 10 "display" => string(2) "11" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "home_town" => array(12) ( "type" => string(6) "string" "column_name" => string(9) "home_town" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 11 "character_maximum_length" => string(3) "255" "collation_name" => string(18) "utf8mb4_unicode_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "home_phone" => array(12) ( "type" => string(6) "string" "column_name" => string(10) "home_phone" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 12 "character_maximum_length" => string(2) "63" "collation_name" => string(18) "utf8mb4_unicode_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "skype" => array(12) ( "type" => string(6) "string" "column_name" => string(5) "skype" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 13 "character_maximum_length" => string(3) "127" "collation_name" => string(18) "utf8mb4_unicode_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "facebook" => array(12) ( "type" => string(6) "string" "column_name" => string(8) "facebook" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 14 "character_maximum_length" => string(3) "127" "collation_name" => string(18) "utf8mb4_unicode_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "twitter" => array(12) ( "type" => string(6) "string" "column_name" => string(7) "twitter" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 15 "character_maximum_length" => string(3) "127" "collation_name" => string(18) "utf8mb4_unicode_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "livejournal" => array(12) ( "type" => string(6) "string" "column_name" => string(11) "livejournal" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 16 "character_maximum_length" => string(3) "127" "collation_name" => string(18) "utf8mb4_unicode_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "instagram" => array(12) ( "type" => string(6) "string" "column_name" => string(9) "instagram" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 17 "character_maximum_length" => string(3) "127" "collation_name" => string(18) "utf8mb4_unicode_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "occupation_type" => array(12) ( "type" => string(6) "string" "column_name" => string(15) "occupation_type" "column_default" => NULL "data_type" => string(4) "enum" "is_nullable" => bool TRUE "ordinal_position" => integer 18 "collation_name" => string(18) "utf8mb4_unicode_ci" "options" => array(3) ( 0 => string(4) "work" 1 => string(6) "school" 2 => string(10) "university" ) "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "occupation_name" => array(12) ( "type" => string(6) "string" "column_name" => string(15) "occupation_name" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 19 "character_maximum_length" => string(3) "255" "collation_name" => string(18) "utf8mb4_unicode_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "rate" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(4) "rate" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 20 "display" => string(2) "11" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "count_firstnames_lastnames" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(26) "count_firstnames_lastnames" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool TRUE "ordinal_position" => integer 21 "display" => string(2) "11" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) ) protected _updated_column => NULL protected _created_column => NULL protected _serialize_columns => array(0) protected _primary_key => string(2) "id" protected _primary_key_value => string(7) "9897776" protected _table_names_plural => bool TRUE protected _db => object Database_MySQLi(6){ protected _connection_id => string(40) "d012da34ee02fd2c23a3776760afb1e9d4e5c681" protected _identifier => string(1) "`" public last_query => string(166) "SELECT `finder_lastname`.`id` AS `id`, `finder_lastname`.`title` AS `title` FROM `finder_lastnames` AS `finder_lastname` WHERE ` …" protected _instance => string(5) "looka" protected _connection => object mysqli(19)protected _db_applied => array(0) protected _db_pending => array(0) protected _db_reset => bool TRUE protected _db_builder => NULL protected _with_applied => array(0) protected _cast_data => array(0) protected _errors_filename => string(9) "firstname" }{ public affected_rows => NULL public client_info => NULL public client_version => NULL public connect_errno => NULL public connect_error => NULL public errno => NULL public error => NULL public error_list => NULL public field_count => NULL public host_info => NULL public info => NULL public insert_id => NULL public server_info => NULL public server_version => NULL public stat => NULL public sqlstate => NULL public protocol_version => NULL public thread_id => NULL public warning_count => NULL }protected _config => array(5) ( "type" => string(6) "MySQLi" "connection" => array(3) ( "hostname" => string(9) "localhost" "database" => string(5) "looka" "persistent" => bool FALSE ) "table_prefix" => string(7) "finder_" "charset" => string(7) "utf8mb4" "caching" => bool FALSE ) }{ protected _connection_id => string(40) "d012da34ee02fd2c23a3776760afb1e9d4e5c681" protected _identifier => string(1) "`" public last_query => string(166) "SELECT `finder_lastname`.`id` AS `id`, `finder_lastname`.`title` AS `title` FROM `finder_lastnames` AS `finder_lastname` WHERE ` …" protected _instance => string(5) "looka" protected _connection => object mysqli(19)protected _db_applied => array(0) protected _db_pending => array(0) protected _db_reset => bool TRUE protected _db_builder => NULL protected _with_applied => array(0) protected _cast_data => array(0) protected _errors_filename => string(5) "human" }{ public affected_rows => NULL public client_info => NULL public client_version => NULL public connect_errno => NULL public connect_error => NULL public errno => NULL public error => NULL public error_list => NULL public field_count => NULL public host_info => NULL public info => NULL public insert_id => NULL public server_info => NULL public server_version => NULL public stat => NULL public sqlstate => NULL public protocol_version => NULL public thread_id => NULL public warning_count => NULL }protected _config => array(5) ( "type" => string(6) "MySQLi" "connection" => array(3) ( "hostname" => string(9) "localhost" "database" => string(5) "looka" "persistent" => bool FALSE ) "table_prefix" => string(7) "finder_" "charset" => string(7) "utf8mb4" "caching" => bool FALSE ) }{ protected _has_many => array(2) ( "tasks" => array(4) ( "model" => string(4) "Task" "foreign_key" => string(11) "category_id" "through" => NULL "far_key" => string(7) "task_id" ) "tops" => array(4) ( "model" => string(3) "Top" "foreign_key" => string(11) "category_id" "through" => NULL "far_key" => string(6) "top_id" ) ) protected prefix_url => string(9) "/subject/" protected _reload_on_wakeup => bool FALSE protected _has_one => array(0) protected _belongs_to => array(0) protected _load_with => array(0) protected _validation => NULL protected _object => array(4) ( "id" => string(1) "7" "name" => string(10) "Химия" "url" => string(9) "chemistry" "count" => string(6) "799022" ) protected _changed => array(0) protected _original_values => array(4) ( "id" => string(1) "7" "name" => string(10) "Химия" "url" => string(9) "chemistry" "count" => string(6) "799022" ) protected _related => array(0) protected _valid => bool TRUE protected _loaded => bool TRUE protected _saved => bool FALSE protected _sorting => NULL protected _foreign_key_suffix => string(3) "_id" protected _object_name => string(8) "category" protected _object_plural => string(10) "categories" protected _table_name => string(10) "categories" protected _table_columns => array(4) ( "id" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(2) "id" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 1 "display" => string(2) "11" "comment" => string(0) "" "extra" => string(14) "auto_increment" "key" => string(3) "PRI" "privileges" => string(31) "select,insert,update,references" ) "name" => array(12) ( "type" => string(6) "string" "column_name" => string(4) "name" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool FALSE "ordinal_position" => integer 2 "character_maximum_length" => string(3) "255" "collation_name" => string(18) "utf8mb3_unicode_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "url" => array(12) ( "type" => string(6) "string" "column_name" => string(3) "url" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool FALSE "ordinal_position" => integer 3 "character_maximum_length" => string(3) "255" "collation_name" => string(18) "utf8mb3_unicode_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "count" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(5) "count" "column_default" => string(1) "0" "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 4 "display" => string(2) "11" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) ) protected _updated_column => NULL protected _created_column => NULL protected _serialize_columns => array(0) protected _primary_key => string(2) "id" protected _primary_key_value => string(1) "7" protected _table_names_plural => bool TRUE protected _db => object Database_MySQLi(6)) protected _valid => bool TRUE protected _loaded => bool TRUE protected _saved => bool FALSE protected _sorting => NULL protected _foreign_key_suffix => string(3) "_id" protected _object_name => string(4) "task" protected _object_plural => string(5) "tasks" protected _table_name => string(5) "tasks" protected _table_columns => array(16) ( "id" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(2) "id" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 1 "display" => string(2) "11" "comment" => string(0) "" "extra" => string(14) "auto_increment" "key" => string(3) "PRI" "privileges" => string(31) "select,insert,update,references" ) "category_id" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(11) "category_id" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 2 "display" => string(2) "11" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "text" => array(12) ( "type" => string(6) "string" "character_maximum_length" => string(5) "65535" "column_name" => string(4) "text" "column_default" => NULL "data_type" => string(4) "text" "is_nullable" => bool FALSE "ordinal_position" => integer 3 "collation_name" => string(18) "utf8mb3_unicode_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "zn_id" => array(13) ( "type" => string(3) "int" "min" => string(20) "-9223372036854775808" "max" => string(19) "9223372036854775807" "column_name" => string(5) "zn_id" "column_default" => string(1) "0" "data_type" => string(6) "bigint" "is_nullable" => bool FALSE "ordinal_position" => integer 4 "display" => string(2) "20" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "date_time" => array(10) ( "type" => string(6) "string" "column_name" => string(9) "date_time" "column_default" => string(19) "current_timestamp()" "data_type" => string(8) "datetime" "is_nullable" => bool FALSE "ordinal_position" => integer 5 "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "views" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(5) "views" "column_default" => string(1) "0" "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 6 "display" => string(2) "11" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "human_id" => array(13) ( "type" => string(3) "int" "min" => string(20) "-9223372036854775808" "max" => string(19) "9223372036854775807" "column_name" => string(8) "human_id" "column_default" => NULL "data_type" => string(6) "bigint" "is_nullable" => bool TRUE "ordinal_position" => integer 7 "display" => string(2) "20" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "ya_spell" => array(12) ( "type" => string(6) "string" "column_name" => string(8) "ya_spell" "column_default" => string(1) "0" "data_type" => string(4) "enum" "is_nullable" => bool FALSE "ordinal_position" => integer 8 "collation_name" => string(18) "utf8mb3_unicode_ci" "options" => array(2) ( 0 => string(1) "0" 1 => string(1) "1" ) "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "category_key" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(12) "category_key" "column_default" => string(1) "0" "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 9 "display" => string(2) "11" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "has_gpt" => array(12) ( "type" => string(6) "string" "column_name" => string(7) "has_gpt" "column_default" => NULL "data_type" => string(4) "enum" "is_nullable" => bool TRUE "ordinal_position" => integer 10 "collation_name" => string(18) "utf8mb3_unicode_ci" "options" => array(4) ( 0 => string(1) "0" 1 => string(1) "1" 2 => string(12) "has_attaches" 3 => string(4) "skip" ) "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "source" => array(12) ( "type" => string(6) "string" "column_name" => string(6) "source" "column_default" => NULL "data_type" => string(4) "enum" "is_nullable" => bool TRUE "ordinal_position" => integer 11 "collation_name" => string(18) "utf8mb3_unicode_ci" "options" => array(1) ( 0 => string(12) "vashurok.com" ) "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "source_id" => array(13) ( "type" => string(3) "int" "min" => string(20) "-9223372036854775808" "max" => string(19) "9223372036854775807" "column_name" => string(9) "source_id" "column_default" => NULL "data_type" => string(6) "bigint" "is_nullable" => bool TRUE "ordinal_position" => integer 12 "display" => string(2) "20" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "text_for_search" => array(12) ( "type" => string(6) "string" "character_maximum_length" => string(5) "65535" "column_name" => string(15) "text_for_search" "column_default" => NULL "data_type" => string(4) "text" "is_nullable" => bool TRUE "ordinal_position" => integer 13 "collation_name" => string(18) "utf8mb3_unicode_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "related" => array(12) ( "type" => string(6) "string" "column_name" => string(7) "related" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 14 "character_maximum_length" => string(4) "1023" "collation_name" => string(18) "utf8mb3_unicode_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "good" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(4) "good" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool TRUE "ordinal_position" => integer 15 "display" => string(2) "11" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "bad" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(3) "bad" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool TRUE "ordinal_position" => integer 16 "display" => string(2) "11" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) ) protected _updated_column => NULL protected _created_column => NULL protected _serialize_columns => array(0) protected _primary_key => string(2) "id" protected _primary_key_value => string(7) "1972445" protected _table_names_plural => bool TRUE protected _db => object Database_MySQLi(6){ protected _connection_id => string(40) "9fdecc117b583662f3b3d15c4c4ac71fc778e18d" protected _identifier => string(1) "`" public last_query => string(185) "SELECT `category`.`id` AS `id`, `category`.`name` AS `name`, `category`.`url` AS `url`, `category`.`count` AS `count` FROM `cate …" protected _instance => string(7) "default" protected _connection => object mysqli(19)protected _db_group => NULL protected _db_applied => array(0) protected _db_pending => array(0) protected _db_reset => bool TRUE protected _db_builder => NULL protected _with_applied => array(0) protected _cast_data => array(0) protected _errors_filename => string(8) "category" }{ public affected_rows => NULL public client_info => NULL public client_version => NULL public connect_errno => NULL public connect_error => NULL public errno => NULL public error => NULL public error_list => NULL public field_count => NULL public host_info => NULL public info => NULL public insert_id => NULL public server_info => NULL public server_version => NULL public stat => NULL public sqlstate => NULL public protocol_version => NULL public thread_id => NULL public warning_count => NULL }protected _config => array(6) ( "type" => string(6) "MySQLi" "connection" => array(3) ( "hostname" => string(9) "localhost" "database" => string(9) "uznavalka" "persistent" => bool FALSE ) "table_prefix" => string(0) "" "charset" => string(7) "utf8mb4" "caching" => bool FALSE "profiling" => bool FALSE ) }{ protected _connection_id => string(40) "9fdecc117b583662f3b3d15c4c4ac71fc778e18d" protected _identifier => string(1) "`" public last_query => string(185) "SELECT `category`.`id` AS `id`, `category`.`name` AS `name`, `category`.`url` AS `url`, `category`.`count` AS `count` FROM `cate …" protected _instance => string(7) "default" protected _connection => object mysqli(19)protected _db_group => NULL protected _db_applied => array(0) protected _db_pending => array(0) protected _db_reset => bool TRUE protected _db_builder => NULL protected _with_applied => array(0) protected _cast_data => array(0) protected _errors_filename => string(4) "task" }{ public affected_rows => NULL public client_info => NULL public client_version => NULL public connect_errno => NULL public connect_error => NULL public errno => NULL public error => NULL public error_list => NULL public field_count => NULL public host_info => NULL public info => NULL public insert_id => NULL public server_info => NULL public server_version => NULL public stat => NULL public sqlstate => NULL public protocol_version => NULL public thread_id => NULL public warning_count => NULL }protected _config => array(6) ( "type" => string(6) "MySQLi" "connection" => array(3) ( "hostname" => string(9) "localhost" "database" => string(9) "uznavalka" "persistent" => bool FALSE ) "table_prefix" => string(0) "" "charset" => string(7) "utf8mb4" "caching" => bool FALSE "profiling" => bool FALSE ) }343 { 344 throw new View_Exception('You must set the file to use within your view before rendering'); 345 } 346 347 // Combine local and global data and capture the output 348 return View::capture($this->_file, $this->_data); 349 } 350 351 } -
SYSPATH/classes/Kohana/View.php [ 228 ] » Kohana_View->render()
223 */ 224 public function __toString() 225 { 226 try 227 { 228 return $this->render(); 229 } 230 catch (Exception $e) 231 { 232 /** 233 * Display the exception message. -
APPPATH/views/v_base.php [ 69 ] » Kohana_View->__toString()
64 </div> 65 66 67 <div class="center_column"> 68 <div class="main"> 69 <?=$block_center;?> 70 <div id="lenta_desktop"></div> 71 </div> 72 </div> 73 74 <div class="left_column"> -
SYSPATH/classes/Kohana/View.php [ 61 ] » include(arguments)
0string(74) "/home/uznavalka/web/uznavalka.pro/public_html/application/views/v_base.php"56 ob_start(); 57 58 try 59 { 60 // Load the view within the current scope 61 include $kohana_view_filename; 62 } 63 catch (Exception $e) 64 { 65 // Delete the output buffer 66 ob_end_clean(); -
SYSPATH/classes/Kohana/View.php [ 348 ] » Kohana_View::capture(arguments)
0string(74) "/home/uznavalka/web/uznavalka.pro/public_html/application/views/v_base.php"1array(8) ( "title" => string(191) "При нагревании 20г гидрокарбоната натрия выделилось 2.24 л оксида углерода (IV) при н.у. какая - Узнавалка.про" "categories" => object Database_MySQLi_Result(7)
{ protected _internal_row => integer 0 protected _query => string(149) "SELECT `category`.`id` AS `id`, `category`.`name` AS `name`, `category`.`url` AS `url`, `category`.`count` AS `count` FROM `cate …" protected _result => object mysqli_result(5)"user" => object Model_User(34){ public current_field => NULL public field_count => NULL public lengths => NULL public num_rows => NULL public type => NULL }protected _total_rows => integer 31 protected _current_row => integer 0 protected _as_object => string(14) "Model_Category" protected _object_params => NULL }{ protected _reload_on_wakeup => bool FALSE protected _has_one => array(0) protected _belongs_to => array(0) protected _has_many => array(0) protected _load_with => array(0) protected _validation => NULL protected _object => array(10) ( "id" => NULL "provider" => NULL "social_id" => NULL "name" => NULL "email" => NULL "social_page" => NULL "sex" => NULL "birthday" => NULL "avatar" => NULL "token" => NULL ) protected _changed => array(0) protected _original_values => array(0) protected _related => array(0) protected _valid => bool FALSE protected _loaded => bool FALSE protected _saved => bool FALSE protected _sorting => NULL protected _foreign_key_suffix => string(3) "_id" protected _object_name => string(4) "user" protected _object_plural => string(5) "users" protected _table_name => string(5) "users" protected _table_columns => array(10) ( "id" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(2) "id" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 1 "display" => string(2) "11" "comment" => string(0) "" "extra" => string(14) "auto_increment" "key" => string(3) "PRI" "privileges" => string(31) "select,insert,update,references" ) "provider" => array(12) ( "type" => string(6) "string" "column_name" => string(8) "provider" "column_default" => NULL "data_type" => string(4) "enum" "is_nullable" => bool FALSE "ordinal_position" => integer 2 "collation_name" => string(18) "utf8mb3_general_ci" "options" => array(6) ( 0 => string(2) "vk" 1 => string(13) "odnoklassniki" 2 => string(6) "mailru" 3 => string(6) "yandex" 4 => string(6) "google" 5 => string(8) "facebook" ) "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "social_id" => array(12) ( "type" => string(6) "string" "column_name" => string(9) "social_id" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool FALSE "ordinal_position" => integer 3 "character_maximum_length" => string(3) "255" "collation_name" => string(18) "utf8mb3_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "name" => array(12) ( "type" => string(6) "string" "column_name" => string(4) "name" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool FALSE "ordinal_position" => integer 4 "character_maximum_length" => string(3) "255" "collation_name" => string(18) "utf8mb3_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "email" => array(12) ( "type" => string(6) "string" "column_name" => string(5) "email" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool FALSE "ordinal_position" => integer 5 "character_maximum_length" => string(3) "255" "collation_name" => string(18) "utf8mb3_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "social_page" => array(12) ( "type" => string(6) "string" "column_name" => string(11) "social_page" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool FALSE "ordinal_position" => integer 6 "character_maximum_length" => string(3) "255" "collation_name" => string(18) "utf8mb3_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "sex" => array(12) ( "type" => string(6) "string" "column_name" => string(3) "sex" "column_default" => NULL "data_type" => string(4) "enum" "is_nullable" => bool FALSE "ordinal_position" => integer 7 "collation_name" => string(18) "utf8mb3_general_ci" "options" => array(2) ( 0 => string(4) "male" 1 => string(6) "female" ) "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "birthday" => array(10) ( "type" => string(6) "string" "column_name" => string(8) "birthday" "column_default" => NULL "data_type" => string(4) "date" "is_nullable" => bool FALSE "ordinal_position" => integer 8 "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "avatar" => array(12) ( "type" => string(6) "string" "column_name" => string(6) "avatar" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool FALSE "ordinal_position" => integer 9 "character_maximum_length" => string(3) "255" "collation_name" => string(18) "utf8mb3_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "token" => array(12) ( "type" => string(6) "string" "column_name" => string(5) "token" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool FALSE "ordinal_position" => integer 10 "character_maximum_length" => string(2) "32" "collation_name" => string(18) "utf8mb3_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) ) protected _updated_column => NULL protected _created_column => NULL protected _serialize_columns => array(0) protected _primary_key => string(2) "id" protected _primary_key_value => NULL protected _table_names_plural => bool TRUE protected _db => object Database_MySQLi(6)"block_right" => object View(2){ protected _connection_id => string(40) "9fdecc117b583662f3b3d15c4c4ac71fc778e18d" protected _identifier => string(1) "`" public last_query => string(185) "SELECT `category`.`id` AS `id`, `category`.`name` AS `name`, `category`.`url` AS `url`, `category`.`count` AS `count` FROM `cate …" protected _instance => string(7) "default" protected _connection => object mysqli(19)protected _db_group => NULL protected _db_applied => array(0) protected _db_pending => array(0) protected _db_reset => bool TRUE protected _db_builder => NULL protected _with_applied => array(0) protected _cast_data => array(0) protected _errors_filename => string(4) "user" }{ public affected_rows => NULL public client_info => NULL public client_version => NULL public connect_errno => NULL public connect_error => NULL public errno => NULL public error => NULL public error_list => NULL public field_count => NULL public host_info => NULL public info => NULL public insert_id => NULL public server_info => NULL public server_version => NULL public stat => NULL public sqlstate => NULL public protocol_version => NULL public thread_id => NULL public warning_count => NULL }protected _config => array(6) ( "type" => string(6) "MySQLi" "connection" => array(3) ( "hostname" => string(9) "localhost" "database" => string(9) "uznavalka" "persistent" => bool FALSE ) "table_prefix" => string(0) "" "charset" => string(7) "utf8mb4" "caching" => bool FALSE "profiling" => bool FALSE ) }{ protected _file => string(96) "/home/uznavalka/web/uznavalka.pro/public_html/application/views/block/auth/v_right_not_login.php" protected _data => array(2) ( "user" => object Model_User(34)"adapters" => array(4) ( "vk" => object SocialAuther_Adapter_Vk(6){ protected _reload_on_wakeup => bool FALSE protected _has_one => array(0) protected _belongs_to => array(0) protected _has_many => array(0) protected _load_with => array(0) protected _validation => NULL protected _object => array(10) ( "id" => NULL "provider" => NULL "social_id" => NULL "name" => NULL "email" => NULL "social_page" => NULL "sex" => NULL "birthday" => NULL "avatar" => NULL "token" => NULL ) protected _changed => array(0) protected _original_values => array(0) protected _related => array(0) protected _valid => bool FALSE protected _loaded => bool FALSE protected _saved => bool FALSE protected _sorting => NULL protected _foreign_key_suffix => string(3) "_id" protected _object_name => string(4) "user" protected _object_plural => string(5) "users" protected _table_name => string(5) "users" protected _table_columns => array(10) ( "id" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(2) "id" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 1 "display" => string(2) "11" "comment" => string(0) "" "extra" => string(14) "auto_increment" "key" => string(3) "PRI" "privileges" => string(31) "select,insert,update,references" ) "provider" => array(12) ( "type" => string(6) "string" "column_name" => string(8) "provider" "column_default" => NULL "data_type" => string(4) "enum" "is_nullable" => bool FALSE "ordinal_position" => integer 2 "collation_name" => string(18) "utf8mb3_general_ci" "options" => array(6) ( 0 => string(2) "vk" 1 => string(13) "odnoklassniki" 2 => string(6) "mailru" 3 => string(6) "yandex" 4 => string(6) "google" 5 => string(8) "facebook" ) "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "social_id" => array(12) ( "type" => string(6) "string" "column_name" => string(9) "social_id" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool FALSE "ordinal_position" => integer 3 "character_maximum_length" => string(3) "255" "collation_name" => string(18) "utf8mb3_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "name" => array(12) ( "type" => string(6) "string" "column_name" => string(4) "name" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool FALSE "ordinal_position" => integer 4 "character_maximum_length" => string(3) "255" "collation_name" => string(18) "utf8mb3_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "email" => array(12) ( "type" => string(6) "string" "column_name" => string(5) "email" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool FALSE "ordinal_position" => integer 5 "character_maximum_length" => string(3) "255" "collation_name" => string(18) "utf8mb3_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "social_page" => array(12) ( "type" => string(6) "string" "column_name" => string(11) "social_page" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool FALSE "ordinal_position" => integer 6 "character_maximum_length" => string(3) "255" "collation_name" => string(18) "utf8mb3_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "sex" => array(12) ( "type" => string(6) "string" "column_name" => string(3) "sex" "column_default" => NULL "data_type" => string(4) "enum" "is_nullable" => bool FALSE "ordinal_position" => integer 7 "collation_name" => string(18) "utf8mb3_general_ci" "options" => array(2) ( 0 => string(4) "male" 1 => string(6) "female" ) "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "birthday" => array(10) ( "type" => string(6) "string" "column_name" => string(8) "birthday" "column_default" => NULL "data_type" => string(4) "date" "is_nullable" => bool FALSE "ordinal_position" => integer 8 "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "avatar" => array(12) ( "type" => string(6) "string" "column_name" => string(6) "avatar" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool FALSE "ordinal_position" => integer 9 "character_maximum_length" => string(3) "255" "collation_name" => string(18) "utf8mb3_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "token" => array(12) ( "type" => string(6) "string" "column_name" => string(5) "token" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool FALSE "ordinal_position" => integer 10 "character_maximum_length" => string(2) "32" "collation_name" => string(18) "utf8mb3_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) ) protected _updated_column => NULL protected _created_column => NULL protected _serialize_columns => array(0) protected _primary_key => string(2) "id" protected _primary_key_value => NULL protected _table_names_plural => bool TRUE protected _db => object Database_MySQLi(6)"adapters" => array(4) ( "vk" => object SocialAuther_Adapter_Vk(6){ protected _connection_id => string(40) "9fdecc117b583662f3b3d15c4c4ac71fc778e18d" protected _identifier => string(1) "`" public last_query => string(185) "SELECT `category`.`id` AS `id`, `category`.`name` AS `name`, `category`.`url` AS `url`, `category`.`count` AS `count` FROM `cate …" protected _instance => string(7) "default" protected _connection => object mysqli(19)protected _db_group => NULL protected _db_applied => array(0) protected _db_pending => array(0) protected _db_reset => bool TRUE protected _db_builder => NULL protected _with_applied => array(0) protected _cast_data => array(0) protected _errors_filename => string(4) "user" }{ public affected_rows => NULL public client_info => NULL public client_version => NULL public connect_errno => NULL public connect_error => NULL public errno => NULL public error => NULL public error_list => NULL public field_count => NULL public host_info => NULL public info => NULL public insert_id => NULL public server_info => NULL public server_version => NULL public stat => NULL public sqlstate => NULL public protocol_version => NULL public thread_id => NULL public warning_count => NULL }protected _config => array(6) ( "type" => string(6) "MySQLi" "connection" => array(3) ( "hostname" => string(9) "localhost" "database" => string(9) "uznavalka" "persistent" => bool FALSE ) "table_prefix" => string(0) "" "charset" => string(7) "utf8mb4" "caching" => bool FALSE "profiling" => bool FALSE ) }{ protected clientId => string(7) "6460292" protected clientSecret => string(20) "CnDJo6J5YtJOOCXygPrT" protected redirectUri => string(42) "https://uznavalka.pro/soc/auth?provider=vk" protected provider => string(2) "vk" protected socialFieldsMap => array(4) ( "socialId" => string(2) "id" "email" => string(5) "email" "avatar" => string(9) "photo_big" "birthday" => string(5) "bdate" ) protected userInfo => NULL }"odnoklassniki" => object SocialAuther_Adapter_Odnoklassniki(7){ protected publicKey => string(17) "CBAPAHHMEBABABABA" protected clientId => string(10) "1266028032" protected clientSecret => string(24) "A4DAAA9E02CAA1FBC5A6B251" protected redirectUri => string(53) "https://uznavalka.pro/soc/auth?provider=odnoklassniki" protected provider => string(13) "odnoklassniki" protected socialFieldsMap => array(6) ( "socialId" => string(3) "uid" "email" => string(5) "email" "name" => string(4) "name" "avatar" => string(5) "pic_2" "sex" => string(6) "gender" "birthday" => string(8) "birthday" ) protected userInfo => NULL }"mailru" => object SocialAuther_Adapter_Mailru(6){ protected clientId => string(6) "759855" protected clientSecret => string(32) "b5679d595bd5249829e401644c4c7c75" protected redirectUri => string(46) "https://uznavalka.pro/soc/auth?provider=mailru" protected provider => string(6) "mailru" protected socialFieldsMap => array(6) ( "socialId" => string(3) "uid" "email" => string(5) "email" "name" => string(4) "nick" "socialPage" => string(4) "link" "avatar" => string(7) "pic_big" "birthday" => string(8) "birthday" ) protected userInfo => NULL }"facebook" => object SocialAuther_Adapter_Facebook(6){ protected clientId => string(15) "164263907738599" protected clientSecret => string(32) "3573a3b525b6adda44b592d68aef7ce3" protected redirectUri => string(48) "https://uznavalka.pro/soc/auth?provider=facebook" protected provider => string(8) "facebook" protected socialFieldsMap => array(6) ( "socialId" => string(2) "id" "email" => string(5) "email" "name" => string(4) "name" "socialPage" => string(4) "link" "sex" => string(6) "gender" "birthday" => string(8) "birthday" ) protected userInfo => NULL }) ) }{ protected clientId => string(7) "6460292" protected clientSecret => string(20) "CnDJo6J5YtJOOCXygPrT" protected redirectUri => string(42) "https://uznavalka.pro/soc/auth?provider=vk" protected provider => string(2) "vk" protected socialFieldsMap => array(4) ( "socialId" => string(2) "id" "email" => string(5) "email" "avatar" => string(9) "photo_big" "birthday" => string(5) "bdate" ) protected userInfo => NULL }"odnoklassniki" => object SocialAuther_Adapter_Odnoklassniki(7){ protected publicKey => string(17) "CBAPAHHMEBABABABA" protected clientId => string(10) "1266028032" protected clientSecret => string(24) "A4DAAA9E02CAA1FBC5A6B251" protected redirectUri => string(53) "https://uznavalka.pro/soc/auth?provider=odnoklassniki" protected provider => string(13) "odnoklassniki" protected socialFieldsMap => array(6) ( "socialId" => string(3) "uid" "email" => string(5) "email" "name" => string(4) "name" "avatar" => string(5) "pic_2" "sex" => string(6) "gender" "birthday" => string(8) "birthday" ) protected userInfo => NULL }"mailru" => object SocialAuther_Adapter_Mailru(6){ protected clientId => string(6) "759855" protected clientSecret => string(32) "b5679d595bd5249829e401644c4c7c75" protected redirectUri => string(46) "https://uznavalka.pro/soc/auth?provider=mailru" protected provider => string(6) "mailru" protected socialFieldsMap => array(6) ( "socialId" => string(3) "uid" "email" => string(5) "email" "name" => string(4) "nick" "socialPage" => string(4) "link" "avatar" => string(7) "pic_big" "birthday" => string(8) "birthday" ) protected userInfo => NULL }"facebook" => object SocialAuther_Adapter_Facebook(6){ protected clientId => string(15) "164263907738599" protected clientSecret => string(32) "3573a3b525b6adda44b592d68aef7ce3" protected redirectUri => string(48) "https://uznavalka.pro/soc/auth?provider=facebook" protected provider => string(8) "facebook" protected socialFieldsMap => array(6) ( "socialId" => string(2) "id" "email" => string(5) "email" "name" => string(4) "name" "socialPage" => string(4) "link" "sex" => string(6) "gender" "birthday" => string(8) "birthday" ) protected userInfo => NULL }) "styles" => array(1) ( 0 => string(34) "media/css/social-likes_classic.css" ) "scripts" => array(4) ( 0 => string(29) "media/js/jquery-1.11.0.min.js" 1 => string(17) "media/js/my.js?10" 2 => string(28) "media/js/social-likes.min.js" 3 => string(26) "media/js/less-1.7.5.min.js" ) "block_center" => object View(2){ protected _file => string(80) "/home/uznavalka/web/uznavalka.pro/public_html/application/views/index/v_task.php" protected _data => array(10) ( "title" => string(191) "При нагревании 20г гидрокарбоната натрия выделилось 2.24 л оксида углерода (IV) при н.у. какая - Узнавалка.про" "h1" => string(163) "При нагревании 20г гидрокарбоната натрия выделилось 2.24 л оксида углерода (IV) при н.у. какая" "category" => object Model_Category(35)){ protected _has_many => array(2) ( "tasks" => array(4) ( "model" => string(4) "Task" "foreign_key" => string(11) "category_id" "through" => NULL "far_key" => string(7) "task_id" ) "tops" => array(4) ( "model" => string(3) "Top" "foreign_key" => string(11) "category_id" "through" => NULL "far_key" => string(6) "top_id" ) ) protected prefix_url => string(9) "/subject/" protected _reload_on_wakeup => bool FALSE protected _has_one => array(0) protected _belongs_to => array(0) protected _load_with => array(0) protected _validation => NULL protected _object => array(4) ( "id" => string(1) "7" "name" => string(10) "Химия" "url" => string(9) "chemistry" "count" => string(6) "799022" ) protected _changed => array(0) protected _original_values => array(4) ( "id" => string(1) "7" "name" => string(10) "Химия" "url" => string(9) "chemistry" "count" => string(6) "799022" ) protected _related => array(0) protected _valid => bool TRUE protected _loaded => bool TRUE protected _saved => bool FALSE protected _sorting => NULL protected _foreign_key_suffix => string(3) "_id" protected _object_name => string(8) "category" protected _object_plural => string(10) "categories" protected _table_name => string(10) "categories" protected _table_columns => array(4) ( "id" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(2) "id" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 1 "display" => string(2) "11" "comment" => string(0) "" "extra" => string(14) "auto_increment" "key" => string(3) "PRI" "privileges" => string(31) "select,insert,update,references" ) "name" => array(12) ( "type" => string(6) "string" "column_name" => string(4) "name" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool FALSE "ordinal_position" => integer 2 "character_maximum_length" => string(3) "255" "collation_name" => string(18) "utf8mb3_unicode_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "url" => array(12) ( "type" => string(6) "string" "column_name" => string(3) "url" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool FALSE "ordinal_position" => integer 3 "character_maximum_length" => string(3) "255" "collation_name" => string(18) "utf8mb3_unicode_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "count" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(5) "count" "column_default" => string(1) "0" "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 4 "display" => string(2) "11" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) ) protected _updated_column => NULL protected _created_column => NULL protected _serialize_columns => array(0) protected _primary_key => string(2) "id" protected _primary_key_value => string(1) "7" protected _table_names_plural => bool TRUE protected _db => object Database_MySQLi(6)"task" => object Model_Task(34){ protected _connection_id => string(40) "9fdecc117b583662f3b3d15c4c4ac71fc778e18d" protected _identifier => string(1) "`" public last_query => string(185) "SELECT `category`.`id` AS `id`, `category`.`name` AS `name`, `category`.`url` AS `url`, `category`.`count` AS `count` FROM `cate …" protected _instance => string(7) "default" protected _connection => object mysqli(19)protected _db_group => NULL protected _db_applied => array(0) protected _db_pending => array(0) protected _db_reset => bool TRUE protected _db_builder => NULL protected _with_applied => array(0) protected _cast_data => array(0) protected _errors_filename => string(8) "category" }{ public affected_rows => NULL public client_info => NULL public client_version => NULL public connect_errno => NULL public connect_error => NULL public errno => NULL public error => NULL public error_list => NULL public field_count => NULL public host_info => NULL public info => NULL public insert_id => NULL public server_info => NULL public server_version => NULL public stat => NULL public sqlstate => NULL public protocol_version => NULL public thread_id => NULL public warning_count => NULL }protected _config => array(6) ( "type" => string(6) "MySQLi" "connection" => array(3) ( "hostname" => string(9) "localhost" "database" => string(9) "uznavalka" "persistent" => bool FALSE ) "table_prefix" => string(0) "" "charset" => string(7) "utf8mb4" "caching" => bool FALSE "profiling" => bool FALSE ) }{ protected _belongs_to => array(2) ( "category" => array(2) ( "model" => string(8) "Category" "foreign_key" => string(11) "category_id" ) "human" => array(2) ( "model" => string(5) "Human" "foreign_key" => string(8) "human_id" ) ) protected _has_many => array(4) ( "answers" => array(4) ( "model" => string(6) "Answer" "foreign_key" => string(7) "task_id" "through" => NULL "far_key" => string(9) "answer_id" ) "tattaches" => array(4) ( "model" => string(7) "Tattach" "foreign_key" => string(7) "task_id" "through" => NULL "far_key" => string(10) "tattach_id" ) "tops" => array(4) ( "model" => string(3) "Top" "foreign_key" => string(7) "task_id" "through" => NULL "far_key" => string(6) "top_id" ) "ipsviews" => array(4) ( "model" => string(7) "Ipsview" "foreign_key" => string(7) "task_id" "through" => NULL "far_key" => string(10) "ipsview_id" ) ) protected _reload_on_wakeup => bool FALSE protected _has_one => array(0) protected _load_with => array(0) protected _validation => NULL protected _object => array(16) ( "id" => string(7) "5872829" "category_id" => string(1) "7" "text" => string(247) "При нагревании 20г гидрокарбоната натрия выделилось 2.24 л оксида углерода (IV) при н.у. какая массовая доля (в%) гидрокарбоната …" "zn_id" => string(8) "19122218" "date_time" => string(19) "2019-05-08 01:34:19" "views" => integer 13 "human_id" => string(8) "55035162" "ya_spell" => string(1) "0" "category_key" => string(6) "263954" "has_gpt" => string(1) "1" "source" => NULL "source_id" => NULL "text_for_search" => string(247) "При нагревании 20г гидрокарбоната натрия выделилось 2.24 л оксида углерода (IV) при н.у. какая массовая доля (в%) гидрокарбоната …" "related" => NULL "good" => NULL "bad" => NULL ) protected _changed => array(1) ( "views" => string(5) "views" ) protected _original_values => array(16) ( "id" => string(7) "5872829" "category_id" => string(1) "7" "text" => string(247) "При нагревании 20г гидрокарбоната натрия выделилось 2.24 л оксида углерода (IV) при н.у. какая массовая доля (в%) гидрокарбоната …" "zn_id" => string(8) "19122218" "date_time" => string(19) "2019-05-08 01:34:19" "views" => string(2) "12" "human_id" => string(8) "55035162" "ya_spell" => string(1) "0" "category_key" => string(6) "263954" "has_gpt" => string(1) "1" "source" => NULL "source_id" => NULL "text_for_search" => string(247) "При нагревании 20г гидрокарбоната натрия выделилось 2.24 л оксида углерода (IV) при н.у. какая массовая доля (в%) гидрокарбоната …" "related" => NULL "good" => NULL "bad" => NULL ) protected _related => array(1) ( "human" => object Model_Human(34)"pre_task" => object Model_Task(34){ protected _db_group => string(5) "looka" protected _has_many => array(4) ( "universities" => array(5) ( "model" => string(10) "university" "foreign_key" => string(8) "human_id" "through" => string(19) "humans_universities" "far_key" => string(13) "university_id" "_table_columns" => array(5) ( "faculty_id" => NULL "chair_id" => NULL "graduation" => NULL "education_form" => NULL "education_status" => NULL ) ) "humans_universities" => array(4) ( "model" => string(17) "Humans_University" "foreign_key" => string(8) "human_id" "through" => NULL "far_key" => string(20) "humans_university_id" ) "schools" => array(5) ( "model" => string(6) "school" "foreign_key" => string(8) "human_id" "through" => string(14) "humans_schools" "far_key" => string(9) "school_id" "_table_columns" => array(6) ( "year_from" => NULL "year_to" => NULL "year_graduated" => NULL "class" => NULL "speciality" => NULL "type" => NULL ) ) "humans_schools" => array(4) ( "model" => string(13) "Humans_School" "foreign_key" => string(8) "human_id" "through" => NULL "far_key" => string(16) "humans_school_id" ) ) protected _belongs_to => array(4) ( "lastname" => array(2) ( "model" => string(8) "Lastname" "foreign_key" => string(11) "lastname_id" ) "firstname" => array(2) ( "model" => string(9) "Firstname" "foreign_key" => string(12) "firstname_id" ) "country" => array(2) ( "model" => string(7) "Country" "foreign_key" => string(10) "country_id" ) "city" => array(2) ( "model" => string(4) "City" "foreign_key" => string(7) "city_id" ) ) protected _reload_on_wakeup => bool FALSE protected _has_one => array(0) protected _load_with => array(0) protected _validation => NULL protected _object => array(21) ( "id" => string(8) "55035162" "lastname_id" => string(4) "3066" "firstname_id" => string(2) "24" "nickname" => string(0) "" "vk_id" => string(9) "233994881" "bdate" => string(10) "2004-05-21" "info" => NULL "photo" => string(63) "https://pp.userapi.com/c847018/v847018162/133f9/PRq9c6f6qxs.jpg" "city_id" => NULL "country_id" => string(1) "1" "home_town" => string(0) "" "home_phone" => string(0) "" "skype" => NULL "facebook" => NULL "twitter" => NULL "livejournal" => NULL "instagram" => NULL "occupation_type" => NULL "occupation_name" => NULL "rate" => string(2) "12" "count_firstnames_lastnames" => NULL ) protected _changed => array(0) protected _original_values => array(21) ( "id" => string(8) "55035162" "lastname_id" => string(4) "3066" "firstname_id" => string(2) "24" "nickname" => string(0) "" "vk_id" => string(9) "233994881" "bdate" => string(10) "2004-05-21" "info" => NULL "photo" => string(63) "https://pp.userapi.com/c847018/v847018162/133f9/PRq9c6f6qxs.jpg" "city_id" => NULL "country_id" => string(1) "1" "home_town" => string(0) "" "home_phone" => string(0) "" "skype" => NULL "facebook" => NULL "twitter" => NULL "livejournal" => NULL "instagram" => NULL "occupation_type" => NULL "occupation_name" => NULL "rate" => string(2) "12" "count_firstnames_lastnames" => NULL ) protected _related => array(2) ( "lastname" => object Model_Lastname(34)) protected _valid => bool FALSE protected _loaded => bool TRUE protected _saved => bool FALSE protected _sorting => NULL protected _foreign_key_suffix => string(3) "_id" protected _object_name => string(4) "task" protected _object_plural => string(5) "tasks" protected _table_name => string(5) "tasks" protected _table_columns => array(16) ( "id" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(2) "id" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 1 "display" => string(2) "11" "comment" => string(0) "" "extra" => string(14) "auto_increment" "key" => string(3) "PRI" "privileges" => string(31) "select,insert,update,references" ) "category_id" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(11) "category_id" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 2 "display" => string(2) "11" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "text" => array(12) ( "type" => string(6) "string" "character_maximum_length" => string(5) "65535" "column_name" => string(4) "text" "column_default" => NULL "data_type" => string(4) "text" "is_nullable" => bool FALSE "ordinal_position" => integer 3 "collation_name" => string(18) "utf8mb3_unicode_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "zn_id" => array(13) ( "type" => string(3) "int" "min" => string(20) "-9223372036854775808" "max" => string(19) "9223372036854775807" "column_name" => string(5) "zn_id" "column_default" => string(1) "0" "data_type" => string(6) "bigint" "is_nullable" => bool FALSE "ordinal_position" => integer 4 "display" => string(2) "20" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "date_time" => array(10) ( "type" => string(6) "string" "column_name" => string(9) "date_time" "column_default" => string(19) "current_timestamp()" "data_type" => string(8) "datetime" "is_nullable" => bool FALSE "ordinal_position" => integer 5 "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "views" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(5) "views" "column_default" => string(1) "0" "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 6 "display" => string(2) "11" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "human_id" => array(13) ( "type" => string(3) "int" "min" => string(20) "-9223372036854775808" "max" => string(19) "9223372036854775807" "column_name" => string(8) "human_id" "column_default" => NULL "data_type" => string(6) "bigint" "is_nullable" => bool TRUE "ordinal_position" => integer 7 "display" => string(2) "20" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "ya_spell" => array(12) ( "type" => string(6) "string" "column_name" => string(8) "ya_spell" "column_default" => string(1) "0" "data_type" => string(4) "enum" "is_nullable" => bool FALSE "ordinal_position" => integer 8 "collation_name" => string(18) "utf8mb3_unicode_ci" "options" => array(2) ( 0 => string(1) "0" 1 => string(1) "1" ) "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "category_key" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(12) "category_key" "column_default" => string(1) "0" "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 9 "display" => string(2) "11" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "has_gpt" => array(12) ( "type" => string(6) "string" "column_name" => string(7) "has_gpt" "column_default" => NULL "data_type" => string(4) "enum" "is_nullable" => bool TRUE "ordinal_position" => integer 10 "collation_name" => string(18) "utf8mb3_unicode_ci" "options" => array(4) ( 0 => string(1) "0" 1 => string(1) "1" 2 => string(12) "has_attaches" 3 => string(4) "skip" ) "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "source" => array(12) ( "type" => string(6) "string" "column_name" => string(6) "source" "column_default" => NULL "data_type" => string(4) "enum" "is_nullable" => bool TRUE "ordinal_position" => integer 11 "collation_name" => string(18) "utf8mb3_unicode_ci" "options" => array(1) ( 0 => string(12) "vashurok.com" ) "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "source_id" => array(13) ( "type" => string(3) "int" "min" => string(20) "-9223372036854775808" "max" => string(19) "9223372036854775807" "column_name" => string(9) "source_id" "column_default" => NULL "data_type" => string(6) "bigint" "is_nullable" => bool TRUE "ordinal_position" => integer 12 "display" => string(2) "20" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "text_for_search" => array(12) ( "type" => string(6) "string" "character_maximum_length" => string(5) "65535" "column_name" => string(15) "text_for_search" "column_default" => NULL "data_type" => string(4) "text" "is_nullable" => bool TRUE "ordinal_position" => integer 13 "collation_name" => string(18) "utf8mb3_unicode_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "related" => array(12) ( "type" => string(6) "string" "column_name" => string(7) "related" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 14 "character_maximum_length" => string(4) "1023" "collation_name" => string(18) "utf8mb3_unicode_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "good" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(4) "good" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool TRUE "ordinal_position" => integer 15 "display" => string(2) "11" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "bad" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(3) "bad" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool TRUE "ordinal_position" => integer 16 "display" => string(2) "11" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) ) protected _updated_column => NULL protected _created_column => NULL protected _serialize_columns => array(0) protected _primary_key => string(2) "id" protected _primary_key_value => string(7) "5872829" protected _table_names_plural => bool TRUE protected _db => object Database_MySQLi(6){ protected _db_group => string(5) "looka" protected _reload_on_wakeup => bool FALSE protected _has_one => array(0) protected _belongs_to => array(0) protected _has_many => array(0) protected _load_with => array(0) protected _validation => NULL protected _object => array(2) ( "id" => string(4) "3066" "title" => string(18) "Захаренко" ) protected _changed => array(0) protected _original_values => array(2) ( "id" => string(4) "3066" "title" => string(18) "Захаренко" ) protected _related => array(0) protected _valid => bool TRUE protected _loaded => bool TRUE protected _saved => bool FALSE protected _sorting => NULL protected _foreign_key_suffix => string(3) "_id" protected _object_name => string(8) "lastname" protected _object_plural => string(9) "lastnames" protected _table_name => string(9) "lastnames" protected _table_columns => array(2) ( "id" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(2) "id" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 1 "display" => string(2) "11" "comment" => string(0) "" "extra" => string(14) "auto_increment" "key" => string(3) "PRI" "privileges" => string(31) "select,insert,update,references" ) "title" => array(12) ( "type" => string(6) "string" "column_name" => string(5) "title" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool FALSE "ordinal_position" => integer 2 "character_maximum_length" => string(3) "255" "collation_name" => string(18) "utf8mb4_unicode_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) ) protected _updated_column => NULL protected _created_column => NULL protected _serialize_columns => array(0) protected _primary_key => string(2) "id" protected _primary_key_value => string(4) "3066" protected _table_names_plural => bool TRUE protected _db => object Database_MySQLi(6)"firstname" => object Model_Firstname(34){ protected _connection_id => string(40) "d012da34ee02fd2c23a3776760afb1e9d4e5c681" protected _identifier => string(1) "`" public last_query => string(166) "SELECT `finder_lastname`.`id` AS `id`, `finder_lastname`.`title` AS `title` FROM `finder_lastnames` AS `finder_lastname` WHERE ` …" protected _instance => string(5) "looka" protected _connection => object mysqli(19)protected _db_applied => array(0) protected _db_pending => array(0) protected _db_reset => bool TRUE protected _db_builder => NULL protected _with_applied => array(0) protected _cast_data => array(0) protected _errors_filename => string(8) "lastname" }{ public affected_rows => NULL public client_info => NULL public client_version => NULL public connect_errno => NULL public connect_error => NULL public errno => NULL public error => NULL public error_list => NULL public field_count => NULL public host_info => NULL public info => NULL public insert_id => NULL public server_info => NULL public server_version => NULL public stat => NULL public sqlstate => NULL public protocol_version => NULL public thread_id => NULL public warning_count => NULL }protected _config => array(5) ( "type" => string(6) "MySQLi" "connection" => array(3) ( ... ) "table_prefix" => string(7) "finder_" "charset" => string(7) "utf8mb4" "caching" => bool FALSE ) }{ protected _db_group => string(5) "looka" protected _has_many => array(1) ( "humans" => array(4) ( "model" => string(5) "Human" "foreign_key" => string(12) "firstname_id" "through" => NULL "far_key" => string(8) "human_id" ) ) protected _reload_on_wakeup => bool FALSE protected _has_one => array(0) protected _belongs_to => array(0) protected _load_with => array(0) protected _validation => NULL protected _object => array(2) ( "id" => string(2) "24" "title" => string(16) "Виктория" ) protected _changed => array(0) protected _original_values => array(2) ( "id" => string(2) "24" "title" => string(16) "Виктория" ) protected _related => array(0) protected _valid => bool TRUE protected _loaded => bool TRUE protected _saved => bool FALSE protected _sorting => NULL protected _foreign_key_suffix => string(3) "_id" protected _object_name => string(9) "firstname" protected _object_plural => string(10) "firstnames" protected _table_name => string(10) "firstnames" protected _table_columns => array(2) ( "id" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(2) "id" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 1 "display" => string(2) "11" "comment" => string(0) "" "extra" => string(14) "auto_increment" "key" => string(3) "PRI" "privileges" => string(31) "select,insert,update,references" ) "title" => array(12) ( "type" => string(6) "string" "column_name" => string(5) "title" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 2 "character_maximum_length" => string(3) "255" "collation_name" => string(18) "utf8mb4_unicode_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) ) protected _updated_column => NULL protected _created_column => NULL protected _serialize_columns => array(0) protected _primary_key => string(2) "id" protected _primary_key_value => string(2) "24" protected _table_names_plural => bool TRUE protected _db => object Database_MySQLi(6)) protected _valid => bool TRUE protected _loaded => bool TRUE protected _saved => bool FALSE protected _sorting => NULL protected _foreign_key_suffix => string(3) "_id" protected _object_name => string(5) "human" protected _object_plural => string(6) "humans" protected _table_name => string(6) "humans" protected _table_columns => array(21) ( "id" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(2) "id" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 1 "display" => string(2) "11" "comment" => string(0) "" "extra" => string(14) "auto_increment" "key" => string(3) "PRI" "privileges" => string(31) "select,insert,update,references" ) "lastname_id" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(11) "lastname_id" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 2 "display" => string(2) "11" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "firstname_id" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(12) "firstname_id" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 3 "display" => string(2) "11" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "nickname" => array(12) ( "type" => string(6) "string" "column_name" => string(8) "nickname" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 4 "character_maximum_length" => string(3) "255" "collation_name" => string(18) "utf8mb4_unicode_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "vk_id" => array(13) ( "type" => string(3) "int" "min" => string(20) "-9223372036854775808" "max" => string(19) "9223372036854775807" "column_name" => string(5) "vk_id" "column_default" => NULL "data_type" => string(6) "bigint" "is_nullable" => bool TRUE "ordinal_position" => integer 5 "display" => string(2) "20" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "bdate" => array(10) ( "type" => string(6) "string" "column_name" => string(5) "bdate" "column_default" => NULL "data_type" => string(4) "date" "is_nullable" => bool TRUE "ordinal_position" => integer 6 "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "info" => array(12) ( "type" => string(6) "string" "column_name" => string(4) "info" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 7 "character_maximum_length" => string(4) "1023" "collation_name" => string(18) "utf8mb4_unicode_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "photo" => array(12) ( "type" => string(6) "string" "column_name" => string(5) "photo" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 8 "character_maximum_length" => string(3) "255" "collation_name" => string(18) "utf8mb4_unicode_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "city_id" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(7) "city_id" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool TRUE "ordinal_position" => integer 9 "display" => string(2) "11" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "country_id" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(10) "country_id" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool TRUE "ordinal_position" => integer 10 "display" => string(2) "11" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "home_town" => array(12) ( "type" => string(6) "string" "column_name" => string(9) "home_town" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 11 "character_maximum_length" => string(3) "255" "collation_name" => string(18) "utf8mb4_unicode_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "home_phone" => array(12) ( "type" => string(6) "string" "column_name" => string(10) "home_phone" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 12 "character_maximum_length" => string(2) "63" "collation_name" => string(18) "utf8mb4_unicode_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "skype" => array(12) ( "type" => string(6) "string" "column_name" => string(5) "skype" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 13 "character_maximum_length" => string(3) "127" "collation_name" => string(18) "utf8mb4_unicode_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "facebook" => array(12) ( "type" => string(6) "string" "column_name" => string(8) "facebook" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 14 "character_maximum_length" => string(3) "127" "collation_name" => string(18) "utf8mb4_unicode_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "twitter" => array(12) ( "type" => string(6) "string" "column_name" => string(7) "twitter" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 15 "character_maximum_length" => string(3) "127" "collation_name" => string(18) "utf8mb4_unicode_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "livejournal" => array(12) ( "type" => string(6) "string" "column_name" => string(11) "livejournal" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 16 "character_maximum_length" => string(3) "127" "collation_name" => string(18) "utf8mb4_unicode_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "instagram" => array(12) ( "type" => string(6) "string" "column_name" => string(9) "instagram" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 17 "character_maximum_length" => string(3) "127" "collation_name" => string(18) "utf8mb4_unicode_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "occupation_type" => array(12) ( "type" => string(6) "string" "column_name" => string(15) "occupation_type" "column_default" => NULL "data_type" => string(4) "enum" "is_nullable" => bool TRUE "ordinal_position" => integer 18 "collation_name" => string(18) "utf8mb4_unicode_ci" "options" => array(3) ( 0 => string(4) "work" 1 => string(6) "school" 2 => string(10) "university" ) "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "occupation_name" => array(12) ( "type" => string(6) "string" "column_name" => string(15) "occupation_name" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 19 "character_maximum_length" => string(3) "255" "collation_name" => string(18) "utf8mb4_unicode_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "rate" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(4) "rate" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 20 "display" => string(2) "11" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "count_firstnames_lastnames" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(26) "count_firstnames_lastnames" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool TRUE "ordinal_position" => integer 21 "display" => string(2) "11" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) ) protected _updated_column => NULL protected _created_column => NULL protected _serialize_columns => array(0) protected _primary_key => string(2) "id" protected _primary_key_value => string(8) "55035162" protected _table_names_plural => bool TRUE protected _db => object Database_MySQLi(6){ protected _connection_id => string(40) "d012da34ee02fd2c23a3776760afb1e9d4e5c681" protected _identifier => string(1) "`" public last_query => string(166) "SELECT `finder_lastname`.`id` AS `id`, `finder_lastname`.`title` AS `title` FROM `finder_lastnames` AS `finder_lastname` WHERE ` …" protected _instance => string(5) "looka" protected _connection => object mysqli(19)protected _db_applied => array(0) protected _db_pending => array(0) protected _db_reset => bool TRUE protected _db_builder => NULL protected _with_applied => array(0) protected _cast_data => array(0) protected _errors_filename => string(9) "firstname" }{ public affected_rows => NULL public client_info => NULL public client_version => NULL public connect_errno => NULL public connect_error => NULL public errno => NULL public error => NULL public error_list => NULL public field_count => NULL public host_info => NULL public info => NULL public insert_id => NULL public server_info => NULL public server_version => NULL public stat => NULL public sqlstate => NULL public protocol_version => NULL public thread_id => NULL public warning_count => NULL }protected _config => array(5) ( "type" => string(6) "MySQLi" "connection" => array(3) ( ... ) "table_prefix" => string(7) "finder_" "charset" => string(7) "utf8mb4" "caching" => bool FALSE ) }{ protected _connection_id => string(40) "d012da34ee02fd2c23a3776760afb1e9d4e5c681" protected _identifier => string(1) "`" public last_query => string(166) "SELECT `finder_lastname`.`id` AS `id`, `finder_lastname`.`title` AS `title` FROM `finder_lastnames` AS `finder_lastname` WHERE ` …" protected _instance => string(5) "looka" protected _connection => object mysqli(19)protected _db_applied => array(0) protected _db_pending => array(0) protected _db_reset => bool TRUE protected _db_builder => NULL protected _with_applied => array(0) protected _cast_data => array(0) protected _errors_filename => string(5) "human" }{ public affected_rows => NULL public client_info => NULL public client_version => NULL public connect_errno => NULL public connect_error => NULL public errno => NULL public error => NULL public error_list => NULL public field_count => NULL public host_info => NULL public info => NULL public insert_id => NULL public server_info => NULL public server_version => NULL public stat => NULL public sqlstate => NULL public protocol_version => NULL public thread_id => NULL public warning_count => NULL }protected _config => array(5) ( "type" => string(6) "MySQLi" "connection" => array(3) ( "hostname" => string(9) "localhost" "database" => string(5) "looka" "persistent" => bool FALSE ) "table_prefix" => string(7) "finder_" "charset" => string(7) "utf8mb4" "caching" => bool FALSE ) }{ protected _connection_id => string(40) "9fdecc117b583662f3b3d15c4c4ac71fc778e18d" protected _identifier => string(1) "`" public last_query => string(185) "SELECT `category`.`id` AS `id`, `category`.`name` AS `name`, `category`.`url` AS `url`, `category`.`count` AS `count` FROM `cate …" protected _instance => string(7) "default" protected _connection => object mysqli(19)protected _db_group => NULL protected _db_applied => array(0) protected _db_pending => array(0) protected _db_reset => bool TRUE protected _db_builder => NULL protected _with_applied => array(0) protected _cast_data => array(0) protected _errors_filename => string(4) "task" }{ public affected_rows => NULL public client_info => NULL public client_version => NULL public connect_errno => NULL public connect_error => NULL public errno => NULL public error => NULL public error_list => NULL public field_count => NULL public host_info => NULL public info => NULL public insert_id => NULL public server_info => NULL public server_version => NULL public stat => NULL public sqlstate => NULL public protocol_version => NULL public thread_id => NULL public warning_count => NULL }protected _config => array(6) ( "type" => string(6) "MySQLi" "connection" => array(3) ( "hostname" => string(9) "localhost" "database" => string(9) "uznavalka" "persistent" => bool FALSE ) "table_prefix" => string(0) "" "charset" => string(7) "utf8mb4" "caching" => bool FALSE "profiling" => bool FALSE ) }{ protected _belongs_to => array(2) ( "category" => array(2) ( "model" => string(8) "Category" "foreign_key" => string(11) "category_id" ) "human" => array(2) ( "model" => string(5) "Human" "foreign_key" => string(8) "human_id" ) ) protected _has_many => array(4) ( "answers" => array(4) ( "model" => string(6) "Answer" "foreign_key" => string(7) "task_id" "through" => NULL "far_key" => string(9) "answer_id" ) "tattaches" => array(4) ( "model" => string(7) "Tattach" "foreign_key" => string(7) "task_id" "through" => NULL "far_key" => string(10) "tattach_id" ) "tops" => array(4) ( "model" => string(3) "Top" "foreign_key" => string(7) "task_id" "through" => NULL "far_key" => string(6) "top_id" ) "ipsviews" => array(4) ( "model" => string(7) "Ipsview" "foreign_key" => string(7) "task_id" "through" => NULL "far_key" => string(10) "ipsview_id" ) ) protected _reload_on_wakeup => bool FALSE protected _has_one => array(0) protected _load_with => array(0) protected _validation => NULL protected _object => array(16) ( "id" => string(7) "5872828" "category_id" => string(1) "2" "text" => string(294) "Известно, что Василия Тёркина многие солдаты считали своим однополчанином и никогда не расставались с книгой. Чем это можно объя …" "zn_id" => string(8) "11455122" "date_time" => string(19) "2019-05-08 01:34:17" "views" => string(2) "41" "human_id" => string(8) "56821243" "ya_spell" => string(1) "0" "category_key" => string(6) "337325" "has_gpt" => string(1) "1" "source" => NULL "source_id" => NULL "text_for_search" => string(287) "Известно, что Василия Тёркина многие солдаты считали своим однополчанином и никогда не расставались с книгой. Чем это можно объя …" "related" => NULL "good" => NULL "bad" => NULL ) protected _changed => array(0) protected _original_values => array(16) ( "id" => string(7) "5872828" "category_id" => string(1) "2" "text" => string(294) "Известно, что Василия Тёркина многие солдаты считали своим однополчанином и никогда не расставались с книгой. Чем это можно объя …" "zn_id" => string(8) "11455122" "date_time" => string(19) "2019-05-08 01:34:17" "views" => string(2) "41" "human_id" => string(8) "56821243" "ya_spell" => string(1) "0" "category_key" => string(6) "337325" "has_gpt" => string(1) "1" "source" => NULL "source_id" => NULL "text_for_search" => string(287) "Известно, что Василия Тёркина многие солдаты считали своим однополчанином и никогда не расставались с книгой. Чем это можно объя …" "related" => NULL "good" => NULL "bad" => NULL ) protected _related => array(1) ( "category" => object Model_Category(35)"next_task" => object Model_Task(34){ protected _has_many => array(2) ( "tasks" => array(4) ( "model" => string(4) "Task" "foreign_key" => string(11) "category_id" "through" => NULL "far_key" => string(7) "task_id" ) "tops" => array(4) ( "model" => string(3) "Top" "foreign_key" => string(11) "category_id" "through" => NULL "far_key" => string(6) "top_id" ) ) protected prefix_url => string(9) "/subject/" protected _reload_on_wakeup => bool FALSE protected _has_one => array(0) protected _belongs_to => array(0) protected _load_with => array(0) protected _validation => NULL protected _object => array(4) ( "id" => NULL "name" => NULL "url" => NULL "count" => NULL ) protected _changed => array(0) protected _original_values => array(0) protected _related => array(0) protected _valid => bool FALSE protected _loaded => bool FALSE protected _saved => bool FALSE protected _sorting => NULL protected _foreign_key_suffix => string(3) "_id" protected _object_name => string(8) "category" protected _object_plural => string(10) "categories" protected _table_name => string(10) "categories" protected _table_columns => array(4) ( "id" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(2) "id" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 1 "display" => string(2) "11" "comment" => string(0) "" "extra" => string(14) "auto_increment" "key" => string(3) "PRI" "privileges" => string(31) "select,insert,update,references" ) "name" => array(12) ( "type" => string(6) "string" "column_name" => string(4) "name" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool FALSE "ordinal_position" => integer 2 "character_maximum_length" => string(3) "255" "collation_name" => string(18) "utf8mb3_unicode_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "url" => array(12) ( "type" => string(6) "string" "column_name" => string(3) "url" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool FALSE "ordinal_position" => integer 3 "character_maximum_length" => string(3) "255" "collation_name" => string(18) "utf8mb3_unicode_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "count" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(5) "count" "column_default" => string(1) "0" "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 4 "display" => string(2) "11" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) ) protected _updated_column => NULL protected _created_column => NULL protected _serialize_columns => array(0) protected _primary_key => string(2) "id" protected _primary_key_value => NULL protected _table_names_plural => bool TRUE protected _db => object Database_MySQLi(6)) protected _valid => bool TRUE protected _loaded => bool TRUE protected _saved => bool FALSE protected _sorting => NULL protected _foreign_key_suffix => string(3) "_id" protected _object_name => string(4) "task" protected _object_plural => string(5) "tasks" protected _table_name => string(5) "tasks" protected _table_columns => array(16) ( "id" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(2) "id" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 1 "display" => string(2) "11" "comment" => string(0) "" "extra" => string(14) "auto_increment" "key" => string(3) "PRI" "privileges" => string(31) "select,insert,update,references" ) "category_id" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(11) "category_id" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 2 "display" => string(2) "11" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "text" => array(12) ( "type" => string(6) "string" "character_maximum_length" => string(5) "65535" "column_name" => string(4) "text" "column_default" => NULL "data_type" => string(4) "text" "is_nullable" => bool FALSE "ordinal_position" => integer 3 "collation_name" => string(18) "utf8mb3_unicode_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "zn_id" => array(13) ( "type" => string(3) "int" "min" => string(20) "-9223372036854775808" "max" => string(19) "9223372036854775807" "column_name" => string(5) "zn_id" "column_default" => string(1) "0" "data_type" => string(6) "bigint" "is_nullable" => bool FALSE "ordinal_position" => integer 4 "display" => string(2) "20" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "date_time" => array(10) ( "type" => string(6) "string" "column_name" => string(9) "date_time" "column_default" => string(19) "current_timestamp()" "data_type" => string(8) "datetime" "is_nullable" => bool FALSE "ordinal_position" => integer 5 "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "views" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(5) "views" "column_default" => string(1) "0" "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 6 "display" => string(2) "11" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "human_id" => array(13) ( "type" => string(3) "int" "min" => string(20) "-9223372036854775808" "max" => string(19) "9223372036854775807" "column_name" => string(8) "human_id" "column_default" => NULL "data_type" => string(6) "bigint" "is_nullable" => bool TRUE "ordinal_position" => integer 7 "display" => string(2) "20" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "ya_spell" => array(12) ( "type" => string(6) "string" "column_name" => string(8) "ya_spell" "column_default" => string(1) "0" "data_type" => string(4) "enum" "is_nullable" => bool FALSE "ordinal_position" => integer 8 "collation_name" => string(18) "utf8mb3_unicode_ci" "options" => array(2) ( 0 => string(1) "0" 1 => string(1) "1" ) "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "category_key" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(12) "category_key" "column_default" => string(1) "0" "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 9 "display" => string(2) "11" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "has_gpt" => array(12) ( "type" => string(6) "string" "column_name" => string(7) "has_gpt" "column_default" => NULL "data_type" => string(4) "enum" "is_nullable" => bool TRUE "ordinal_position" => integer 10 "collation_name" => string(18) "utf8mb3_unicode_ci" "options" => array(4) ( 0 => string(1) "0" 1 => string(1) "1" 2 => string(12) "has_attaches" 3 => string(4) "skip" ) "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "source" => array(12) ( "type" => string(6) "string" "column_name" => string(6) "source" "column_default" => NULL "data_type" => string(4) "enum" "is_nullable" => bool TRUE "ordinal_position" => integer 11 "collation_name" => string(18) "utf8mb3_unicode_ci" "options" => array(1) ( 0 => string(12) "vashurok.com" ) "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "source_id" => array(13) ( "type" => string(3) "int" "min" => string(20) "-9223372036854775808" "max" => string(19) "9223372036854775807" "column_name" => string(9) "source_id" "column_default" => NULL "data_type" => string(6) "bigint" "is_nullable" => bool TRUE "ordinal_position" => integer 12 "display" => string(2) "20" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "text_for_search" => array(12) ( "type" => string(6) "string" "character_maximum_length" => string(5) "65535" "column_name" => string(15) "text_for_search" "column_default" => NULL "data_type" => string(4) "text" "is_nullable" => bool TRUE "ordinal_position" => integer 13 "collation_name" => string(18) "utf8mb3_unicode_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "related" => array(12) ( "type" => string(6) "string" "column_name" => string(7) "related" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 14 "character_maximum_length" => string(4) "1023" "collation_name" => string(18) "utf8mb3_unicode_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "good" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(4) "good" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool TRUE "ordinal_position" => integer 15 "display" => string(2) "11" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "bad" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(3) "bad" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool TRUE "ordinal_position" => integer 16 "display" => string(2) "11" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) ) protected _updated_column => NULL protected _created_column => NULL protected _serialize_columns => array(0) protected _primary_key => string(2) "id" protected _primary_key_value => string(7) "5872828" protected _table_names_plural => bool TRUE protected _db => object Database_MySQLi(6){ protected _connection_id => string(40) "9fdecc117b583662f3b3d15c4c4ac71fc778e18d" protected _identifier => string(1) "`" public last_query => string(185) "SELECT `category`.`id` AS `id`, `category`.`name` AS `name`, `category`.`url` AS `url`, `category`.`count` AS `count` FROM `cate …" protected _instance => string(7) "default" protected _connection => object mysqli(19)protected _db_group => NULL protected _db_applied => array(1) ( "where" => string(5) "where" ) protected _db_pending => array(1) ( 0 => array(2) ( "name" => string(5) "where" "args" => array(3) ( 0 => string(11) "category.id" 1 => string(1) "=" 2 => string(1) "2" ) ) ) protected _db_reset => bool TRUE protected _db_builder => object Database_Query_Builder_Select(20){ public affected_rows => NULL public client_info => NULL public client_version => NULL public connect_errno => NULL public connect_error => NULL public errno => NULL public error => NULL public error_list => NULL public field_count => NULL public host_info => NULL public info => NULL public insert_id => NULL public server_info => NULL public server_version => NULL public stat => NULL public sqlstate => NULL public protocol_version => NULL public thread_id => NULL public warning_count => NULL }protected _config => array(6) ( "type" => string(6) "MySQLi" "connection" => array(3) ( "hostname" => string(9) "localhost" "database" => string(9) "uznavalka" "persistent" => bool FALSE ) "table_prefix" => string(0) "" "charset" => string(7) "utf8mb4" "caching" => bool FALSE "profiling" => bool FALSE ) }{ protected _use_index => NULL protected _select => array(4) ( 0 => array(2) ( 0 => string(11) "category.id" 1 => string(2) "id" ) 1 => array(2) ( 0 => string(13) "category.name" 1 => string(4) "name" ) 2 => array(2) ( 0 => string(12) "category.url" 1 => string(3) "url" ) 3 => array(2) ( 0 => string(14) "category.count" 1 => string(5) "count" ) ) protected _distinct => bool FALSE protected _from => array(1) ( 0 => array(2) ( 0 => string(10) "categories" 1 => string(8) "category" ) ) protected _join => array(0) protected _group_by => array(0) protected _having => array(0) protected _offset => NULL protected _union => array(0) protected _last_join => NULL protected _where => array(1) ( 0 => array(1) ( "AND" => array(3) ( 0 => string(11) "category.id" 1 => string(1) "=" 2 => string(1) "2" ) ) ) protected _order_by => array(0) protected _limit => integer 1 protected _type => integer 1 protected _force_execute => bool FALSE protected _lifetime => NULL protected _sql => string(185) "SELECT `category`.`id` AS `id`, `category`.`name` AS `name`, `category`.`url` AS `url`, `category`.`count` AS `count` FROM `cate …" protected _parameters => array(0) protected _as_object => bool FALSE protected _object_params => array(0) }protected _with_applied => array(0) protected _cast_data => array(0) protected _errors_filename => string(8) "category" }{ protected _connection_id => string(40) "9fdecc117b583662f3b3d15c4c4ac71fc778e18d" protected _identifier => string(1) "`" public last_query => string(185) "SELECT `category`.`id` AS `id`, `category`.`name` AS `name`, `category`.`url` AS `url`, `category`.`count` AS `count` FROM `cate …" protected _instance => string(7) "default" protected _connection => object mysqli(19)protected _db_group => NULL protected _db_applied => array(0) protected _db_pending => array(0) protected _db_reset => bool TRUE protected _db_builder => NULL protected _with_applied => array(0) protected _cast_data => array(0) protected _errors_filename => string(4) "task" }{ public affected_rows => NULL public client_info => NULL public client_version => NULL public connect_errno => NULL public connect_error => NULL public errno => NULL public error => NULL public error_list => NULL public field_count => NULL public host_info => NULL public info => NULL public insert_id => NULL public server_info => NULL public server_version => NULL public stat => NULL public sqlstate => NULL public protocol_version => NULL public thread_id => NULL public warning_count => NULL }protected _config => array(6) ( "type" => string(6) "MySQLi" "connection" => array(3) ( "hostname" => string(9) "localhost" "database" => string(9) "uznavalka" "persistent" => bool FALSE ) "table_prefix" => string(0) "" "charset" => string(7) "utf8mb4" "caching" => bool FALSE "profiling" => bool FALSE ) }{ protected _belongs_to => array(2) ( "category" => array(2) ( "model" => string(8) "Category" "foreign_key" => string(11) "category_id" ) "human" => array(2) ( "model" => string(5) "Human" "foreign_key" => string(8) "human_id" ) ) protected _has_many => array(4) ( "answers" => array(4) ( "model" => string(6) "Answer" "foreign_key" => string(7) "task_id" "through" => NULL "far_key" => string(9) "answer_id" ) "tattaches" => array(4) ( "model" => string(7) "Tattach" "foreign_key" => string(7) "task_id" "through" => NULL "far_key" => string(10) "tattach_id" ) "tops" => array(4) ( "model" => string(3) "Top" "foreign_key" => string(7) "task_id" "through" => NULL "far_key" => string(6) "top_id" ) "ipsviews" => array(4) ( "model" => string(7) "Ipsview" "foreign_key" => string(7) "task_id" "through" => NULL "far_key" => string(10) "ipsview_id" ) ) protected _reload_on_wakeup => bool FALSE protected _has_one => array(0) protected _load_with => array(0) protected _validation => NULL protected _object => array(16) ( "id" => string(7) "5872831" "category_id" => string(1) "1" "text" => string(312) "При движении по течению реки расстояние в 144км моторная<br /> лодка проходит за 6ч. Какова скорость лодки в стоячей воде,<br /> …" "zn_id" => string(8) "25743100" "date_time" => string(19) "2019-05-08 01:34:22" "views" => string(2) "30" "human_id" => string(8) "26941726" "ya_spell" => string(1) "0" "category_key" => string(7) "1685423" "has_gpt" => string(1) "1" "source" => NULL "source_id" => NULL "text_for_search" => string(294) "При движении по течению реки расстояние в 144км моторная лодка проходит за 6ч. Какова скорость лодки в стоячей воде, если плот т …" "related" => NULL "good" => NULL "bad" => NULL ) protected _changed => array(0) protected _original_values => array(16) ( "id" => string(7) "5872831" "category_id" => string(1) "1" "text" => string(312) "При движении по течению реки расстояние в 144км моторная<br /> лодка проходит за 6ч. Какова скорость лодки в стоячей воде,<br /> …" "zn_id" => string(8) "25743100" "date_time" => string(19) "2019-05-08 01:34:22" "views" => string(2) "30" "human_id" => string(8) "26941726" "ya_spell" => string(1) "0" "category_key" => string(7) "1685423" "has_gpt" => string(1) "1" "source" => NULL "source_id" => NULL "text_for_search" => string(294) "При движении по течению реки расстояние в 144км моторная лодка проходит за 6ч. Какова скорость лодки в стоячей воде, если плот т …" "related" => NULL "good" => NULL "bad" => NULL ) protected _related => array(0) protected _valid => bool TRUE protected _loaded => bool TRUE protected _saved => bool FALSE protected _sorting => NULL protected _foreign_key_suffix => string(3) "_id" protected _object_name => string(4) "task" protected _object_plural => string(5) "tasks" protected _table_name => string(5) "tasks" protected _table_columns => array(16) ( "id" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(2) "id" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 1 "display" => string(2) "11" "comment" => string(0) "" "extra" => string(14) "auto_increment" "key" => string(3) "PRI" "privileges" => string(31) "select,insert,update,references" ) "category_id" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(11) "category_id" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 2 "display" => string(2) "11" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "text" => array(12) ( "type" => string(6) "string" "character_maximum_length" => string(5) "65535" "column_name" => string(4) "text" "column_default" => NULL "data_type" => string(4) "text" "is_nullable" => bool FALSE "ordinal_position" => integer 3 "collation_name" => string(18) "utf8mb3_unicode_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "zn_id" => array(13) ( "type" => string(3) "int" "min" => string(20) "-9223372036854775808" "max" => string(19) "9223372036854775807" "column_name" => string(5) "zn_id" "column_default" => string(1) "0" "data_type" => string(6) "bigint" "is_nullable" => bool FALSE "ordinal_position" => integer 4 "display" => string(2) "20" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "date_time" => array(10) ( "type" => string(6) "string" "column_name" => string(9) "date_time" "column_default" => string(19) "current_timestamp()" "data_type" => string(8) "datetime" "is_nullable" => bool FALSE "ordinal_position" => integer 5 "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "views" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(5) "views" "column_default" => string(1) "0" "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 6 "display" => string(2) "11" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "human_id" => array(13) ( "type" => string(3) "int" "min" => string(20) "-9223372036854775808" "max" => string(19) "9223372036854775807" "column_name" => string(8) "human_id" "column_default" => NULL "data_type" => string(6) "bigint" "is_nullable" => bool TRUE "ordinal_position" => integer 7 "display" => string(2) "20" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "ya_spell" => array(12) ( "type" => string(6) "string" "column_name" => string(8) "ya_spell" "column_default" => string(1) "0" "data_type" => string(4) "enum" "is_nullable" => bool FALSE "ordinal_position" => integer 8 "collation_name" => string(18) "utf8mb3_unicode_ci" "options" => array(2) ( 0 => string(1) "0" 1 => string(1) "1" ) "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "category_key" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(12) "category_key" "column_default" => string(1) "0" "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 9 "display" => string(2) "11" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "has_gpt" => array(12) ( "type" => string(6) "string" "column_name" => string(7) "has_gpt" "column_default" => NULL "data_type" => string(4) "enum" "is_nullable" => bool TRUE "ordinal_position" => integer 10 "collation_name" => string(18) "utf8mb3_unicode_ci" "options" => array(4) ( 0 => string(1) "0" 1 => string(1) "1" 2 => string(12) "has_attaches" 3 => string(4) "skip" ) "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "source" => array(12) ( "type" => string(6) "string" "column_name" => string(6) "source" "column_default" => NULL "data_type" => string(4) "enum" "is_nullable" => bool TRUE "ordinal_position" => integer 11 "collation_name" => string(18) "utf8mb3_unicode_ci" "options" => array(1) ( 0 => string(12) "vashurok.com" ) "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "source_id" => array(13) ( "type" => string(3) "int" "min" => string(20) "-9223372036854775808" "max" => string(19) "9223372036854775807" "column_name" => string(9) "source_id" "column_default" => NULL "data_type" => string(6) "bigint" "is_nullable" => bool TRUE "ordinal_position" => integer 12 "display" => string(2) "20" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "text_for_search" => array(12) ( "type" => string(6) "string" "character_maximum_length" => string(5) "65535" "column_name" => string(15) "text_for_search" "column_default" => NULL "data_type" => string(4) "text" "is_nullable" => bool TRUE "ordinal_position" => integer 13 "collation_name" => string(18) "utf8mb3_unicode_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "related" => array(12) ( "type" => string(6) "string" "column_name" => string(7) "related" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 14 "character_maximum_length" => string(4) "1023" "collation_name" => string(18) "utf8mb3_unicode_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "good" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(4) "good" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool TRUE "ordinal_position" => integer 15 "display" => string(2) "11" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "bad" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(3) "bad" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool TRUE "ordinal_position" => integer 16 "display" => string(2) "11" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) ) protected _updated_column => NULL protected _created_column => NULL protected _serialize_columns => array(0) protected _primary_key => string(2) "id" protected _primary_key_value => string(7) "5872831" protected _table_names_plural => bool TRUE protected _db => object Database_MySQLi(6)"tasks" => object Database_MySQLi_Result(7){ protected _connection_id => string(40) "9fdecc117b583662f3b3d15c4c4ac71fc778e18d" protected _identifier => string(1) "`" public last_query => string(185) "SELECT `category`.`id` AS `id`, `category`.`name` AS `name`, `category`.`url` AS `url`, `category`.`count` AS `count` FROM `cate …" protected _instance => string(7) "default" protected _connection => object mysqli(19)protected _db_group => NULL protected _db_applied => array(0) protected _db_pending => array(0) protected _db_reset => bool TRUE protected _db_builder => NULL protected _with_applied => array(0) protected _cast_data => array(0) protected _errors_filename => string(4) "task" }{ public affected_rows => NULL public client_info => NULL public client_version => NULL public connect_errno => NULL public connect_error => NULL public errno => NULL public error => NULL public error_list => NULL public field_count => NULL public host_info => NULL public info => NULL public insert_id => NULL public server_info => NULL public server_version => NULL public stat => NULL public sqlstate => NULL public protocol_version => NULL public thread_id => NULL public warning_count => NULL }protected _config => array(6) ( "type" => string(6) "MySQLi" "connection" => array(3) ( "hostname" => string(9) "localhost" "database" => string(9) "uznavalka" "persistent" => bool FALSE ) "table_prefix" => string(0) "" "charset" => string(7) "utf8mb4" "caching" => bool FALSE "profiling" => bool FALSE ) }{ protected _internal_row => integer 2 protected _query => string(621) "SELECT `task`.`id` AS `id`, `task`.`category_id` AS `category_id`, `task`.`text` AS `text`, `task`.`zn_id` AS `zn_id`, `task`.`d …" protected _result => object mysqli_result(5)"answer" => object Model_Answer(34){ public current_field => NULL public field_count => NULL public lengths => NULL public num_rows => NULL public type => NULL }protected _total_rows => integer 10 protected _current_row => integer 1 protected _as_object => string(10) "Model_Task" protected _object_params => NULL }{ protected _belongs_to => array(2) ( "human" => array(2) ( "model" => string(5) "Human" "foreign_key" => string(8) "human_id" ) "task" => array(2) ( "model" => string(4) "Task" "foreign_key" => string(7) "task_id" ) ) protected _has_many => array(1) ( "aattaches" => array(4) ( "model" => string(7) "Aattach" "foreign_key" => string(9) "answer_id" "through" => NULL "far_key" => string(10) "aattach_id" ) ) protected _reload_on_wakeup => bool FALSE protected _has_one => array(0) protected _load_with => array(0) protected _validation => NULL protected _object => array(11) ( "id" => string(7) "7099103" "task_id" => string(7) "5872829" "text" => string(148) "<div class="sg-text js-answer-content brn-rich-content" data-test="answer-content"> Х-2,24<br />168-22,4<br />х=16,8г<br />16,8/ …" "human_id" => string(8) "22972330" "type" => NULL "datetime" => NULL "gptemail_id" => string(1) "0" "good" => NULL "bad" => NULL "public" => string(1) "1" "provider" => NULL ) protected _changed => array(0) protected _original_values => array(11) ( "id" => string(7) "7099103" "task_id" => string(7) "5872829" "text" => string(148) "<div class="sg-text js-answer-content brn-rich-content" data-test="answer-content"> Х-2,24<br />168-22,4<br />х=16,8г<br />16,8/ …" "human_id" => string(8) "22972330" "type" => NULL "datetime" => NULL "gptemail_id" => string(1) "0" "good" => NULL "bad" => NULL "public" => string(1) "1" "provider" => NULL ) protected _related => array(0) protected _valid => bool TRUE protected _loaded => bool TRUE protected _saved => bool FALSE protected _sorting => NULL protected _foreign_key_suffix => string(3) "_id" protected _object_name => string(6) "answer" protected _object_plural => string(7) "answers" protected _table_name => string(7) "answers" protected _table_columns => array(11) ( "id" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(2) "id" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 1 "display" => string(2) "11" "comment" => string(0) "" "extra" => string(14) "auto_increment" "key" => string(3) "PRI" "privileges" => string(31) "select,insert,update,references" ) "task_id" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(7) "task_id" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 2 "display" => string(2) "11" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "text" => array(12) ( "type" => string(6) "string" "character_maximum_length" => string(5) "65535" "column_name" => string(4) "text" "column_default" => NULL "data_type" => string(4) "text" "is_nullable" => bool FALSE "ordinal_position" => integer 3 "collation_name" => string(18) "utf8mb3_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "human_id" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(8) "human_id" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool TRUE "ordinal_position" => integer 4 "display" => string(2) "11" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "type" => array(12) ( "type" => string(6) "string" "column_name" => string(4) "type" "column_default" => NULL "data_type" => string(4) "enum" "is_nullable" => bool TRUE "ordinal_position" => integer 5 "collation_name" => string(18) "utf8mb3_general_ci" "options" => array(1) ( 0 => string(3) "gpt" ) "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "datetime" => array(10) ( "type" => string(6) "string" "column_name" => string(8) "datetime" "column_default" => NULL "data_type" => string(8) "datetime" "is_nullable" => bool TRUE "ordinal_position" => integer 6 "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "gptemail_id" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(11) "gptemail_id" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool TRUE "ordinal_position" => integer 7 "display" => string(2) "11" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "good" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(4) "good" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool TRUE "ordinal_position" => integer 8 "display" => string(2) "11" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "bad" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(3) "bad" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool TRUE "ordinal_position" => integer 9 "display" => string(2) "11" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "public" => array(12) ( "type" => string(6) "string" "column_name" => string(6) "public" "column_default" => string(1) "1" "data_type" => string(4) "enum" "is_nullable" => bool FALSE "ordinal_position" => integer 10 "collation_name" => string(18) "utf8mb3_general_ci" "options" => array(4) ( 0 => string(1) "0" 1 => string(1) "1" 2 => string(1) "2" 3 => string(0) "" ) "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "provider" => array(12) ( "type" => string(6) "string" "column_name" => string(8) "provider" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 11 "character_maximum_length" => string(3) "255" "collation_name" => string(18) "utf8mb3_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) ) protected _updated_column => NULL protected _created_column => NULL protected _serialize_columns => array(0) protected _primary_key => string(2) "id" protected _primary_key_value => string(7) "7099103" protected _table_names_plural => bool TRUE protected _db => object Database_MySQLi(6)"related_tasks" => array(0) "top_yesterday_tasks" => array(10) ( 0 => object Model_Task(34){ protected _connection_id => string(40) "9fdecc117b583662f3b3d15c4c4ac71fc778e18d" protected _identifier => string(1) "`" public last_query => string(185) "SELECT `category`.`id` AS `id`, `category`.`name` AS `name`, `category`.`url` AS `url`, `category`.`count` AS `count` FROM `cate …" protected _instance => string(7) "default" protected _connection => object mysqli(19)protected _db_group => NULL protected _db_applied => array(0) protected _db_pending => array(0) protected _db_reset => bool TRUE protected _db_builder => NULL protected _with_applied => array(0) protected _cast_data => array(0) protected _errors_filename => string(6) "answer" }{ public affected_rows => NULL public client_info => NULL public client_version => NULL public connect_errno => NULL public connect_error => NULL public errno => NULL public error => NULL public error_list => NULL public field_count => NULL public host_info => NULL public info => NULL public insert_id => NULL public server_info => NULL public server_version => NULL public stat => NULL public sqlstate => NULL public protocol_version => NULL public thread_id => NULL public warning_count => NULL }protected _config => array(6) ( "type" => string(6) "MySQLi" "connection" => array(3) ( "hostname" => string(9) "localhost" "database" => string(9) "uznavalka" "persistent" => bool FALSE ) "table_prefix" => string(0) "" "charset" => string(7) "utf8mb4" "caching" => bool FALSE "profiling" => bool FALSE ) }{ protected _belongs_to => array(2) ( "category" => array(2) ( "model" => string(8) "Category" "foreign_key" => string(11) "category_id" ) "human" => array(2) ( "model" => string(5) "Human" "foreign_key" => string(8) "human_id" ) ) protected _has_many => array(4) ( "answers" => array(4) ( "model" => string(6) "Answer" "foreign_key" => string(7) "task_id" "through" => NULL "far_key" => string(9) "answer_id" ) "tattaches" => array(4) ( "model" => string(7) "Tattach" "foreign_key" => string(7) "task_id" "through" => NULL "far_key" => string(10) "tattach_id" ) "tops" => array(4) ( "model" => string(3) "Top" "foreign_key" => string(7) "task_id" "through" => NULL "far_key" => string(6) "top_id" ) "ipsviews" => array(4) ( "model" => string(7) "Ipsview" "foreign_key" => string(7) "task_id" "through" => NULL "far_key" => string(10) "ipsview_id" ) ) protected _reload_on_wakeup => bool FALSE protected _has_one => array(0) protected _load_with => array(0) protected _validation => NULL protected _object => array(16) ( "id" => string(8) "14116615" "category_id" => string(1) "7" "text" => string(2681) "<span class="sg-text sg-text--large sg-text--bold sg-text--break-words brn-qpage-next-question-box-content__primary"> 1. Ра …" "zn_id" => string(8) "36460897" "date_time" => string(19) "2023-07-07 05:27:36" "views" => string(2) "42" "human_id" => string(7) "3202407" "ya_spell" => string(1) "0" "category_key" => string(6) "667139" "has_gpt" => string(1) "1" "source" => NULL "source_id" => NULL "text_for_search" => string(2340) "1. Разделите предложенные вещества: Al, H 2 , CaO, N 2 , C, HCl , Cu, Н 2 O, Ag,&nb …" "related" => string(107) "["13507366","11115815","1673274","13382253","11147251","13877146","13686780","11620305","755942","1025905"]" "good" => NULL "bad" => NULL ) protected _changed => array(0) protected _original_values => array(16) ( "id" => string(8) "14116615" "category_id" => string(1) "7" "text" => string(2681) "<span class="sg-text sg-text--large sg-text--bold sg-text--break-words brn-qpage-next-question-box-content__primary"> 1. Ра …" "zn_id" => string(8) "36460897" "date_time" => string(19) "2023-07-07 05:27:36" "views" => string(2) "42" "human_id" => string(7) "3202407" "ya_spell" => string(1) "0" "category_key" => string(6) "667139" "has_gpt" => string(1) "1" "source" => NULL "source_id" => NULL "text_for_search" => string(2340) "1. Разделите предложенные вещества: Al, H 2 , CaO, N 2 , C, HCl , Cu, Н 2 O, Ag,&nb …" "related" => string(107) "["13507366","11115815","1673274","13382253","11147251","13877146","13686780","11620305","755942","1025905"]" "good" => NULL "bad" => NULL ) protected _related => array(2) ( "human" => object Model_Human(34)1 => object Model_Task(34){ protected _db_group => string(5) "looka" protected _has_many => array(4) ( "universities" => array(5) ( "model" => string(10) "university" "foreign_key" => string(8) "human_id" "through" => string(19) "humans_universities" "far_key" => string(13) "university_id" "_table_columns" => array(5) ( "faculty_id" => NULL "chair_id" => NULL "graduation" => NULL "education_form" => NULL "education_status" => NULL ) ) "humans_universities" => array(4) ( "model" => string(17) "Humans_University" "foreign_key" => string(8) "human_id" "through" => NULL "far_key" => string(20) "humans_university_id" ) "schools" => array(5) ( "model" => string(6) "school" "foreign_key" => string(8) "human_id" "through" => string(14) "humans_schools" "far_key" => string(9) "school_id" "_table_columns" => array(6) ( "year_from" => NULL "year_to" => NULL "year_graduated" => NULL "class" => NULL "speciality" => NULL "type" => NULL ) ) "humans_schools" => array(4) ( "model" => string(13) "Humans_School" "foreign_key" => string(8) "human_id" "through" => NULL "far_key" => string(16) "humans_school_id" ) ) protected _belongs_to => array(4) ( "lastname" => array(2) ( "model" => string(8) "Lastname" "foreign_key" => string(11) "lastname_id" ) "firstname" => array(2) ( "model" => string(9) "Firstname" "foreign_key" => string(12) "firstname_id" ) "country" => array(2) ( "model" => string(7) "Country" "foreign_key" => string(10) "country_id" ) "city" => array(2) ( "model" => string(4) "City" "foreign_key" => string(7) "city_id" ) ) protected _reload_on_wakeup => bool FALSE protected _has_one => array(0) protected _load_with => array(0) protected _validation => NULL protected _object => array(21) ( "id" => string(7) "3202407" "lastname_id" => string(4) "6171" "firstname_id" => string(3) "280" "nickname" => string(0) "" "vk_id" => string(9) "298678624" "bdate" => string(10) "2004-01-20" "info" => NULL "photo" => string(67) "https://sun9-7.userapi.com/c840733/v840733432/678c8/DDRBrk4tvY0.jpg" "city_id" => string(7) "1937764" "country_id" => string(3) "209" "home_town" => NULL "home_phone" => NULL "skype" => NULL "facebook" => NULL "twitter" => NULL "livejournal" => NULL "instagram" => NULL "occupation_type" => string(4) "work" "occupation_name" => string(7) "YouTube" "rate" => string(2) "12" "count_firstnames_lastnames" => NULL ) protected _changed => array(0) protected _original_values => array(21) ( "id" => string(7) "3202407" "lastname_id" => string(4) "6171" "firstname_id" => string(3) "280" "nickname" => string(0) "" "vk_id" => string(9) "298678624" "bdate" => string(10) "2004-01-20" "info" => NULL "photo" => string(67) "https://sun9-7.userapi.com/c840733/v840733432/678c8/DDRBrk4tvY0.jpg" "city_id" => string(7) "1937764" "country_id" => string(3) "209" "home_town" => NULL "home_phone" => NULL "skype" => NULL "facebook" => NULL "twitter" => NULL "livejournal" => NULL "instagram" => NULL "occupation_type" => string(4) "work" "occupation_name" => string(7) "YouTube" "rate" => string(2) "12" "count_firstnames_lastnames" => NULL ) protected _related => array(2) ( "lastname" => object Model_Lastname(34)"category" => object Model_Category(35){ protected _db_group => string(5) "looka" protected _reload_on_wakeup => bool FALSE protected _has_one => array(0) protected _belongs_to => array(0) protected _has_many => array(0) protected _load_with => array(0) protected _validation => NULL protected _object => array(2) ( "id" => string(4) "6171" "title" => string(20) "Николайчук" ) protected _changed => array(0) protected _original_values => array(2) ( "id" => string(4) "6171" "title" => string(20) "Николайчук" ) protected _related => array(0) protected _valid => bool TRUE protected _loaded => bool TRUE protected _saved => bool FALSE protected _sorting => NULL protected _foreign_key_suffix => string(3) "_id" protected _object_name => string(8) "lastname" protected _object_plural => string(9) "lastnames" protected _table_name => string(9) "lastnames" protected _table_columns => array(2) ( "id" => array(13) ( ... ) "title" => array(12) ( ... ) ) protected _updated_column => NULL protected _created_column => NULL protected _serialize_columns => array(0) protected _primary_key => string(2) "id" protected _primary_key_value => string(4) "6171" protected _table_names_plural => bool TRUE protected _db => object Database_MySQLi(6)"firstname" => object Model_Firstname(34){ protected _connection_id => string(40) "d012da34ee02fd2c23a3776760afb1e9d4e5c681" protected _identifier => string(1) "`" public last_query => string(166) "SELECT `finder_lastname`.`id` AS `id`, `finder_lastname`.`title` AS `title` FROM `finder_lastnames` AS `finder_lastname` WHERE ` …" protected _instance => string(5) "looka" protected _connection => object mysqli(19) { ... } protected _config => array(5) ( ... ) }protected _db_applied => array(0) protected _db_pending => array(0) protected _db_reset => bool TRUE protected _db_builder => NULL protected _with_applied => array(0) protected _cast_data => array(0) protected _errors_filename => string(8) "lastname" }{ protected _db_group => string(5) "looka" protected _has_many => array(1) ( "humans" => array(4) ( ... ) ) protected _reload_on_wakeup => bool FALSE protected _has_one => array(0) protected _belongs_to => array(0) protected _load_with => array(0) protected _validation => NULL protected _object => array(2) ( "id" => string(3) "280" "title" => string(8) "Ваня" ) protected _changed => array(0) protected _original_values => array(2) ( "id" => string(3) "280" "title" => string(8) "Ваня" ) protected _related => array(0) protected _valid => bool TRUE protected _loaded => bool TRUE protected _saved => bool FALSE protected _sorting => NULL protected _foreign_key_suffix => string(3) "_id" protected _object_name => string(9) "firstname" protected _object_plural => string(10) "firstnames" protected _table_name => string(10) "firstnames" protected _table_columns => array(2) ( "id" => array(13) ( ... ) "title" => array(12) ( ... ) ) protected _updated_column => NULL protected _created_column => NULL protected _serialize_columns => array(0) protected _primary_key => string(2) "id" protected _primary_key_value => string(3) "280" protected _table_names_plural => bool TRUE protected _db => object Database_MySQLi(6)) protected _valid => bool TRUE protected _loaded => bool TRUE protected _saved => bool FALSE protected _sorting => NULL protected _foreign_key_suffix => string(3) "_id" protected _object_name => string(5) "human" protected _object_plural => string(6) "humans" protected _table_name => string(6) "humans" protected _table_columns => array(21) ( "id" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(2) "id" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 1 "display" => string(2) "11" "comment" => string(0) "" "extra" => string(14) "auto_increment" "key" => string(3) "PRI" "privileges" => string(31) "select,insert,update,references" ) "lastname_id" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(11) "lastname_id" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 2 "display" => string(2) "11" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "firstname_id" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(12) "firstname_id" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 3 "display" => string(2) "11" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "nickname" => array(12) ( "type" => string(6) "string" "column_name" => string(8) "nickname" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 4 "character_maximum_length" => string(3) "255" "collation_name" => string(18) "utf8mb4_unicode_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "vk_id" => array(13) ( "type" => string(3) "int" "min" => string(20) "-9223372036854775808" "max" => string(19) "9223372036854775807" "column_name" => string(5) "vk_id" "column_default" => NULL "data_type" => string(6) "bigint" "is_nullable" => bool TRUE "ordinal_position" => integer 5 "display" => string(2) "20" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "bdate" => array(10) ( "type" => string(6) "string" "column_name" => string(5) "bdate" "column_default" => NULL "data_type" => string(4) "date" "is_nullable" => bool TRUE "ordinal_position" => integer 6 "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "info" => array(12) ( "type" => string(6) "string" "column_name" => string(4) "info" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 7 "character_maximum_length" => string(4) "1023" "collation_name" => string(18) "utf8mb4_unicode_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "photo" => array(12) ( "type" => string(6) "string" "column_name" => string(5) "photo" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 8 "character_maximum_length" => string(3) "255" "collation_name" => string(18) "utf8mb4_unicode_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "city_id" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(7) "city_id" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool TRUE "ordinal_position" => integer 9 "display" => string(2) "11" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "country_id" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(10) "country_id" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool TRUE "ordinal_position" => integer 10 "display" => string(2) "11" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "home_town" => array(12) ( "type" => string(6) "string" "column_name" => string(9) "home_town" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 11 "character_maximum_length" => string(3) "255" "collation_name" => string(18) "utf8mb4_unicode_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "home_phone" => array(12) ( "type" => string(6) "string" "column_name" => string(10) "home_phone" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 12 "character_maximum_length" => string(2) "63" "collation_name" => string(18) "utf8mb4_unicode_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "skype" => array(12) ( "type" => string(6) "string" "column_name" => string(5) "skype" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 13 "character_maximum_length" => string(3) "127" "collation_name" => string(18) "utf8mb4_unicode_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "facebook" => array(12) ( "type" => string(6) "string" "column_name" => string(8) "facebook" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 14 "character_maximum_length" => string(3) "127" "collation_name" => string(18) "utf8mb4_unicode_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "twitter" => array(12) ( "type" => string(6) "string" "column_name" => string(7) "twitter" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 15 "character_maximum_length" => string(3) "127" "collation_name" => string(18) "utf8mb4_unicode_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "livejournal" => array(12) ( "type" => string(6) "string" "column_name" => string(11) "livejournal" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 16 "character_maximum_length" => string(3) "127" "collation_name" => string(18) "utf8mb4_unicode_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "instagram" => array(12) ( "type" => string(6) "string" "column_name" => string(9) "instagram" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 17 "character_maximum_length" => string(3) "127" "collation_name" => string(18) "utf8mb4_unicode_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "occupation_type" => array(12) ( "type" => string(6) "string" "column_name" => string(15) "occupation_type" "column_default" => NULL "data_type" => string(4) "enum" "is_nullable" => bool TRUE "ordinal_position" => integer 18 "collation_name" => string(18) "utf8mb4_unicode_ci" "options" => array(3) ( 0 => string(4) "work" 1 => string(6) "school" 2 => string(10) "university" ) "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "occupation_name" => array(12) ( "type" => string(6) "string" "column_name" => string(15) "occupation_name" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 19 "character_maximum_length" => string(3) "255" "collation_name" => string(18) "utf8mb4_unicode_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "rate" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(4) "rate" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 20 "display" => string(2) "11" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "count_firstnames_lastnames" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(26) "count_firstnames_lastnames" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool TRUE "ordinal_position" => integer 21 "display" => string(2) "11" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) ) protected _updated_column => NULL protected _created_column => NULL protected _serialize_columns => array(0) protected _primary_key => string(2) "id" protected _primary_key_value => string(7) "3202407" protected _table_names_plural => bool TRUE protected _db => object Database_MySQLi(6){ protected _connection_id => string(40) "d012da34ee02fd2c23a3776760afb1e9d4e5c681" protected _identifier => string(1) "`" public last_query => string(166) "SELECT `finder_lastname`.`id` AS `id`, `finder_lastname`.`title` AS `title` FROM `finder_lastnames` AS `finder_lastname` WHERE ` …" protected _instance => string(5) "looka" protected _connection => object mysqli(19) { ... } protected _config => array(5) ( ... ) }protected _db_applied => array(0) protected _db_pending => array(0) protected _db_reset => bool TRUE protected _db_builder => NULL protected _with_applied => array(0) protected _cast_data => array(0) protected _errors_filename => string(9) "firstname" }{ protected _connection_id => string(40) "d012da34ee02fd2c23a3776760afb1e9d4e5c681" protected _identifier => string(1) "`" public last_query => string(166) "SELECT `finder_lastname`.`id` AS `id`, `finder_lastname`.`title` AS `title` FROM `finder_lastnames` AS `finder_lastname` WHERE ` …" protected _instance => string(5) "looka" protected _connection => object mysqli(19)protected _db_applied => array(0) protected _db_pending => array(0) protected _db_reset => bool TRUE protected _db_builder => NULL protected _with_applied => array(0) protected _cast_data => array(0) protected _errors_filename => string(5) "human" }{ public affected_rows => NULL public client_info => NULL public client_version => NULL public connect_errno => NULL public connect_error => NULL public errno => NULL public error => NULL public error_list => NULL public field_count => NULL public host_info => NULL public info => NULL public insert_id => NULL public server_info => NULL public server_version => NULL public stat => NULL public sqlstate => NULL public protocol_version => NULL public thread_id => NULL public warning_count => NULL }protected _config => array(5) ( "type" => string(6) "MySQLi" "connection" => array(3) ( "hostname" => string(9) "localhost" "database" => string(5) "looka" "persistent" => bool FALSE ) "table_prefix" => string(7) "finder_" "charset" => string(7) "utf8mb4" "caching" => bool FALSE ) }{ protected _has_many => array(2) ( "tasks" => array(4) ( "model" => string(4) "Task" "foreign_key" => string(11) "category_id" "through" => NULL "far_key" => string(7) "task_id" ) "tops" => array(4) ( "model" => string(3) "Top" "foreign_key" => string(11) "category_id" "through" => NULL "far_key" => string(6) "top_id" ) ) protected prefix_url => string(9) "/subject/" protected _reload_on_wakeup => bool FALSE protected _has_one => array(0) protected _belongs_to => array(0) protected _load_with => array(0) protected _validation => NULL protected _object => array(4) ( "id" => string(1) "7" "name" => string(10) "Химия" "url" => string(9) "chemistry" "count" => string(6) "799022" ) protected _changed => array(0) protected _original_values => array(4) ( "id" => string(1) "7" "name" => string(10) "Химия" "url" => string(9) "chemistry" "count" => string(6) "799022" ) protected _related => array(0) protected _valid => bool TRUE protected _loaded => bool TRUE protected _saved => bool FALSE protected _sorting => NULL protected _foreign_key_suffix => string(3) "_id" protected _object_name => string(8) "category" protected _object_plural => string(10) "categories" protected _table_name => string(10) "categories" protected _table_columns => array(4) ( "id" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(2) "id" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 1 "display" => string(2) "11" "comment" => string(0) "" "extra" => string(14) "auto_increment" "key" => string(3) "PRI" "privileges" => string(31) "select,insert,update,references" ) "name" => array(12) ( "type" => string(6) "string" "column_name" => string(4) "name" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool FALSE "ordinal_position" => integer 2 "character_maximum_length" => string(3) "255" "collation_name" => string(18) "utf8mb3_unicode_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "url" => array(12) ( "type" => string(6) "string" "column_name" => string(3) "url" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool FALSE "ordinal_position" => integer 3 "character_maximum_length" => string(3) "255" "collation_name" => string(18) "utf8mb3_unicode_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "count" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(5) "count" "column_default" => string(1) "0" "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 4 "display" => string(2) "11" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) ) protected _updated_column => NULL protected _created_column => NULL protected _serialize_columns => array(0) protected _primary_key => string(2) "id" protected _primary_key_value => string(1) "7" protected _table_names_plural => bool TRUE protected _db => object Database_MySQLi(6)) protected _valid => bool TRUE protected _loaded => bool TRUE protected _saved => bool FALSE protected _sorting => NULL protected _foreign_key_suffix => string(3) "_id" protected _object_name => string(4) "task" protected _object_plural => string(5) "tasks" protected _table_name => string(5) "tasks" protected _table_columns => array(16) ( "id" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(2) "id" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 1 "display" => string(2) "11" "comment" => string(0) "" "extra" => string(14) "auto_increment" "key" => string(3) "PRI" "privileges" => string(31) "select,insert,update,references" ) "category_id" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(11) "category_id" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 2 "display" => string(2) "11" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "text" => array(12) ( "type" => string(6) "string" "character_maximum_length" => string(5) "65535" "column_name" => string(4) "text" "column_default" => NULL "data_type" => string(4) "text" "is_nullable" => bool FALSE "ordinal_position" => integer 3 "collation_name" => string(18) "utf8mb3_unicode_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "zn_id" => array(13) ( "type" => string(3) "int" "min" => string(20) "-9223372036854775808" "max" => string(19) "9223372036854775807" "column_name" => string(5) "zn_id" "column_default" => string(1) "0" "data_type" => string(6) "bigint" "is_nullable" => bool FALSE "ordinal_position" => integer 4 "display" => string(2) "20" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "date_time" => array(10) ( "type" => string(6) "string" "column_name" => string(9) "date_time" "column_default" => string(19) "current_timestamp()" "data_type" => string(8) "datetime" "is_nullable" => bool FALSE "ordinal_position" => integer 5 "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "views" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(5) "views" "column_default" => string(1) "0" "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 6 "display" => string(2) "11" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "human_id" => array(13) ( "type" => string(3) "int" "min" => string(20) "-9223372036854775808" "max" => string(19) "9223372036854775807" "column_name" => string(8) "human_id" "column_default" => NULL "data_type" => string(6) "bigint" "is_nullable" => bool TRUE "ordinal_position" => integer 7 "display" => string(2) "20" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "ya_spell" => array(12) ( "type" => string(6) "string" "column_name" => string(8) "ya_spell" "column_default" => string(1) "0" "data_type" => string(4) "enum" "is_nullable" => bool FALSE "ordinal_position" => integer 8 "collation_name" => string(18) "utf8mb3_unicode_ci" "options" => array(2) ( 0 => string(1) "0" 1 => string(1) "1" ) "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "category_key" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(12) "category_key" "column_default" => string(1) "0" "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 9 "display" => string(2) "11" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "has_gpt" => array(12) ( "type" => string(6) "string" "column_name" => string(7) "has_gpt" "column_default" => NULL "data_type" => string(4) "enum" "is_nullable" => bool TRUE "ordinal_position" => integer 10 "collation_name" => string(18) "utf8mb3_unicode_ci" "options" => array(4) ( 0 => string(1) "0" 1 => string(1) "1" 2 => string(12) "has_attaches" 3 => string(4) "skip" ) "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "source" => array(12) ( "type" => string(6) "string" "column_name" => string(6) "source" "column_default" => NULL "data_type" => string(4) "enum" "is_nullable" => bool TRUE "ordinal_position" => integer 11 "collation_name" => string(18) "utf8mb3_unicode_ci" "options" => array(1) ( 0 => string(12) "vashurok.com" ) "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "source_id" => array(13) ( "type" => string(3) "int" "min" => string(20) "-9223372036854775808" "max" => string(19) "9223372036854775807" "column_name" => string(9) "source_id" "column_default" => NULL "data_type" => string(6) "bigint" "is_nullable" => bool TRUE "ordinal_position" => integer 12 "display" => string(2) "20" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "text_for_search" => array(12) ( "type" => string(6) "string" "character_maximum_length" => string(5) "65535" "column_name" => string(15) "text_for_search" "column_default" => NULL "data_type" => string(4) "text" "is_nullable" => bool TRUE "ordinal_position" => integer 13 "collation_name" => string(18) "utf8mb3_unicode_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "related" => array(12) ( "type" => string(6) "string" "column_name" => string(7) "related" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 14 "character_maximum_length" => string(4) "1023" "collation_name" => string(18) "utf8mb3_unicode_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "good" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(4) "good" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool TRUE "ordinal_position" => integer 15 "display" => string(2) "11" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "bad" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(3) "bad" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool TRUE "ordinal_position" => integer 16 "display" => string(2) "11" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) ) protected _updated_column => NULL protected _created_column => NULL protected _serialize_columns => array(0) protected _primary_key => string(2) "id" protected _primary_key_value => string(8) "14116615" protected _table_names_plural => bool TRUE protected _db => object Database_MySQLi(6){ protected _connection_id => string(40) "9fdecc117b583662f3b3d15c4c4ac71fc778e18d" protected _identifier => string(1) "`" public last_query => string(185) "SELECT `category`.`id` AS `id`, `category`.`name` AS `name`, `category`.`url` AS `url`, `category`.`count` AS `count` FROM `cate …" protected _instance => string(7) "default" protected _connection => object mysqli(19)protected _db_group => NULL protected _db_applied => array(0) protected _db_pending => array(0) protected _db_reset => bool TRUE protected _db_builder => NULL protected _with_applied => array(0) protected _cast_data => array(0) protected _errors_filename => string(8) "category" }{ public affected_rows => NULL public client_info => NULL public client_version => NULL public connect_errno => NULL public connect_error => NULL public errno => NULL public error => NULL public error_list => NULL public field_count => NULL public host_info => NULL public info => NULL public insert_id => NULL public server_info => NULL public server_version => NULL public stat => NULL public sqlstate => NULL public protocol_version => NULL public thread_id => NULL public warning_count => NULL }protected _config => array(6) ( "type" => string(6) "MySQLi" "connection" => array(3) ( "hostname" => string(9) "localhost" "database" => string(9) "uznavalka" "persistent" => bool FALSE ) "table_prefix" => string(0) "" "charset" => string(7) "utf8mb4" "caching" => bool FALSE "profiling" => bool FALSE ) }{ protected _connection_id => string(40) "9fdecc117b583662f3b3d15c4c4ac71fc778e18d" protected _identifier => string(1) "`" public last_query => string(185) "SELECT `category`.`id` AS `id`, `category`.`name` AS `name`, `category`.`url` AS `url`, `category`.`count` AS `count` FROM `cate …" protected _instance => string(7) "default" protected _connection => object mysqli(19)protected _db_group => NULL protected _db_applied => array(0) protected _db_pending => array(0) protected _db_reset => bool TRUE protected _db_builder => NULL protected _with_applied => array(0) protected _cast_data => array(0) protected _errors_filename => string(4) "task" }{ public affected_rows => NULL public client_info => NULL public client_version => NULL public connect_errno => NULL public connect_error => NULL public errno => NULL public error => NULL public error_list => NULL public field_count => NULL public host_info => NULL public info => NULL public insert_id => NULL public server_info => NULL public server_version => NULL public stat => NULL public sqlstate => NULL public protocol_version => NULL public thread_id => NULL public warning_count => NULL }protected _config => array(6) ( "type" => string(6) "MySQLi" "connection" => array(3) ( "hostname" => string(9) "localhost" "database" => string(9) "uznavalka" "persistent" => bool FALSE ) "table_prefix" => string(0) "" "charset" => string(7) "utf8mb4" "caching" => bool FALSE "profiling" => bool FALSE ) }{ protected _belongs_to => array(2) ( "category" => array(2) ( "model" => string(8) "Category" "foreign_key" => string(11) "category_id" ) "human" => array(2) ( "model" => string(5) "Human" "foreign_key" => string(8) "human_id" ) ) protected _has_many => array(4) ( "answers" => array(4) ( "model" => string(6) "Answer" "foreign_key" => string(7) "task_id" "through" => NULL "far_key" => string(9) "answer_id" ) "tattaches" => array(4) ( "model" => string(7) "Tattach" "foreign_key" => string(7) "task_id" "through" => NULL "far_key" => string(10) "tattach_id" ) "tops" => array(4) ( "model" => string(3) "Top" "foreign_key" => string(7) "task_id" "through" => NULL "far_key" => string(6) "top_id" ) "ipsviews" => array(4) ( "model" => string(7) "Ipsview" "foreign_key" => string(7) "task_id" "through" => NULL "far_key" => string(10) "ipsview_id" ) ) protected _reload_on_wakeup => bool FALSE protected _has_one => array(0) protected _load_with => array(0) protected _validation => NULL protected _object => array(16) ( "id" => string(8) "10860218" "category_id" => string(1) "7" "text" => string(270) "<span class="sg-text sg-text--large sg-text--bold sg-text--break-words brn-qpage-next-question-box-content__primary"> CuO + NH3 …" "zn_id" => string(8) "24342333" "date_time" => string(19) "2021-03-25 16:19:04" "views" => string(2) "49" "human_id" => string(8) "32694668" "ya_spell" => string(1) "0" "category_key" => string(6) "494327" "has_gpt" => string(1) "1" "source" => NULL "source_id" => NULL "text_for_search" => string(140) "CuO + NH3 -> Cu + N2 + H2O. Сколько электронов участвуют в процессе окисления реакции?" "related" => NULL "good" => NULL "bad" => NULL ) protected _changed => array(0) protected _original_values => array(16) ( "id" => string(8) "10860218" "category_id" => string(1) "7" "text" => string(270) "<span class="sg-text sg-text--large sg-text--bold sg-text--break-words brn-qpage-next-question-box-content__primary"> CuO + NH3 …" "zn_id" => string(8) "24342333" "date_time" => string(19) "2021-03-25 16:19:04" "views" => string(2) "49" "human_id" => string(8) "32694668" "ya_spell" => string(1) "0" "category_key" => string(6) "494327" "has_gpt" => string(1) "1" "source" => NULL "source_id" => NULL "text_for_search" => string(140) "CuO + NH3 -> Cu + N2 + H2O. Сколько электронов участвуют в процессе окисления реакции?" "related" => NULL "good" => NULL "bad" => NULL ) protected _related => array(2) ( "human" => object Model_Human(34)2 => object Model_Task(34){ protected _db_group => string(5) "looka" protected _has_many => array(4) ( "universities" => array(5) ( "model" => string(10) "university" "foreign_key" => string(8) "human_id" "through" => string(19) "humans_universities" "far_key" => string(13) "university_id" "_table_columns" => array(5) ( "faculty_id" => NULL "chair_id" => NULL "graduation" => NULL "education_form" => NULL "education_status" => NULL ) ) "humans_universities" => array(4) ( "model" => string(17) "Humans_University" "foreign_key" => string(8) "human_id" "through" => NULL "far_key" => string(20) "humans_university_id" ) "schools" => array(5) ( "model" => string(6) "school" "foreign_key" => string(8) "human_id" "through" => string(14) "humans_schools" "far_key" => string(9) "school_id" "_table_columns" => array(6) ( "year_from" => NULL "year_to" => NULL "year_graduated" => NULL "class" => NULL "speciality" => NULL "type" => NULL ) ) "humans_schools" => array(4) ( "model" => string(13) "Humans_School" "foreign_key" => string(8) "human_id" "through" => NULL "far_key" => string(16) "humans_school_id" ) ) protected _belongs_to => array(4) ( "lastname" => array(2) ( "model" => string(8) "Lastname" "foreign_key" => string(11) "lastname_id" ) "firstname" => array(2) ( "model" => string(9) "Firstname" "foreign_key" => string(12) "firstname_id" ) "country" => array(2) ( "model" => string(7) "Country" "foreign_key" => string(10) "country_id" ) "city" => array(2) ( "model" => string(4) "City" "foreign_key" => string(7) "city_id" ) ) protected _reload_on_wakeup => bool FALSE protected _has_one => array(0) protected _load_with => array(0) protected _validation => NULL protected _object => array(21) ( "id" => string(8) "32694668" "lastname_id" => string(4) "9027" "firstname_id" => string(2) "73" "nickname" => string(0) "" "vk_id" => string(9) "262187723" "bdate" => string(10) "2004-04-03" "info" => NULL "photo" => string(62) "https://pp.userapi.com/c844617/v844617397/e1a8/1QlqBt3OVBA.jpg" "city_id" => string(7) "1702115" "country_id" => string(1) "4" "home_town" => string(20) "Надеждинка" "home_phone" => string(14) ".............." "skype" => NULL "facebook" => NULL "twitter" => NULL "livejournal" => NULL "instagram" => NULL "occupation_type" => string(6) "school" "occupation_name" => string(16) "Школа №13" "rate" => string(2) "15" "count_firstnames_lastnames" => NULL ) protected _changed => array(0) protected _original_values => array(21) ( "id" => string(8) "32694668" "lastname_id" => string(4) "9027" "firstname_id" => string(2) "73" "nickname" => string(0) "" "vk_id" => string(9) "262187723" "bdate" => string(10) "2004-04-03" "info" => NULL "photo" => string(62) "https://pp.userapi.com/c844617/v844617397/e1a8/1QlqBt3OVBA.jpg" "city_id" => string(7) "1702115" "country_id" => string(1) "4" "home_town" => string(20) "Надеждинка" "home_phone" => string(14) ".............." "skype" => NULL "facebook" => NULL "twitter" => NULL "livejournal" => NULL "instagram" => NULL "occupation_type" => string(6) "school" "occupation_name" => string(16) "Школа №13" "rate" => string(2) "15" "count_firstnames_lastnames" => NULL ) protected _related => array(2) ( "lastname" => object Model_Lastname(34)"category" => object Model_Category(35){ protected _db_group => string(5) "looka" protected _reload_on_wakeup => bool FALSE protected _has_one => array(0) protected _belongs_to => array(0) protected _has_many => array(0) protected _load_with => array(0) protected _validation => NULL protected _object => array(2) ( "id" => string(4) "9027" "title" => string(12) "Берген" ) protected _changed => array(0) protected _original_values => array(2) ( "id" => string(4) "9027" "title" => string(12) "Берген" ) protected _related => array(0) protected _valid => bool TRUE protected _loaded => bool TRUE protected _saved => bool FALSE protected _sorting => NULL protected _foreign_key_suffix => string(3) "_id" protected _object_name => string(8) "lastname" protected _object_plural => string(9) "lastnames" protected _table_name => string(9) "lastnames" protected _table_columns => array(2) ( "id" => array(13) ( ... ) "title" => array(12) ( ... ) ) protected _updated_column => NULL protected _created_column => NULL protected _serialize_columns => array(0) protected _primary_key => string(2) "id" protected _primary_key_value => string(4) "9027" protected _table_names_plural => bool TRUE protected _db => object Database_MySQLi(6)"firstname" => object Model_Firstname(34){ protected _connection_id => string(40) "d012da34ee02fd2c23a3776760afb1e9d4e5c681" protected _identifier => string(1) "`" public last_query => string(166) "SELECT `finder_lastname`.`id` AS `id`, `finder_lastname`.`title` AS `title` FROM `finder_lastnames` AS `finder_lastname` WHERE ` …" protected _instance => string(5) "looka" protected _connection => object mysqli(19) { ... } protected _config => array(5) ( ... ) }protected _db_applied => array(0) protected _db_pending => array(0) protected _db_reset => bool TRUE protected _db_builder => NULL protected _with_applied => array(0) protected _cast_data => array(0) protected _errors_filename => string(8) "lastname" }{ protected _db_group => string(5) "looka" protected _has_many => array(1) ( "humans" => array(4) ( ... ) ) protected _reload_on_wakeup => bool FALSE protected _has_one => array(0) protected _belongs_to => array(0) protected _load_with => array(0) protected _validation => NULL protected _object => array(2) ( "id" => string(2) "73" "title" => string(16) "Анатолий" ) protected _changed => array(0) protected _original_values => array(2) ( "id" => string(2) "73" "title" => string(16) "Анатолий" ) protected _related => array(0) protected _valid => bool TRUE protected _loaded => bool TRUE protected _saved => bool FALSE protected _sorting => NULL protected _foreign_key_suffix => string(3) "_id" protected _object_name => string(9) "firstname" protected _object_plural => string(10) "firstnames" protected _table_name => string(10) "firstnames" protected _table_columns => array(2) ( "id" => array(13) ( ... ) "title" => array(12) ( ... ) ) protected _updated_column => NULL protected _created_column => NULL protected _serialize_columns => array(0) protected _primary_key => string(2) "id" protected _primary_key_value => string(2) "73" protected _table_names_plural => bool TRUE protected _db => object Database_MySQLi(6)) protected _valid => bool TRUE protected _loaded => bool TRUE protected _saved => bool FALSE protected _sorting => NULL protected _foreign_key_suffix => string(3) "_id" protected _object_name => string(5) "human" protected _object_plural => string(6) "humans" protected _table_name => string(6) "humans" protected _table_columns => array(21) ( "id" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(2) "id" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 1 "display" => string(2) "11" "comment" => string(0) "" "extra" => string(14) "auto_increment" "key" => string(3) "PRI" "privileges" => string(31) "select,insert,update,references" ) "lastname_id" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(11) "lastname_id" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 2 "display" => string(2) "11" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "firstname_id" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(12) "firstname_id" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 3 "display" => string(2) "11" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "nickname" => array(12) ( "type" => string(6) "string" "column_name" => string(8) "nickname" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 4 "character_maximum_length" => string(3) "255" "collation_name" => string(18) "utf8mb4_unicode_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "vk_id" => array(13) ( "type" => string(3) "int" "min" => string(20) "-9223372036854775808" "max" => string(19) "9223372036854775807" "column_name" => string(5) "vk_id" "column_default" => NULL "data_type" => string(6) "bigint" "is_nullable" => bool TRUE "ordinal_position" => integer 5 "display" => string(2) "20" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "bdate" => array(10) ( "type" => string(6) "string" "column_name" => string(5) "bdate" "column_default" => NULL "data_type" => string(4) "date" "is_nullable" => bool TRUE "ordinal_position" => integer 6 "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "info" => array(12) ( "type" => string(6) "string" "column_name" => string(4) "info" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 7 "character_maximum_length" => string(4) "1023" "collation_name" => string(18) "utf8mb4_unicode_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "photo" => array(12) ( "type" => string(6) "string" "column_name" => string(5) "photo" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 8 "character_maximum_length" => string(3) "255" "collation_name" => string(18) "utf8mb4_unicode_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "city_id" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(7) "city_id" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool TRUE "ordinal_position" => integer 9 "display" => string(2) "11" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "country_id" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(10) "country_id" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool TRUE "ordinal_position" => integer 10 "display" => string(2) "11" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "home_town" => array(12) ( "type" => string(6) "string" "column_name" => string(9) "home_town" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 11 "character_maximum_length" => string(3) "255" "collation_name" => string(18) "utf8mb4_unicode_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "home_phone" => array(12) ( "type" => string(6) "string" "column_name" => string(10) "home_phone" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 12 "character_maximum_length" => string(2) "63" "collation_name" => string(18) "utf8mb4_unicode_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "skype" => array(12) ( "type" => string(6) "string" "column_name" => string(5) "skype" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 13 "character_maximum_length" => string(3) "127" "collation_name" => string(18) "utf8mb4_unicode_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "facebook" => array(12) ( "type" => string(6) "string" "column_name" => string(8) "facebook" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 14 "character_maximum_length" => string(3) "127" "collation_name" => string(18) "utf8mb4_unicode_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "twitter" => array(12) ( "type" => string(6) "string" "column_name" => string(7) "twitter" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 15 "character_maximum_length" => string(3) "127" "collation_name" => string(18) "utf8mb4_unicode_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "livejournal" => array(12) ( "type" => string(6) "string" "column_name" => string(11) "livejournal" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 16 "character_maximum_length" => string(3) "127" "collation_name" => string(18) "utf8mb4_unicode_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "instagram" => array(12) ( "type" => string(6) "string" "column_name" => string(9) "instagram" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 17 "character_maximum_length" => string(3) "127" "collation_name" => string(18) "utf8mb4_unicode_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "occupation_type" => array(12) ( "type" => string(6) "string" "column_name" => string(15) "occupation_type" "column_default" => NULL "data_type" => string(4) "enum" "is_nullable" => bool TRUE "ordinal_position" => integer 18 "collation_name" => string(18) "utf8mb4_unicode_ci" "options" => array(3) ( 0 => string(4) "work" 1 => string(6) "school" 2 => string(10) "university" ) "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "occupation_name" => array(12) ( "type" => string(6) "string" "column_name" => string(15) "occupation_name" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 19 "character_maximum_length" => string(3) "255" "collation_name" => string(18) "utf8mb4_unicode_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "rate" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(4) "rate" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 20 "display" => string(2) "11" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "count_firstnames_lastnames" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(26) "count_firstnames_lastnames" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool TRUE "ordinal_position" => integer 21 "display" => string(2) "11" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) ) protected _updated_column => NULL protected _created_column => NULL protected _serialize_columns => array(0) protected _primary_key => string(2) "id" protected _primary_key_value => string(8) "32694668" protected _table_names_plural => bool TRUE protected _db => object Database_MySQLi(6){ protected _connection_id => string(40) "d012da34ee02fd2c23a3776760afb1e9d4e5c681" protected _identifier => string(1) "`" public last_query => string(166) "SELECT `finder_lastname`.`id` AS `id`, `finder_lastname`.`title` AS `title` FROM `finder_lastnames` AS `finder_lastname` WHERE ` …" protected _instance => string(5) "looka" protected _connection => object mysqli(19) { ... } protected _config => array(5) ( ... ) }protected _db_applied => array(0) protected _db_pending => array(0) protected _db_reset => bool TRUE protected _db_builder => NULL protected _with_applied => array(0) protected _cast_data => array(0) protected _errors_filename => string(9) "firstname" }{ protected _connection_id => string(40) "d012da34ee02fd2c23a3776760afb1e9d4e5c681" protected _identifier => string(1) "`" public last_query => string(166) "SELECT `finder_lastname`.`id` AS `id`, `finder_lastname`.`title` AS `title` FROM `finder_lastnames` AS `finder_lastname` WHERE ` …" protected _instance => string(5) "looka" protected _connection => object mysqli(19)protected _db_applied => array(0) protected _db_pending => array(0) protected _db_reset => bool TRUE protected _db_builder => NULL protected _with_applied => array(0) protected _cast_data => array(0) protected _errors_filename => string(5) "human" }{ public affected_rows => NULL public client_info => NULL public client_version => NULL public connect_errno => NULL public connect_error => NULL public errno => NULL public error => NULL public error_list => NULL public field_count => NULL public host_info => NULL public info => NULL public insert_id => NULL public server_info => NULL public server_version => NULL public stat => NULL public sqlstate => NULL public protocol_version => NULL public thread_id => NULL public warning_count => NULL }protected _config => array(5) ( "type" => string(6) "MySQLi" "connection" => array(3) ( "hostname" => string(9) "localhost" "database" => string(5) "looka" "persistent" => bool FALSE ) "table_prefix" => string(7) "finder_" "charset" => string(7) "utf8mb4" "caching" => bool FALSE ) }{ protected _has_many => array(2) ( "tasks" => array(4) ( "model" => string(4) "Task" "foreign_key" => string(11) "category_id" "through" => NULL "far_key" => string(7) "task_id" ) "tops" => array(4) ( "model" => string(3) "Top" "foreign_key" => string(11) "category_id" "through" => NULL "far_key" => string(6) "top_id" ) ) protected prefix_url => string(9) "/subject/" protected _reload_on_wakeup => bool FALSE protected _has_one => array(0) protected _belongs_to => array(0) protected _load_with => array(0) protected _validation => NULL protected _object => array(4) ( "id" => string(1) "7" "name" => string(10) "Химия" "url" => string(9) "chemistry" "count" => string(6) "799022" ) protected _changed => array(0) protected _original_values => array(4) ( "id" => string(1) "7" "name" => string(10) "Химия" "url" => string(9) "chemistry" "count" => string(6) "799022" ) protected _related => array(0) protected _valid => bool TRUE protected _loaded => bool TRUE protected _saved => bool FALSE protected _sorting => NULL protected _foreign_key_suffix => string(3) "_id" protected _object_name => string(8) "category" protected _object_plural => string(10) "categories" protected _table_name => string(10) "categories" protected _table_columns => array(4) ( "id" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(2) "id" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 1 "display" => string(2) "11" "comment" => string(0) "" "extra" => string(14) "auto_increment" "key" => string(3) "PRI" "privileges" => string(31) "select,insert,update,references" ) "name" => array(12) ( "type" => string(6) "string" "column_name" => string(4) "name" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool FALSE "ordinal_position" => integer 2 "character_maximum_length" => string(3) "255" "collation_name" => string(18) "utf8mb3_unicode_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "url" => array(12) ( "type" => string(6) "string" "column_name" => string(3) "url" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool FALSE "ordinal_position" => integer 3 "character_maximum_length" => string(3) "255" "collation_name" => string(18) "utf8mb3_unicode_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "count" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(5) "count" "column_default" => string(1) "0" "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 4 "display" => string(2) "11" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) ) protected _updated_column => NULL protected _created_column => NULL protected _serialize_columns => array(0) protected _primary_key => string(2) "id" protected _primary_key_value => string(1) "7" protected _table_names_plural => bool TRUE protected _db => object Database_MySQLi(6)) protected _valid => bool TRUE protected _loaded => bool TRUE protected _saved => bool FALSE protected _sorting => NULL protected _foreign_key_suffix => string(3) "_id" protected _object_name => string(4) "task" protected _object_plural => string(5) "tasks" protected _table_name => string(5) "tasks" protected _table_columns => array(16) ( "id" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(2) "id" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 1 "display" => string(2) "11" "comment" => string(0) "" "extra" => string(14) "auto_increment" "key" => string(3) "PRI" "privileges" => string(31) "select,insert,update,references" ) "category_id" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(11) "category_id" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 2 "display" => string(2) "11" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "text" => array(12) ( "type" => string(6) "string" "character_maximum_length" => string(5) "65535" "column_name" => string(4) "text" "column_default" => NULL "data_type" => string(4) "text" "is_nullable" => bool FALSE "ordinal_position" => integer 3 "collation_name" => string(18) "utf8mb3_unicode_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "zn_id" => array(13) ( "type" => string(3) "int" "min" => string(20) "-9223372036854775808" "max" => string(19) "9223372036854775807" "column_name" => string(5) "zn_id" "column_default" => string(1) "0" "data_type" => string(6) "bigint" "is_nullable" => bool FALSE "ordinal_position" => integer 4 "display" => string(2) "20" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "date_time" => array(10) ( "type" => string(6) "string" "column_name" => string(9) "date_time" "column_default" => string(19) "current_timestamp()" "data_type" => string(8) "datetime" "is_nullable" => bool FALSE "ordinal_position" => integer 5 "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "views" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(5) "views" "column_default" => string(1) "0" "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 6 "display" => string(2) "11" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "human_id" => array(13) ( "type" => string(3) "int" "min" => string(20) "-9223372036854775808" "max" => string(19) "9223372036854775807" "column_name" => string(8) "human_id" "column_default" => NULL "data_type" => string(6) "bigint" "is_nullable" => bool TRUE "ordinal_position" => integer 7 "display" => string(2) "20" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "ya_spell" => array(12) ( "type" => string(6) "string" "column_name" => string(8) "ya_spell" "column_default" => string(1) "0" "data_type" => string(4) "enum" "is_nullable" => bool FALSE "ordinal_position" => integer 8 "collation_name" => string(18) "utf8mb3_unicode_ci" "options" => array(2) ( 0 => string(1) "0" 1 => string(1) "1" ) "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "category_key" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(12) "category_key" "column_default" => string(1) "0" "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 9 "display" => string(2) "11" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "has_gpt" => array(12) ( "type" => string(6) "string" "column_name" => string(7) "has_gpt" "column_default" => NULL "data_type" => string(4) "enum" "is_nullable" => bool TRUE "ordinal_position" => integer 10 "collation_name" => string(18) "utf8mb3_unicode_ci" "options" => array(4) ( 0 => string(1) "0" 1 => string(1) "1" 2 => string(12) "has_attaches" 3 => string(4) "skip" ) "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "source" => array(12) ( "type" => string(6) "string" "column_name" => string(6) "source" "column_default" => NULL "data_type" => string(4) "enum" "is_nullable" => bool TRUE "ordinal_position" => integer 11 "collation_name" => string(18) "utf8mb3_unicode_ci" "options" => array(1) ( 0 => string(12) "vashurok.com" ) "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "source_id" => array(13) ( "type" => string(3) "int" "min" => string(20) "-9223372036854775808" "max" => string(19) "9223372036854775807" "column_name" => string(9) "source_id" "column_default" => NULL "data_type" => string(6) "bigint" "is_nullable" => bool TRUE "ordinal_position" => integer 12 "display" => string(2) "20" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "text_for_search" => array(12) ( "type" => string(6) "string" "character_maximum_length" => string(5) "65535" "column_name" => string(15) "text_for_search" "column_default" => NULL "data_type" => string(4) "text" "is_nullable" => bool TRUE "ordinal_position" => integer 13 "collation_name" => string(18) "utf8mb3_unicode_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "related" => array(12) ( "type" => string(6) "string" "column_name" => string(7) "related" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 14 "character_maximum_length" => string(4) "1023" "collation_name" => string(18) "utf8mb3_unicode_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "good" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(4) "good" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool TRUE "ordinal_position" => integer 15 "display" => string(2) "11" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "bad" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(3) "bad" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool TRUE "ordinal_position" => integer 16 "display" => string(2) "11" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) ) protected _updated_column => NULL protected _created_column => NULL protected _serialize_columns => array(0) protected _primary_key => string(2) "id" protected _primary_key_value => string(8) "10860218" protected _table_names_plural => bool TRUE protected _db => object Database_MySQLi(6){ protected _connection_id => string(40) "9fdecc117b583662f3b3d15c4c4ac71fc778e18d" protected _identifier => string(1) "`" public last_query => string(185) "SELECT `category`.`id` AS `id`, `category`.`name` AS `name`, `category`.`url` AS `url`, `category`.`count` AS `count` FROM `cate …" protected _instance => string(7) "default" protected _connection => object mysqli(19)protected _db_group => NULL protected _db_applied => array(0) protected _db_pending => array(0) protected _db_reset => bool TRUE protected _db_builder => NULL protected _with_applied => array(0) protected _cast_data => array(0) protected _errors_filename => string(8) "category" }{ public affected_rows => NULL public client_info => NULL public client_version => NULL public connect_errno => NULL public connect_error => NULL public errno => NULL public error => NULL public error_list => NULL public field_count => NULL public host_info => NULL public info => NULL public insert_id => NULL public server_info => NULL public server_version => NULL public stat => NULL public sqlstate => NULL public protocol_version => NULL public thread_id => NULL public warning_count => NULL }protected _config => array(6) ( "type" => string(6) "MySQLi" "connection" => array(3) ( "hostname" => string(9) "localhost" "database" => string(9) "uznavalka" "persistent" => bool FALSE ) "table_prefix" => string(0) "" "charset" => string(7) "utf8mb4" "caching" => bool FALSE "profiling" => bool FALSE ) }{ protected _connection_id => string(40) "9fdecc117b583662f3b3d15c4c4ac71fc778e18d" protected _identifier => string(1) "`" public last_query => string(185) "SELECT `category`.`id` AS `id`, `category`.`name` AS `name`, `category`.`url` AS `url`, `category`.`count` AS `count` FROM `cate …" protected _instance => string(7) "default" protected _connection => object mysqli(19)protected _db_group => NULL protected _db_applied => array(0) protected _db_pending => array(0) protected _db_reset => bool TRUE protected _db_builder => NULL protected _with_applied => array(0) protected _cast_data => array(0) protected _errors_filename => string(4) "task" }{ public affected_rows => NULL public client_info => NULL public client_version => NULL public connect_errno => NULL public connect_error => NULL public errno => NULL public error => NULL public error_list => NULL public field_count => NULL public host_info => NULL public info => NULL public insert_id => NULL public server_info => NULL public server_version => NULL public stat => NULL public sqlstate => NULL public protocol_version => NULL public thread_id => NULL public warning_count => NULL }protected _config => array(6) ( "type" => string(6) "MySQLi" "connection" => array(3) ( "hostname" => string(9) "localhost" "database" => string(9) "uznavalka" "persistent" => bool FALSE ) "table_prefix" => string(0) "" "charset" => string(7) "utf8mb4" "caching" => bool FALSE "profiling" => bool FALSE ) }{ protected _belongs_to => array(2) ( "category" => array(2) ( "model" => string(8) "Category" "foreign_key" => string(11) "category_id" ) "human" => array(2) ( "model" => string(5) "Human" "foreign_key" => string(8) "human_id" ) ) protected _has_many => array(4) ( "answers" => array(4) ( "model" => string(6) "Answer" "foreign_key" => string(7) "task_id" "through" => NULL "far_key" => string(9) "answer_id" ) "tattaches" => array(4) ( "model" => string(7) "Tattach" "foreign_key" => string(7) "task_id" "through" => NULL "far_key" => string(10) "tattach_id" ) "tops" => array(4) ( "model" => string(3) "Top" "foreign_key" => string(7) "task_id" "through" => NULL "far_key" => string(6) "top_id" ) "ipsviews" => array(4) ( "model" => string(7) "Ipsview" "foreign_key" => string(7) "task_id" "through" => NULL "far_key" => string(10) "ipsview_id" ) ) protected _reload_on_wakeup => bool FALSE protected _has_one => array(0) protected _load_with => array(0) protected _validation => NULL protected _object => array(16) ( "id" => string(8) "11327053" "category_id" => string(1) "7" "text" => string(584) "<span class="sg-text sg-text--large sg-text--bold sg-text--break-words brn-qpage-next-question-box-content__primary"> 9. Обчислі …" "zn_id" => string(8) "52874505" "date_time" => string(19) "2023-06-06 11:46:12" "views" => string(1) "5" "human_id" => string(7) "5925970" "ya_spell" => string(1) "0" "category_key" => string(6) "523674" "has_gpt" => string(1) "1" "source" => NULL "source_id" => NULL "text_for_search" => string(359) "9. Обчисліть масову частку натрій нітрату (NaNO3) в розчині, якщо до його розчину масою 130 г з масовою часткою солі 12% долили …" "related" => NULL "good" => NULL "bad" => NULL ) protected _changed => array(0) protected _original_values => array(16) ( "id" => string(8) "11327053" "category_id" => string(1) "7" "text" => string(584) "<span class="sg-text sg-text--large sg-text--bold sg-text--break-words brn-qpage-next-question-box-content__primary"> 9. Обчислі …" "zn_id" => string(8) "52874505" "date_time" => string(19) "2023-06-06 11:46:12" "views" => string(1) "5" "human_id" => string(7) "5925970" "ya_spell" => string(1) "0" "category_key" => string(6) "523674" "has_gpt" => string(1) "1" "source" => NULL "source_id" => NULL "text_for_search" => string(359) "9. Обчисліть масову частку натрій нітрату (NaNO3) в розчині, якщо до його розчину масою 130 г з масовою часткою солі 12% долили …" "related" => NULL "good" => NULL "bad" => NULL ) protected _related => array(2) ( "human" => object Model_Human(34)3 => object Model_Task(34){ protected _db_group => string(5) "looka" protected _has_many => array(4) ( "universities" => array(5) ( "model" => string(10) "university" "foreign_key" => string(8) "human_id" "through" => string(19) "humans_universities" "far_key" => string(13) "university_id" "_table_columns" => array(5) ( "faculty_id" => NULL "chair_id" => NULL "graduation" => NULL "education_form" => NULL "education_status" => NULL ) ) "humans_universities" => array(4) ( "model" => string(17) "Humans_University" "foreign_key" => string(8) "human_id" "through" => NULL "far_key" => string(20) "humans_university_id" ) "schools" => array(5) ( "model" => string(6) "school" "foreign_key" => string(8) "human_id" "through" => string(14) "humans_schools" "far_key" => string(9) "school_id" "_table_columns" => array(6) ( "year_from" => NULL "year_to" => NULL "year_graduated" => NULL "class" => NULL "speciality" => NULL "type" => NULL ) ) "humans_schools" => array(4) ( "model" => string(13) "Humans_School" "foreign_key" => string(8) "human_id" "through" => NULL "far_key" => string(16) "humans_school_id" ) ) protected _belongs_to => array(4) ( "lastname" => array(2) ( "model" => string(8) "Lastname" "foreign_key" => string(11) "lastname_id" ) "firstname" => array(2) ( "model" => string(9) "Firstname" "foreign_key" => string(12) "firstname_id" ) "country" => array(2) ( "model" => string(7) "Country" "foreign_key" => string(10) "country_id" ) "city" => array(2) ( "model" => string(4) "City" "foreign_key" => string(7) "city_id" ) ) protected _reload_on_wakeup => bool FALSE protected _has_one => array(0) protected _load_with => array(0) protected _validation => NULL protected _object => array(21) ( "id" => string(7) "5925970" "lastname_id" => string(4) "1425" "firstname_id" => string(1) "7" "nickname" => string(0) "" "vk_id" => string(9) "295323624" "bdate" => string(10) "2004-09-20" "info" => NULL "photo" => string(67) "https://sun9-7.userapi.com/c840629/v840629535/5f8cd/ptRHQOM0j_o.jpg" "city_id" => string(4) "1469" "country_id" => string(1) "1" "home_town" => NULL "home_phone" => string(0) "" "skype" => NULL "facebook" => NULL "twitter" => NULL "livejournal" => NULL "instagram" => NULL "occupation_type" => NULL "occupation_name" => NULL "rate" => string(2) "12" "count_firstnames_lastnames" => NULL ) protected _changed => array(0) protected _original_values => array(21) ( "id" => string(7) "5925970" "lastname_id" => string(4) "1425" "firstname_id" => string(1) "7" "nickname" => string(0) "" "vk_id" => string(9) "295323624" "bdate" => string(10) "2004-09-20" "info" => NULL "photo" => string(67) "https://sun9-7.userapi.com/c840629/v840629535/5f8cd/ptRHQOM0j_o.jpg" "city_id" => string(4) "1469" "country_id" => string(1) "1" "home_town" => NULL "home_phone" => string(0) "" "skype" => NULL "facebook" => NULL "twitter" => NULL "livejournal" => NULL "instagram" => NULL "occupation_type" => NULL "occupation_name" => NULL "rate" => string(2) "12" "count_firstnames_lastnames" => NULL ) protected _related => array(2) ( "lastname" => object Model_Lastname(34)"category" => object Model_Category(35){ protected _db_group => string(5) "looka" protected _reload_on_wakeup => bool FALSE protected _has_one => array(0) protected _belongs_to => array(0) protected _has_many => array(0) protected _load_with => array(0) protected _validation => NULL protected _object => array(2) ( "id" => string(4) "1425" "title" => string(18) "Андреевна" ) protected _changed => array(0) protected _original_values => array(2) ( "id" => string(4) "1425" "title" => string(18) "Андреевна" ) protected _related => array(0) protected _valid => bool TRUE protected _loaded => bool TRUE protected _saved => bool FALSE protected _sorting => NULL protected _foreign_key_suffix => string(3) "_id" protected _object_name => string(8) "lastname" protected _object_plural => string(9) "lastnames" protected _table_name => string(9) "lastnames" protected _table_columns => array(2) ( "id" => array(13) ( ... ) "title" => array(12) ( ... ) ) protected _updated_column => NULL protected _created_column => NULL protected _serialize_columns => array(0) protected _primary_key => string(2) "id" protected _primary_key_value => string(4) "1425" protected _table_names_plural => bool TRUE protected _db => object Database_MySQLi(6)"firstname" => object Model_Firstname(34){ protected _connection_id => string(40) "d012da34ee02fd2c23a3776760afb1e9d4e5c681" protected _identifier => string(1) "`" public last_query => string(166) "SELECT `finder_lastname`.`id` AS `id`, `finder_lastname`.`title` AS `title` FROM `finder_lastnames` AS `finder_lastname` WHERE ` …" protected _instance => string(5) "looka" protected _connection => object mysqli(19) { ... } protected _config => array(5) ( ... ) }protected _db_applied => array(0) protected _db_pending => array(0) protected _db_reset => bool TRUE protected _db_builder => NULL protected _with_applied => array(0) protected _cast_data => array(0) protected _errors_filename => string(8) "lastname" }{ protected _db_group => string(5) "looka" protected _has_many => array(1) ( "humans" => array(4) ( ... ) ) protected _reload_on_wakeup => bool FALSE protected _has_one => array(0) protected _belongs_to => array(0) protected _load_with => array(0) protected _validation => NULL protected _object => array(2) ( "id" => string(1) "7" "title" => string(10) "Ольга" ) protected _changed => array(0) protected _original_values => array(2) ( "id" => string(1) "7" "title" => string(10) "Ольга" ) protected _related => array(0) protected _valid => bool TRUE protected _loaded => bool TRUE protected _saved => bool FALSE protected _sorting => NULL protected _foreign_key_suffix => string(3) "_id" protected _object_name => string(9) "firstname" protected _object_plural => string(10) "firstnames" protected _table_name => string(10) "firstnames" protected _table_columns => array(2) ( "id" => array(13) ( ... ) "title" => array(12) ( ... ) ) protected _updated_column => NULL protected _created_column => NULL protected _serialize_columns => array(0) protected _primary_key => string(2) "id" protected _primary_key_value => string(1) "7" protected _table_names_plural => bool TRUE protected _db => object Database_MySQLi(6)) protected _valid => bool TRUE protected _loaded => bool TRUE protected _saved => bool FALSE protected _sorting => NULL protected _foreign_key_suffix => string(3) "_id" protected _object_name => string(5) "human" protected _object_plural => string(6) "humans" protected _table_name => string(6) "humans" protected _table_columns => array(21) ( "id" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(2) "id" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 1 "display" => string(2) "11" "comment" => string(0) "" "extra" => string(14) "auto_increment" "key" => string(3) "PRI" "privileges" => string(31) "select,insert,update,references" ) "lastname_id" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(11) "lastname_id" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 2 "display" => string(2) "11" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "firstname_id" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(12) "firstname_id" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 3 "display" => string(2) "11" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "nickname" => array(12) ( "type" => string(6) "string" "column_name" => string(8) "nickname" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 4 "character_maximum_length" => string(3) "255" "collation_name" => string(18) "utf8mb4_unicode_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "vk_id" => array(13) ( "type" => string(3) "int" "min" => string(20) "-9223372036854775808" "max" => string(19) "9223372036854775807" "column_name" => string(5) "vk_id" "column_default" => NULL "data_type" => string(6) "bigint" "is_nullable" => bool TRUE "ordinal_position" => integer 5 "display" => string(2) "20" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "bdate" => array(10) ( "type" => string(6) "string" "column_name" => string(5) "bdate" "column_default" => NULL "data_type" => string(4) "date" "is_nullable" => bool TRUE "ordinal_position" => integer 6 "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "info" => array(12) ( "type" => string(6) "string" "column_name" => string(4) "info" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 7 "character_maximum_length" => string(4) "1023" "collation_name" => string(18) "utf8mb4_unicode_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "photo" => array(12) ( "type" => string(6) "string" "column_name" => string(5) "photo" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 8 "character_maximum_length" => string(3) "255" "collation_name" => string(18) "utf8mb4_unicode_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "city_id" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(7) "city_id" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool TRUE "ordinal_position" => integer 9 "display" => string(2) "11" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "country_id" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(10) "country_id" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool TRUE "ordinal_position" => integer 10 "display" => string(2) "11" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "home_town" => array(12) ( "type" => string(6) "string" "column_name" => string(9) "home_town" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 11 "character_maximum_length" => string(3) "255" "collation_name" => string(18) "utf8mb4_unicode_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "home_phone" => array(12) ( "type" => string(6) "string" "column_name" => string(10) "home_phone" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 12 "character_maximum_length" => string(2) "63" "collation_name" => string(18) "utf8mb4_unicode_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "skype" => array(12) ( "type" => string(6) "string" "column_name" => string(5) "skype" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 13 "character_maximum_length" => string(3) "127" "collation_name" => string(18) "utf8mb4_unicode_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "facebook" => array(12) ( "type" => string(6) "string" "column_name" => string(8) "facebook" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 14 "character_maximum_length" => string(3) "127" "collation_name" => string(18) "utf8mb4_unicode_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "twitter" => array(12) ( "type" => string(6) "string" "column_name" => string(7) "twitter" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 15 "character_maximum_length" => string(3) "127" "collation_name" => string(18) "utf8mb4_unicode_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "livejournal" => array(12) ( "type" => string(6) "string" "column_name" => string(11) "livejournal" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 16 "character_maximum_length" => string(3) "127" "collation_name" => string(18) "utf8mb4_unicode_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "instagram" => array(12) ( "type" => string(6) "string" "column_name" => string(9) "instagram" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 17 "character_maximum_length" => string(3) "127" "collation_name" => string(18) "utf8mb4_unicode_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "occupation_type" => array(12) ( "type" => string(6) "string" "column_name" => string(15) "occupation_type" "column_default" => NULL "data_type" => string(4) "enum" "is_nullable" => bool TRUE "ordinal_position" => integer 18 "collation_name" => string(18) "utf8mb4_unicode_ci" "options" => array(3) ( 0 => string(4) "work" 1 => string(6) "school" 2 => string(10) "university" ) "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "occupation_name" => array(12) ( "type" => string(6) "string" "column_name" => string(15) "occupation_name" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 19 "character_maximum_length" => string(3) "255" "collation_name" => string(18) "utf8mb4_unicode_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "rate" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(4) "rate" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 20 "display" => string(2) "11" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "count_firstnames_lastnames" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(26) "count_firstnames_lastnames" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool TRUE "ordinal_position" => integer 21 "display" => string(2) "11" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) ) protected _updated_column => NULL protected _created_column => NULL protected _serialize_columns => array(0) protected _primary_key => string(2) "id" protected _primary_key_value => string(7) "5925970" protected _table_names_plural => bool TRUE protected _db => object Database_MySQLi(6){ protected _connection_id => string(40) "d012da34ee02fd2c23a3776760afb1e9d4e5c681" protected _identifier => string(1) "`" public last_query => string(166) "SELECT `finder_lastname`.`id` AS `id`, `finder_lastname`.`title` AS `title` FROM `finder_lastnames` AS `finder_lastname` WHERE ` …" protected _instance => string(5) "looka" protected _connection => object mysqli(19) { ... } protected _config => array(5) ( ... ) }protected _db_applied => array(0) protected _db_pending => array(0) protected _db_reset => bool TRUE protected _db_builder => NULL protected _with_applied => array(0) protected _cast_data => array(0) protected _errors_filename => string(9) "firstname" }{ protected _connection_id => string(40) "d012da34ee02fd2c23a3776760afb1e9d4e5c681" protected _identifier => string(1) "`" public last_query => string(166) "SELECT `finder_lastname`.`id` AS `id`, `finder_lastname`.`title` AS `title` FROM `finder_lastnames` AS `finder_lastname` WHERE ` …" protected _instance => string(5) "looka" protected _connection => object mysqli(19)protected _db_applied => array(0) protected _db_pending => array(0) protected _db_reset => bool TRUE protected _db_builder => NULL protected _with_applied => array(0) protected _cast_data => array(0) protected _errors_filename => string(5) "human" }{ public affected_rows => NULL public client_info => NULL public client_version => NULL public connect_errno => NULL public connect_error => NULL public errno => NULL public error => NULL public error_list => NULL public field_count => NULL public host_info => NULL public info => NULL public insert_id => NULL public server_info => NULL public server_version => NULL public stat => NULL public sqlstate => NULL public protocol_version => NULL public thread_id => NULL public warning_count => NULL }protected _config => array(5) ( "type" => string(6) "MySQLi" "connection" => array(3) ( "hostname" => string(9) "localhost" "database" => string(5) "looka" "persistent" => bool FALSE ) "table_prefix" => string(7) "finder_" "charset" => string(7) "utf8mb4" "caching" => bool FALSE ) }{ protected _has_many => array(2) ( "tasks" => array(4) ( "model" => string(4) "Task" "foreign_key" => string(11) "category_id" "through" => NULL "far_key" => string(7) "task_id" ) "tops" => array(4) ( "model" => string(3) "Top" "foreign_key" => string(11) "category_id" "through" => NULL "far_key" => string(6) "top_id" ) ) protected prefix_url => string(9) "/subject/" protected _reload_on_wakeup => bool FALSE protected _has_one => array(0) protected _belongs_to => array(0) protected _load_with => array(0) protected _validation => NULL protected _object => array(4) ( "id" => string(1) "7" "name" => string(10) "Химия" "url" => string(9) "chemistry" "count" => string(6) "799022" ) protected _changed => array(0) protected _original_values => array(4) ( "id" => string(1) "7" "name" => string(10) "Химия" "url" => string(9) "chemistry" "count" => string(6) "799022" ) protected _related => array(0) protected _valid => bool TRUE protected _loaded => bool TRUE protected _saved => bool FALSE protected _sorting => NULL protected _foreign_key_suffix => string(3) "_id" protected _object_name => string(8) "category" protected _object_plural => string(10) "categories" protected _table_name => string(10) "categories" protected _table_columns => array(4) ( "id" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(2) "id" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 1 "display" => string(2) "11" "comment" => string(0) "" "extra" => string(14) "auto_increment" "key" => string(3) "PRI" "privileges" => string(31) "select,insert,update,references" ) "name" => array(12) ( "type" => string(6) "string" "column_name" => string(4) "name" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool FALSE "ordinal_position" => integer 2 "character_maximum_length" => string(3) "255" "collation_name" => string(18) "utf8mb3_unicode_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "url" => array(12) ( "type" => string(6) "string" "column_name" => string(3) "url" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool FALSE "ordinal_position" => integer 3 "character_maximum_length" => string(3) "255" "collation_name" => string(18) "utf8mb3_unicode_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "count" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(5) "count" "column_default" => string(1) "0" "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 4 "display" => string(2) "11" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) ) protected _updated_column => NULL protected _created_column => NULL protected _serialize_columns => array(0) protected _primary_key => string(2) "id" protected _primary_key_value => string(1) "7" protected _table_names_plural => bool TRUE protected _db => object Database_MySQLi(6)) protected _valid => bool TRUE protected _loaded => bool TRUE protected _saved => bool FALSE protected _sorting => NULL protected _foreign_key_suffix => string(3) "_id" protected _object_name => string(4) "task" protected _object_plural => string(5) "tasks" protected _table_name => string(5) "tasks" protected _table_columns => array(16) ( "id" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(2) "id" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 1 "display" => string(2) "11" "comment" => string(0) "" "extra" => string(14) "auto_increment" "key" => string(3) "PRI" "privileges" => string(31) "select,insert,update,references" ) "category_id" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(11) "category_id" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 2 "display" => string(2) "11" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "text" => array(12) ( "type" => string(6) "string" "character_maximum_length" => string(5) "65535" "column_name" => string(4) "text" "column_default" => NULL "data_type" => string(4) "text" "is_nullable" => bool FALSE "ordinal_position" => integer 3 "collation_name" => string(18) "utf8mb3_unicode_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "zn_id" => array(13) ( "type" => string(3) "int" "min" => string(20) "-9223372036854775808" "max" => string(19) "9223372036854775807" "column_name" => string(5) "zn_id" "column_default" => string(1) "0" "data_type" => string(6) "bigint" "is_nullable" => bool FALSE "ordinal_position" => integer 4 "display" => string(2) "20" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "date_time" => array(10) ( "type" => string(6) "string" "column_name" => string(9) "date_time" "column_default" => string(19) "current_timestamp()" "data_type" => string(8) "datetime" "is_nullable" => bool FALSE "ordinal_position" => integer 5 "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "views" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(5) "views" "column_default" => string(1) "0" "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 6 "display" => string(2) "11" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "human_id" => array(13) ( "type" => string(3) "int" "min" => string(20) "-9223372036854775808" "max" => string(19) "9223372036854775807" "column_name" => string(8) "human_id" "column_default" => NULL "data_type" => string(6) "bigint" "is_nullable" => bool TRUE "ordinal_position" => integer 7 "display" => string(2) "20" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "ya_spell" => array(12) ( "type" => string(6) "string" "column_name" => string(8) "ya_spell" "column_default" => string(1) "0" "data_type" => string(4) "enum" "is_nullable" => bool FALSE "ordinal_position" => integer 8 "collation_name" => string(18) "utf8mb3_unicode_ci" "options" => array(2) ( 0 => string(1) "0" 1 => string(1) "1" ) "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "category_key" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(12) "category_key" "column_default" => string(1) "0" "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 9 "display" => string(2) "11" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "has_gpt" => array(12) ( "type" => string(6) "string" "column_name" => string(7) "has_gpt" "column_default" => NULL "data_type" => string(4) "enum" "is_nullable" => bool TRUE "ordinal_position" => integer 10 "collation_name" => string(18) "utf8mb3_unicode_ci" "options" => array(4) ( 0 => string(1) "0" 1 => string(1) "1" 2 => string(12) "has_attaches" 3 => string(4) "skip" ) "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "source" => array(12) ( "type" => string(6) "string" "column_name" => string(6) "source" "column_default" => NULL "data_type" => string(4) "enum" "is_nullable" => bool TRUE "ordinal_position" => integer 11 "collation_name" => string(18) "utf8mb3_unicode_ci" "options" => array(1) ( 0 => string(12) "vashurok.com" ) "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "source_id" => array(13) ( "type" => string(3) "int" "min" => string(20) "-9223372036854775808" "max" => string(19) "9223372036854775807" "column_name" => string(9) "source_id" "column_default" => NULL "data_type" => string(6) "bigint" "is_nullable" => bool TRUE "ordinal_position" => integer 12 "display" => string(2) "20" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "text_for_search" => array(12) ( "type" => string(6) "string" "character_maximum_length" => string(5) "65535" "column_name" => string(15) "text_for_search" "column_default" => NULL "data_type" => string(4) "text" "is_nullable" => bool TRUE "ordinal_position" => integer 13 "collation_name" => string(18) "utf8mb3_unicode_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "related" => array(12) ( "type" => string(6) "string" "column_name" => string(7) "related" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 14 "character_maximum_length" => string(4) "1023" "collation_name" => string(18) "utf8mb3_unicode_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "good" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(4) "good" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool TRUE "ordinal_position" => integer 15 "display" => string(2) "11" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "bad" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(3) "bad" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool TRUE "ordinal_position" => integer 16 "display" => string(2) "11" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) ) protected _updated_column => NULL protected _created_column => NULL protected _serialize_columns => array(0) protected _primary_key => string(2) "id" protected _primary_key_value => string(8) "11327053" protected _table_names_plural => bool TRUE protected _db => object Database_MySQLi(6){ protected _connection_id => string(40) "9fdecc117b583662f3b3d15c4c4ac71fc778e18d" protected _identifier => string(1) "`" public last_query => string(185) "SELECT `category`.`id` AS `id`, `category`.`name` AS `name`, `category`.`url` AS `url`, `category`.`count` AS `count` FROM `cate …" protected _instance => string(7) "default" protected _connection => object mysqli(19)protected _db_group => NULL protected _db_applied => array(0) protected _db_pending => array(0) protected _db_reset => bool TRUE protected _db_builder => NULL protected _with_applied => array(0) protected _cast_data => array(0) protected _errors_filename => string(8) "category" }{ public affected_rows => NULL public client_info => NULL public client_version => NULL public connect_errno => NULL public connect_error => NULL public errno => NULL public error => NULL public error_list => NULL public field_count => NULL public host_info => NULL public info => NULL public insert_id => NULL public server_info => NULL public server_version => NULL public stat => NULL public sqlstate => NULL public protocol_version => NULL public thread_id => NULL public warning_count => NULL }protected _config => array(6) ( "type" => string(6) "MySQLi" "connection" => array(3) ( "hostname" => string(9) "localhost" "database" => string(9) "uznavalka" "persistent" => bool FALSE ) "table_prefix" => string(0) "" "charset" => string(7) "utf8mb4" "caching" => bool FALSE "profiling" => bool FALSE ) }{ protected _connection_id => string(40) "9fdecc117b583662f3b3d15c4c4ac71fc778e18d" protected _identifier => string(1) "`" public last_query => string(185) "SELECT `category`.`id` AS `id`, `category`.`name` AS `name`, `category`.`url` AS `url`, `category`.`count` AS `count` FROM `cate …" protected _instance => string(7) "default" protected _connection => object mysqli(19)protected _db_group => NULL protected _db_applied => array(0) protected _db_pending => array(0) protected _db_reset => bool TRUE protected _db_builder => NULL protected _with_applied => array(0) protected _cast_data => array(0) protected _errors_filename => string(4) "task" }{ public affected_rows => NULL public client_info => NULL public client_version => NULL public connect_errno => NULL public connect_error => NULL public errno => NULL public error => NULL public error_list => NULL public field_count => NULL public host_info => NULL public info => NULL public insert_id => NULL public server_info => NULL public server_version => NULL public stat => NULL public sqlstate => NULL public protocol_version => NULL public thread_id => NULL public warning_count => NULL }protected _config => array(6) ( "type" => string(6) "MySQLi" "connection" => array(3) ( "hostname" => string(9) "localhost" "database" => string(9) "uznavalka" "persistent" => bool FALSE ) "table_prefix" => string(0) "" "charset" => string(7) "utf8mb4" "caching" => bool FALSE "profiling" => bool FALSE ) }{ protected _belongs_to => array(2) ( "category" => array(2) ( "model" => string(8) "Category" "foreign_key" => string(11) "category_id" ) "human" => array(2) ( "model" => string(5) "Human" "foreign_key" => string(8) "human_id" ) ) protected _has_many => array(4) ( "answers" => array(4) ( "model" => string(6) "Answer" "foreign_key" => string(7) "task_id" "through" => NULL "far_key" => string(9) "answer_id" ) "tattaches" => array(4) ( "model" => string(7) "Tattach" "foreign_key" => string(7) "task_id" "through" => NULL "far_key" => string(10) "tattach_id" ) "tops" => array(4) ( "model" => string(3) "Top" "foreign_key" => string(7) "task_id" "through" => NULL "far_key" => string(6) "top_id" ) "ipsviews" => array(4) ( "model" => string(7) "Ipsview" "foreign_key" => string(7) "task_id" "through" => NULL "far_key" => string(10) "ipsview_id" ) ) protected _reload_on_wakeup => bool FALSE protected _has_one => array(0) protected _load_with => array(0) protected _validation => NULL protected _object => array(16) ( "id" => string(8) "16675451" "category_id" => string(1) "7" "text" => string(3964) "<span class="sg-text sg-text--large sg-text--bold sg-text--break-words brn-qpage-next-question-box-content__primary"> Опыт №1: О …" "zn_id" => string(8) "52411110" "date_time" => string(19) "2023-11-26 18:05:02" "views" => string(1) "4" "human_id" => string(8) "15663595" "ya_spell" => string(1) "0" "category_key" => string(6) "803176" "has_gpt" => string(1) "1" "source" => NULL "source_id" => NULL "text_for_search" => string(3561) "Опыт №1: Определение прозрачности воды Необходимое оборудование и вещества: стеклянный мерный цилиндр с плоским дном, печатный т …" "related" => string(107) "["11464428","2582542","15085328","11169084","8952576","13810661","6452450","3182316","14560936","13076381"]" "good" => NULL "bad" => NULL ) protected _changed => array(0) protected _original_values => array(16) ( "id" => string(8) "16675451" "category_id" => string(1) "7" "text" => string(3964) "<span class="sg-text sg-text--large sg-text--bold sg-text--break-words brn-qpage-next-question-box-content__primary"> Опыт №1: О …" "zn_id" => string(8) "52411110" "date_time" => string(19) "2023-11-26 18:05:02" "views" => string(1) "4" "human_id" => string(8) "15663595" "ya_spell" => string(1) "0" "category_key" => string(6) "803176" "has_gpt" => string(1) "1" "source" => NULL "source_id" => NULL "text_for_search" => string(3561) "Опыт №1: Определение прозрачности воды Необходимое оборудование и вещества: стеклянный мерный цилиндр с плоским дном, печатный т …" "related" => string(107) "["11464428","2582542","15085328","11169084","8952576","13810661","6452450","3182316","14560936","13076381"]" "good" => NULL "bad" => NULL ) protected _related => array(2) ( "human" => object Model_Human(34)4 => object Model_Task(34){ protected _db_group => string(5) "looka" protected _has_many => array(4) ( "universities" => array(5) ( "model" => string(10) "university" "foreign_key" => string(8) "human_id" "through" => string(19) "humans_universities" "far_key" => string(13) "university_id" "_table_columns" => array(5) ( "faculty_id" => NULL "chair_id" => NULL "graduation" => NULL "education_form" => NULL "education_status" => NULL ) ) "humans_universities" => array(4) ( "model" => string(17) "Humans_University" "foreign_key" => string(8) "human_id" "through" => NULL "far_key" => string(20) "humans_university_id" ) "schools" => array(5) ( "model" => string(6) "school" "foreign_key" => string(8) "human_id" "through" => string(14) "humans_schools" "far_key" => string(9) "school_id" "_table_columns" => array(6) ( "year_from" => NULL "year_to" => NULL "year_graduated" => NULL "class" => NULL "speciality" => NULL "type" => NULL ) ) "humans_schools" => array(4) ( "model" => string(13) "Humans_School" "foreign_key" => string(8) "human_id" "through" => NULL "far_key" => string(16) "humans_school_id" ) ) protected _belongs_to => array(4) ( "lastname" => array(2) ( "model" => string(8) "Lastname" "foreign_key" => string(11) "lastname_id" ) "firstname" => array(2) ( "model" => string(9) "Firstname" "foreign_key" => string(12) "firstname_id" ) "country" => array(2) ( "model" => string(7) "Country" "foreign_key" => string(10) "country_id" ) "city" => array(2) ( "model" => string(4) "City" "foreign_key" => string(7) "city_id" ) ) protected _reload_on_wakeup => bool FALSE protected _has_one => array(0) protected _load_with => array(0) protected _validation => NULL protected _object => array(21) ( "id" => string(8) "15663595" "lastname_id" => string(5) "76595" "firstname_id" => string(4) "1764" "nickname" => string(0) "" "vk_id" => string(9) "283442602" "bdate" => string(10) "2004-05-20" "info" => NULL "photo" => string(67) "https://sun9-1.userapi.com/c824500/v824500136/c93df/S53bPSQXfGk.jpg" "city_id" => NULL "country_id" => string(3) "121" "home_town" => NULL "home_phone" => string(0) "" "skype" => NULL "facebook" => string(16) "+376763392684942" "twitter" => NULL "livejournal" => NULL "instagram" => NULL "occupation_type" => NULL "occupation_name" => NULL "rate" => string(2) "12" "count_firstnames_lastnames" => NULL ) protected _changed => array(0) protected _original_values => array(21) ( "id" => string(8) "15663595" "lastname_id" => string(5) "76595" "firstname_id" => string(4) "1764" "nickname" => string(0) "" "vk_id" => string(9) "283442602" "bdate" => string(10) "2004-05-20" "info" => NULL "photo" => string(67) "https://sun9-1.userapi.com/c824500/v824500136/c93df/S53bPSQXfGk.jpg" "city_id" => NULL "country_id" => string(3) "121" "home_town" => NULL "home_phone" => string(0) "" "skype" => NULL "facebook" => string(16) "+376763392684942" "twitter" => NULL "livejournal" => NULL "instagram" => NULL "occupation_type" => NULL "occupation_name" => NULL "rate" => string(2) "12" "count_firstnames_lastnames" => NULL ) protected _related => array(2) ( "lastname" => object Model_Lastname(34)"category" => object Model_Category(35){ protected _db_group => string(5) "looka" protected _reload_on_wakeup => bool FALSE protected _has_one => array(0) protected _belongs_to => array(0) protected _has_many => array(0) protected _load_with => array(0) protected _validation => NULL protected _object => array(2) ( "id" => string(5) "76595" "title" => string(14) "Горбуль" ) protected _changed => array(0) protected _original_values => array(2) ( "id" => string(5) "76595" "title" => string(14) "Горбуль" ) protected _related => array(0) protected _valid => bool TRUE protected _loaded => bool TRUE protected _saved => bool FALSE protected _sorting => NULL protected _foreign_key_suffix => string(3) "_id" protected _object_name => string(8) "lastname" protected _object_plural => string(9) "lastnames" protected _table_name => string(9) "lastnames" protected _table_columns => array(2) ( "id" => array(13) ( ... ) "title" => array(12) ( ... ) ) protected _updated_column => NULL protected _created_column => NULL protected _serialize_columns => array(0) protected _primary_key => string(2) "id" protected _primary_key_value => string(5) "76595" protected _table_names_plural => bool TRUE protected _db => object Database_MySQLi(6)"firstname" => object Model_Firstname(34){ protected _connection_id => string(40) "d012da34ee02fd2c23a3776760afb1e9d4e5c681" protected _identifier => string(1) "`" public last_query => string(166) "SELECT `finder_lastname`.`id` AS `id`, `finder_lastname`.`title` AS `title` FROM `finder_lastnames` AS `finder_lastname` WHERE ` …" protected _instance => string(5) "looka" protected _connection => object mysqli(19) { ... } protected _config => array(5) ( ... ) }protected _db_applied => array(0) protected _db_pending => array(0) protected _db_reset => bool TRUE protected _db_builder => NULL protected _with_applied => array(0) protected _cast_data => array(0) protected _errors_filename => string(8) "lastname" }{ protected _db_group => string(5) "looka" protected _has_many => array(1) ( "humans" => array(4) ( ... ) ) protected _reload_on_wakeup => bool FALSE protected _has_one => array(0) protected _belongs_to => array(0) protected _load_with => array(0) protected _validation => NULL protected _object => array(2) ( "id" => string(4) "1764" "title" => string(10) "Илона" ) protected _changed => array(0) protected _original_values => array(2) ( "id" => string(4) "1764" "title" => string(10) "Илона" ) protected _related => array(0) protected _valid => bool TRUE protected _loaded => bool TRUE protected _saved => bool FALSE protected _sorting => NULL protected _foreign_key_suffix => string(3) "_id" protected _object_name => string(9) "firstname" protected _object_plural => string(10) "firstnames" protected _table_name => string(10) "firstnames" protected _table_columns => array(2) ( "id" => array(13) ( ... ) "title" => array(12) ( ... ) ) protected _updated_column => NULL protected _created_column => NULL protected _serialize_columns => array(0) protected _primary_key => string(2) "id" protected _primary_key_value => string(4) "1764" protected _table_names_plural => bool TRUE protected _db => object Database_MySQLi(6)) protected _valid => bool TRUE protected _loaded => bool TRUE protected _saved => bool FALSE protected _sorting => NULL protected _foreign_key_suffix => string(3) "_id" protected _object_name => string(5) "human" protected _object_plural => string(6) "humans" protected _table_name => string(6) "humans" protected _table_columns => array(21) ( "id" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(2) "id" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 1 "display" => string(2) "11" "comment" => string(0) "" "extra" => string(14) "auto_increment" "key" => string(3) "PRI" "privileges" => string(31) "select,insert,update,references" ) "lastname_id" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(11) "lastname_id" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 2 "display" => string(2) "11" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "firstname_id" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(12) "firstname_id" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 3 "display" => string(2) "11" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "nickname" => array(12) ( "type" => string(6) "string" "column_name" => string(8) "nickname" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 4 "character_maximum_length" => string(3) "255" "collation_name" => string(18) "utf8mb4_unicode_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "vk_id" => array(13) ( "type" => string(3) "int" "min" => string(20) "-9223372036854775808" "max" => string(19) "9223372036854775807" "column_name" => string(5) "vk_id" "column_default" => NULL "data_type" => string(6) "bigint" "is_nullable" => bool TRUE "ordinal_position" => integer 5 "display" => string(2) "20" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "bdate" => array(10) ( "type" => string(6) "string" "column_name" => string(5) "bdate" "column_default" => NULL "data_type" => string(4) "date" "is_nullable" => bool TRUE "ordinal_position" => integer 6 "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "info" => array(12) ( "type" => string(6) "string" "column_name" => string(4) "info" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 7 "character_maximum_length" => string(4) "1023" "collation_name" => string(18) "utf8mb4_unicode_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "photo" => array(12) ( "type" => string(6) "string" "column_name" => string(5) "photo" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 8 "character_maximum_length" => string(3) "255" "collation_name" => string(18) "utf8mb4_unicode_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "city_id" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(7) "city_id" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool TRUE "ordinal_position" => integer 9 "display" => string(2) "11" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "country_id" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(10) "country_id" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool TRUE "ordinal_position" => integer 10 "display" => string(2) "11" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "home_town" => array(12) ( "type" => string(6) "string" "column_name" => string(9) "home_town" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 11 "character_maximum_length" => string(3) "255" "collation_name" => string(18) "utf8mb4_unicode_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "home_phone" => array(12) ( "type" => string(6) "string" "column_name" => string(10) "home_phone" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 12 "character_maximum_length" => string(2) "63" "collation_name" => string(18) "utf8mb4_unicode_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "skype" => array(12) ( "type" => string(6) "string" "column_name" => string(5) "skype" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 13 "character_maximum_length" => string(3) "127" "collation_name" => string(18) "utf8mb4_unicode_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "facebook" => array(12) ( "type" => string(6) "string" "column_name" => string(8) "facebook" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 14 "character_maximum_length" => string(3) "127" "collation_name" => string(18) "utf8mb4_unicode_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "twitter" => array(12) ( "type" => string(6) "string" "column_name" => string(7) "twitter" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 15 "character_maximum_length" => string(3) "127" "collation_name" => string(18) "utf8mb4_unicode_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "livejournal" => array(12) ( "type" => string(6) "string" "column_name" => string(11) "livejournal" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 16 "character_maximum_length" => string(3) "127" "collation_name" => string(18) "utf8mb4_unicode_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "instagram" => array(12) ( "type" => string(6) "string" "column_name" => string(9) "instagram" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 17 "character_maximum_length" => string(3) "127" "collation_name" => string(18) "utf8mb4_unicode_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "occupation_type" => array(12) ( "type" => string(6) "string" "column_name" => string(15) "occupation_type" "column_default" => NULL "data_type" => string(4) "enum" "is_nullable" => bool TRUE "ordinal_position" => integer 18 "collation_name" => string(18) "utf8mb4_unicode_ci" "options" => array(3) ( 0 => string(4) "work" 1 => string(6) "school" 2 => string(10) "university" ) "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "occupation_name" => array(12) ( "type" => string(6) "string" "column_name" => string(15) "occupation_name" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 19 "character_maximum_length" => string(3) "255" "collation_name" => string(18) "utf8mb4_unicode_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "rate" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(4) "rate" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 20 "display" => string(2) "11" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "count_firstnames_lastnames" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(26) "count_firstnames_lastnames" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool TRUE "ordinal_position" => integer 21 "display" => string(2) "11" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) ) protected _updated_column => NULL protected _created_column => NULL protected _serialize_columns => array(0) protected _primary_key => string(2) "id" protected _primary_key_value => string(8) "15663595" protected _table_names_plural => bool TRUE protected _db => object Database_MySQLi(6){ protected _connection_id => string(40) "d012da34ee02fd2c23a3776760afb1e9d4e5c681" protected _identifier => string(1) "`" public last_query => string(166) "SELECT `finder_lastname`.`id` AS `id`, `finder_lastname`.`title` AS `title` FROM `finder_lastnames` AS `finder_lastname` WHERE ` …" protected _instance => string(5) "looka" protected _connection => object mysqli(19) { ... } protected _config => array(5) ( ... ) }protected _db_applied => array(0) protected _db_pending => array(0) protected _db_reset => bool TRUE protected _db_builder => NULL protected _with_applied => array(0) protected _cast_data => array(0) protected _errors_filename => string(9) "firstname" }{ protected _connection_id => string(40) "d012da34ee02fd2c23a3776760afb1e9d4e5c681" protected _identifier => string(1) "`" public last_query => string(166) "SELECT `finder_lastname`.`id` AS `id`, `finder_lastname`.`title` AS `title` FROM `finder_lastnames` AS `finder_lastname` WHERE ` …" protected _instance => string(5) "looka" protected _connection => object mysqli(19)protected _db_applied => array(0) protected _db_pending => array(0) protected _db_reset => bool TRUE protected _db_builder => NULL protected _with_applied => array(0) protected _cast_data => array(0) protected _errors_filename => string(5) "human" }{ public affected_rows => NULL public client_info => NULL public client_version => NULL public connect_errno => NULL public connect_error => NULL public errno => NULL public error => NULL public error_list => NULL public field_count => NULL public host_info => NULL public info => NULL public insert_id => NULL public server_info => NULL public server_version => NULL public stat => NULL public sqlstate => NULL public protocol_version => NULL public thread_id => NULL public warning_count => NULL }protected _config => array(5) ( "type" => string(6) "MySQLi" "connection" => array(3) ( "hostname" => string(9) "localhost" "database" => string(5) "looka" "persistent" => bool FALSE ) "table_prefix" => string(7) "finder_" "charset" => string(7) "utf8mb4" "caching" => bool FALSE ) }{ protected _has_many => array(2) ( "tasks" => array(4) ( "model" => string(4) "Task" "foreign_key" => string(11) "category_id" "through" => NULL "far_key" => string(7) "task_id" ) "tops" => array(4) ( "model" => string(3) "Top" "foreign_key" => string(11) "category_id" "through" => NULL "far_key" => string(6) "top_id" ) ) protected prefix_url => string(9) "/subject/" protected _reload_on_wakeup => bool FALSE protected _has_one => array(0) protected _belongs_to => array(0) protected _load_with => array(0) protected _validation => NULL protected _object => array(4) ( "id" => string(1) "7" "name" => string(10) "Химия" "url" => string(9) "chemistry" "count" => string(6) "799022" ) protected _changed => array(0) protected _original_values => array(4) ( "id" => string(1) "7" "name" => string(10) "Химия" "url" => string(9) "chemistry" "count" => string(6) "799022" ) protected _related => array(0) protected _valid => bool TRUE protected _loaded => bool TRUE protected _saved => bool FALSE protected _sorting => NULL protected _foreign_key_suffix => string(3) "_id" protected _object_name => string(8) "category" protected _object_plural => string(10) "categories" protected _table_name => string(10) "categories" protected _table_columns => array(4) ( "id" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(2) "id" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 1 "display" => string(2) "11" "comment" => string(0) "" "extra" => string(14) "auto_increment" "key" => string(3) "PRI" "privileges" => string(31) "select,insert,update,references" ) "name" => array(12) ( "type" => string(6) "string" "column_name" => string(4) "name" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool FALSE "ordinal_position" => integer 2 "character_maximum_length" => string(3) "255" "collation_name" => string(18) "utf8mb3_unicode_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "url" => array(12) ( "type" => string(6) "string" "column_name" => string(3) "url" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool FALSE "ordinal_position" => integer 3 "character_maximum_length" => string(3) "255" "collation_name" => string(18) "utf8mb3_unicode_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "count" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(5) "count" "column_default" => string(1) "0" "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 4 "display" => string(2) "11" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) ) protected _updated_column => NULL protected _created_column => NULL protected _serialize_columns => array(0) protected _primary_key => string(2) "id" protected _primary_key_value => string(1) "7" protected _table_names_plural => bool TRUE protected _db => object Database_MySQLi(6)) protected _valid => bool TRUE protected _loaded => bool TRUE protected _saved => bool FALSE protected _sorting => NULL protected _foreign_key_suffix => string(3) "_id" protected _object_name => string(4) "task" protected _object_plural => string(5) "tasks" protected _table_name => string(5) "tasks" protected _table_columns => array(16) ( "id" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(2) "id" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 1 "display" => string(2) "11" "comment" => string(0) "" "extra" => string(14) "auto_increment" "key" => string(3) "PRI" "privileges" => string(31) "select,insert,update,references" ) "category_id" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(11) "category_id" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 2 "display" => string(2) "11" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "text" => array(12) ( "type" => string(6) "string" "character_maximum_length" => string(5) "65535" "column_name" => string(4) "text" "column_default" => NULL "data_type" => string(4) "text" "is_nullable" => bool FALSE "ordinal_position" => integer 3 "collation_name" => string(18) "utf8mb3_unicode_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "zn_id" => array(13) ( "type" => string(3) "int" "min" => string(20) "-9223372036854775808" "max" => string(19) "9223372036854775807" "column_name" => string(5) "zn_id" "column_default" => string(1) "0" "data_type" => string(6) "bigint" "is_nullable" => bool FALSE "ordinal_position" => integer 4 "display" => string(2) "20" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "date_time" => array(10) ( "type" => string(6) "string" "column_name" => string(9) "date_time" "column_default" => string(19) "current_timestamp()" "data_type" => string(8) "datetime" "is_nullable" => bool FALSE "ordinal_position" => integer 5 "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "views" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(5) "views" "column_default" => string(1) "0" "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 6 "display" => string(2) "11" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "human_id" => array(13) ( "type" => string(3) "int" "min" => string(20) "-9223372036854775808" "max" => string(19) "9223372036854775807" "column_name" => string(8) "human_id" "column_default" => NULL "data_type" => string(6) "bigint" "is_nullable" => bool TRUE "ordinal_position" => integer 7 "display" => string(2) "20" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "ya_spell" => array(12) ( "type" => string(6) "string" "column_name" => string(8) "ya_spell" "column_default" => string(1) "0" "data_type" => string(4) "enum" "is_nullable" => bool FALSE "ordinal_position" => integer 8 "collation_name" => string(18) "utf8mb3_unicode_ci" "options" => array(2) ( 0 => string(1) "0" 1 => string(1) "1" ) "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "category_key" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(12) "category_key" "column_default" => string(1) "0" "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 9 "display" => string(2) "11" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "has_gpt" => array(12) ( "type" => string(6) "string" "column_name" => string(7) "has_gpt" "column_default" => NULL "data_type" => string(4) "enum" "is_nullable" => bool TRUE "ordinal_position" => integer 10 "collation_name" => string(18) "utf8mb3_unicode_ci" "options" => array(4) ( 0 => string(1) "0" 1 => string(1) "1" 2 => string(12) "has_attaches" 3 => string(4) "skip" ) "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "source" => array(12) ( "type" => string(6) "string" "column_name" => string(6) "source" "column_default" => NULL "data_type" => string(4) "enum" "is_nullable" => bool TRUE "ordinal_position" => integer 11 "collation_name" => string(18) "utf8mb3_unicode_ci" "options" => array(1) ( 0 => string(12) "vashurok.com" ) "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "source_id" => array(13) ( "type" => string(3) "int" "min" => string(20) "-9223372036854775808" "max" => string(19) "9223372036854775807" "column_name" => string(9) "source_id" "column_default" => NULL "data_type" => string(6) "bigint" "is_nullable" => bool TRUE "ordinal_position" => integer 12 "display" => string(2) "20" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "text_for_search" => array(12) ( "type" => string(6) "string" "character_maximum_length" => string(5) "65535" "column_name" => string(15) "text_for_search" "column_default" => NULL "data_type" => string(4) "text" "is_nullable" => bool TRUE "ordinal_position" => integer 13 "collation_name" => string(18) "utf8mb3_unicode_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "related" => array(12) ( "type" => string(6) "string" "column_name" => string(7) "related" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 14 "character_maximum_length" => string(4) "1023" "collation_name" => string(18) "utf8mb3_unicode_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "good" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(4) "good" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool TRUE "ordinal_position" => integer 15 "display" => string(2) "11" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "bad" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(3) "bad" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool TRUE "ordinal_position" => integer 16 "display" => string(2) "11" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) ) protected _updated_column => NULL protected _created_column => NULL protected _serialize_columns => array(0) protected _primary_key => string(2) "id" protected _primary_key_value => string(8) "16675451" protected _table_names_plural => bool TRUE protected _db => object Database_MySQLi(6){ protected _connection_id => string(40) "9fdecc117b583662f3b3d15c4c4ac71fc778e18d" protected _identifier => string(1) "`" public last_query => string(185) "SELECT `category`.`id` AS `id`, `category`.`name` AS `name`, `category`.`url` AS `url`, `category`.`count` AS `count` FROM `cate …" protected _instance => string(7) "default" protected _connection => object mysqli(19)protected _db_group => NULL protected _db_applied => array(0) protected _db_pending => array(0) protected _db_reset => bool TRUE protected _db_builder => NULL protected _with_applied => array(0) protected _cast_data => array(0) protected _errors_filename => string(8) "category" }{ public affected_rows => NULL public client_info => NULL public client_version => NULL public connect_errno => NULL public connect_error => NULL public errno => NULL public error => NULL public error_list => NULL public field_count => NULL public host_info => NULL public info => NULL public insert_id => NULL public server_info => NULL public server_version => NULL public stat => NULL public sqlstate => NULL public protocol_version => NULL public thread_id => NULL public warning_count => NULL }protected _config => array(6) ( "type" => string(6) "MySQLi" "connection" => array(3) ( "hostname" => string(9) "localhost" "database" => string(9) "uznavalka" "persistent" => bool FALSE ) "table_prefix" => string(0) "" "charset" => string(7) "utf8mb4" "caching" => bool FALSE "profiling" => bool FALSE ) }{ protected _connection_id => string(40) "9fdecc117b583662f3b3d15c4c4ac71fc778e18d" protected _identifier => string(1) "`" public last_query => string(185) "SELECT `category`.`id` AS `id`, `category`.`name` AS `name`, `category`.`url` AS `url`, `category`.`count` AS `count` FROM `cate …" protected _instance => string(7) "default" protected _connection => object mysqli(19)protected _db_group => NULL protected _db_applied => array(0) protected _db_pending => array(0) protected _db_reset => bool TRUE protected _db_builder => NULL protected _with_applied => array(0) protected _cast_data => array(0) protected _errors_filename => string(4) "task" }{ public affected_rows => NULL public client_info => NULL public client_version => NULL public connect_errno => NULL public connect_error => NULL public errno => NULL public error => NULL public error_list => NULL public field_count => NULL public host_info => NULL public info => NULL public insert_id => NULL public server_info => NULL public server_version => NULL public stat => NULL public sqlstate => NULL public protocol_version => NULL public thread_id => NULL public warning_count => NULL }protected _config => array(6) ( "type" => string(6) "MySQLi" "connection" => array(3) ( "hostname" => string(9) "localhost" "database" => string(9) "uznavalka" "persistent" => bool FALSE ) "table_prefix" => string(0) "" "charset" => string(7) "utf8mb4" "caching" => bool FALSE "profiling" => bool FALSE ) }{ protected _belongs_to => array(2) ( "category" => array(2) ( "model" => string(8) "Category" "foreign_key" => string(11) "category_id" ) "human" => array(2) ( "model" => string(5) "Human" "foreign_key" => string(8) "human_id" ) ) protected _has_many => array(4) ( "answers" => array(4) ( "model" => string(6) "Answer" "foreign_key" => string(7) "task_id" "through" => NULL "far_key" => string(9) "answer_id" ) "tattaches" => array(4) ( "model" => string(7) "Tattach" "foreign_key" => string(7) "task_id" "through" => NULL "far_key" => string(10) "tattach_id" ) "tops" => array(4) ( "model" => string(3) "Top" "foreign_key" => string(7) "task_id" "through" => NULL "far_key" => string(6) "top_id" ) "ipsviews" => array(4) ( "model" => string(7) "Ipsview" "foreign_key" => string(7) "task_id" "through" => NULL "far_key" => string(10) "ipsview_id" ) ) protected _reload_on_wakeup => bool FALSE protected _has_one => array(0) protected _load_with => array(0) protected _validation => NULL protected _object => array(16) ( "id" => string(8) "13655758" "category_id" => string(1) "7" "text" => string(300) "<span class="sg-text sg-text--break-words brn-qpage-next-question-box-content__secondary"> скільки грамів натрію карбонату та во …" "zn_id" => string(8) "40262910" "date_time" => string(19) "2023-07-01 01:22:38" "views" => string(1) "2" "human_id" => string(8) "19740870" "ya_spell" => string(1) "0" "category_key" => string(6) "643914" "has_gpt" => string(1) "1" "source" => NULL "source_id" => NULL "text_for_search" => string(201) "скільки грамів натрію карбонату та води потрібно взяти, щоб виготовити 300 г розчину з масовою часткою солі 25%" "related" => string(121) "["11304668","12053800","11420828","11399677","12715641","11321139","11850519","9623947","11684177","11961224","12953770"]" "good" => NULL "bad" => NULL ) protected _changed => array(0) protected _original_values => array(16) ( "id" => string(8) "13655758" "category_id" => string(1) "7" "text" => string(300) "<span class="sg-text sg-text--break-words brn-qpage-next-question-box-content__secondary"> скільки грамів натрію карбонату та во …" "zn_id" => string(8) "40262910" "date_time" => string(19) "2023-07-01 01:22:38" "views" => string(1) "2" "human_id" => string(8) "19740870" "ya_spell" => string(1) "0" "category_key" => string(6) "643914" "has_gpt" => string(1) "1" "source" => NULL "source_id" => NULL "text_for_search" => string(201) "скільки грамів натрію карбонату та води потрібно взяти, щоб виготовити 300 г розчину з масовою часткою солі 25%" "related" => string(121) "["11304668","12053800","11420828","11399677","12715641","11321139","11850519","9623947","11684177","11961224","12953770"]" "good" => NULL "bad" => NULL ) protected _related => array(2) ( "human" => object Model_Human(34)5 => object Model_Task(34){ protected _db_group => string(5) "looka" protected _has_many => array(4) ( "universities" => array(5) ( "model" => string(10) "university" "foreign_key" => string(8) "human_id" "through" => string(19) "humans_universities" "far_key" => string(13) "university_id" "_table_columns" => array(5) ( "faculty_id" => NULL "chair_id" => NULL "graduation" => NULL "education_form" => NULL "education_status" => NULL ) ) "humans_universities" => array(4) ( "model" => string(17) "Humans_University" "foreign_key" => string(8) "human_id" "through" => NULL "far_key" => string(20) "humans_university_id" ) "schools" => array(5) ( "model" => string(6) "school" "foreign_key" => string(8) "human_id" "through" => string(14) "humans_schools" "far_key" => string(9) "school_id" "_table_columns" => array(6) ( "year_from" => NULL "year_to" => NULL "year_graduated" => NULL "class" => NULL "speciality" => NULL "type" => NULL ) ) "humans_schools" => array(4) ( "model" => string(13) "Humans_School" "foreign_key" => string(8) "human_id" "through" => NULL "far_key" => string(16) "humans_school_id" ) ) protected _belongs_to => array(4) ( "lastname" => array(2) ( "model" => string(8) "Lastname" "foreign_key" => string(11) "lastname_id" ) "firstname" => array(2) ( "model" => string(9) "Firstname" "foreign_key" => string(12) "firstname_id" ) "country" => array(2) ( "model" => string(7) "Country" "foreign_key" => string(10) "country_id" ) "city" => array(2) ( "model" => string(4) "City" "foreign_key" => string(7) "city_id" ) ) protected _reload_on_wakeup => bool FALSE protected _has_one => array(0) protected _load_with => array(0) protected _validation => NULL protected _object => array(21) ( "id" => string(8) "19740870" "lastname_id" => string(5) "62469" "firstname_id" => string(3) "441" "nickname" => string(0) "" "vk_id" => string(9) "278370020" "bdate" => string(10) "2004-11-21" "info" => NULL "photo" => string(67) "https://sun9-6.userapi.com/c840720/v840720834/631a8/TRFu3CVfgGo.jpg" "city_id" => string(3) "147" "country_id" => string(1) "1" "home_town" => NULL "home_phone" => string(20) "Надо скажу!" "skype" => NULL "facebook" => NULL "twitter" => NULL "livejournal" => NULL "instagram" => NULL "occupation_type" => string(6) "school" "occupation_name" => string(48) "Половинская средняя школа" "rate" => string(2) "13" "count_firstnames_lastnames" => NULL ) protected _changed => array(0) protected _original_values => array(21) ( "id" => string(8) "19740870" "lastname_id" => string(5) "62469" "firstname_id" => string(3) "441" "nickname" => string(0) "" "vk_id" => string(9) "278370020" "bdate" => string(10) "2004-11-21" "info" => NULL "photo" => string(67) "https://sun9-6.userapi.com/c840720/v840720834/631a8/TRFu3CVfgGo.jpg" "city_id" => string(3) "147" "country_id" => string(1) "1" "home_town" => NULL "home_phone" => string(20) "Надо скажу!" "skype" => NULL "facebook" => NULL "twitter" => NULL "livejournal" => NULL "instagram" => NULL "occupation_type" => string(6) "school" "occupation_name" => string(48) "Половинская средняя школа" "rate" => string(2) "13" "count_firstnames_lastnames" => NULL ) protected _related => array(2) ( "lastname" => object Model_Lastname(34)"category" => object Model_Category(35){ protected _db_group => string(5) "looka" protected _reload_on_wakeup => bool FALSE protected _has_one => array(0) protected _belongs_to => array(0) protected _has_many => array(0) protected _load_with => array(0) protected _validation => NULL protected _object => array(2) ( "id" => string(5) "62469" "title" => string(14) "Кадышев" ) protected _changed => array(0) protected _original_values => array(2) ( "id" => string(5) "62469" "title" => string(14) "Кадышев" ) protected _related => array(0) protected _valid => bool TRUE protected _loaded => bool TRUE protected _saved => bool FALSE protected _sorting => NULL protected _foreign_key_suffix => string(3) "_id" protected _object_name => string(8) "lastname" protected _object_plural => string(9) "lastnames" protected _table_name => string(9) "lastnames" protected _table_columns => array(2) ( "id" => array(13) ( ... ) "title" => array(12) ( ... ) ) protected _updated_column => NULL protected _created_column => NULL protected _serialize_columns => array(0) protected _primary_key => string(2) "id" protected _primary_key_value => string(5) "62469" protected _table_names_plural => bool TRUE protected _db => object Database_MySQLi(6)"firstname" => object Model_Firstname(34){ protected _connection_id => string(40) "d012da34ee02fd2c23a3776760afb1e9d4e5c681" protected _identifier => string(1) "`" public last_query => string(166) "SELECT `finder_lastname`.`id` AS `id`, `finder_lastname`.`title` AS `title` FROM `finder_lastnames` AS `finder_lastname` WHERE ` …" protected _instance => string(5) "looka" protected _connection => object mysqli(19) { ... } protected _config => array(5) ( ... ) }protected _db_applied => array(0) protected _db_pending => array(0) protected _db_reset => bool TRUE protected _db_builder => NULL protected _with_applied => array(0) protected _cast_data => array(0) protected _errors_filename => string(8) "lastname" }{ protected _db_group => string(5) "looka" protected _has_many => array(1) ( "humans" => array(4) ( ... ) ) protected _reload_on_wakeup => bool FALSE protected _has_one => array(0) protected _belongs_to => array(0) protected _load_with => array(0) protected _validation => NULL protected _object => array(2) ( "id" => string(3) "441" "title" => string(12) "Богдан" ) protected _changed => array(0) protected _original_values => array(2) ( "id" => string(3) "441" "title" => string(12) "Богдан" ) protected _related => array(0) protected _valid => bool TRUE protected _loaded => bool TRUE protected _saved => bool FALSE protected _sorting => NULL protected _foreign_key_suffix => string(3) "_id" protected _object_name => string(9) "firstname" protected _object_plural => string(10) "firstnames" protected _table_name => string(10) "firstnames" protected _table_columns => array(2) ( "id" => array(13) ( ... ) "title" => array(12) ( ... ) ) protected _updated_column => NULL protected _created_column => NULL protected _serialize_columns => array(0) protected _primary_key => string(2) "id" protected _primary_key_value => string(3) "441" protected _table_names_plural => bool TRUE protected _db => object Database_MySQLi(6)) protected _valid => bool TRUE protected _loaded => bool TRUE protected _saved => bool FALSE protected _sorting => NULL protected _foreign_key_suffix => string(3) "_id" protected _object_name => string(5) "human" protected _object_plural => string(6) "humans" protected _table_name => string(6) "humans" protected _table_columns => array(21) ( "id" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(2) "id" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 1 "display" => string(2) "11" "comment" => string(0) "" "extra" => string(14) "auto_increment" "key" => string(3) "PRI" "privileges" => string(31) "select,insert,update,references" ) "lastname_id" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(11) "lastname_id" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 2 "display" => string(2) "11" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "firstname_id" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(12) "firstname_id" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 3 "display" => string(2) "11" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "nickname" => array(12) ( "type" => string(6) "string" "column_name" => string(8) "nickname" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 4 "character_maximum_length" => string(3) "255" "collation_name" => string(18) "utf8mb4_unicode_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "vk_id" => array(13) ( "type" => string(3) "int" "min" => string(20) "-9223372036854775808" "max" => string(19) "9223372036854775807" "column_name" => string(5) "vk_id" "column_default" => NULL "data_type" => string(6) "bigint" "is_nullable" => bool TRUE "ordinal_position" => integer 5 "display" => string(2) "20" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "bdate" => array(10) ( "type" => string(6) "string" "column_name" => string(5) "bdate" "column_default" => NULL "data_type" => string(4) "date" "is_nullable" => bool TRUE "ordinal_position" => integer 6 "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "info" => array(12) ( "type" => string(6) "string" "column_name" => string(4) "info" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 7 "character_maximum_length" => string(4) "1023" "collation_name" => string(18) "utf8mb4_unicode_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "photo" => array(12) ( "type" => string(6) "string" "column_name" => string(5) "photo" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 8 "character_maximum_length" => string(3) "255" "collation_name" => string(18) "utf8mb4_unicode_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "city_id" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(7) "city_id" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool TRUE "ordinal_position" => integer 9 "display" => string(2) "11" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "country_id" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(10) "country_id" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool TRUE "ordinal_position" => integer 10 "display" => string(2) "11" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "home_town" => array(12) ( "type" => string(6) "string" "column_name" => string(9) "home_town" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 11 "character_maximum_length" => string(3) "255" "collation_name" => string(18) "utf8mb4_unicode_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "home_phone" => array(12) ( "type" => string(6) "string" "column_name" => string(10) "home_phone" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 12 "character_maximum_length" => string(2) "63" "collation_name" => string(18) "utf8mb4_unicode_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "skype" => array(12) ( "type" => string(6) "string" "column_name" => string(5) "skype" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 13 "character_maximum_length" => string(3) "127" "collation_name" => string(18) "utf8mb4_unicode_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "facebook" => array(12) ( "type" => string(6) "string" "column_name" => string(8) "facebook" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 14 "character_maximum_length" => string(3) "127" "collation_name" => string(18) "utf8mb4_unicode_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "twitter" => array(12) ( "type" => string(6) "string" "column_name" => string(7) "twitter" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 15 "character_maximum_length" => string(3) "127" "collation_name" => string(18) "utf8mb4_unicode_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "livejournal" => array(12) ( "type" => string(6) "string" "column_name" => string(11) "livejournal" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 16 "character_maximum_length" => string(3) "127" "collation_name" => string(18) "utf8mb4_unicode_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "instagram" => array(12) ( "type" => string(6) "string" "column_name" => string(9) "instagram" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 17 "character_maximum_length" => string(3) "127" "collation_name" => string(18) "utf8mb4_unicode_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "occupation_type" => array(12) ( "type" => string(6) "string" "column_name" => string(15) "occupation_type" "column_default" => NULL "data_type" => string(4) "enum" "is_nullable" => bool TRUE "ordinal_position" => integer 18 "collation_name" => string(18) "utf8mb4_unicode_ci" "options" => array(3) ( 0 => string(4) "work" 1 => string(6) "school" 2 => string(10) "university" ) "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "occupation_name" => array(12) ( "type" => string(6) "string" "column_name" => string(15) "occupation_name" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 19 "character_maximum_length" => string(3) "255" "collation_name" => string(18) "utf8mb4_unicode_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "rate" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(4) "rate" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 20 "display" => string(2) "11" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "count_firstnames_lastnames" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(26) "count_firstnames_lastnames" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool TRUE "ordinal_position" => integer 21 "display" => string(2) "11" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) ) protected _updated_column => NULL protected _created_column => NULL protected _serialize_columns => array(0) protected _primary_key => string(2) "id" protected _primary_key_value => string(8) "19740870" protected _table_names_plural => bool TRUE protected _db => object Database_MySQLi(6){ protected _connection_id => string(40) "d012da34ee02fd2c23a3776760afb1e9d4e5c681" protected _identifier => string(1) "`" public last_query => string(166) "SELECT `finder_lastname`.`id` AS `id`, `finder_lastname`.`title` AS `title` FROM `finder_lastnames` AS `finder_lastname` WHERE ` …" protected _instance => string(5) "looka" protected _connection => object mysqli(19) { ... } protected _config => array(5) ( ... ) }protected _db_applied => array(0) protected _db_pending => array(0) protected _db_reset => bool TRUE protected _db_builder => NULL protected _with_applied => array(0) protected _cast_data => array(0) protected _errors_filename => string(9) "firstname" }{ protected _connection_id => string(40) "d012da34ee02fd2c23a3776760afb1e9d4e5c681" protected _identifier => string(1) "`" public last_query => string(166) "SELECT `finder_lastname`.`id` AS `id`, `finder_lastname`.`title` AS `title` FROM `finder_lastnames` AS `finder_lastname` WHERE ` …" protected _instance => string(5) "looka" protected _connection => object mysqli(19)protected _db_applied => array(0) protected _db_pending => array(0) protected _db_reset => bool TRUE protected _db_builder => NULL protected _with_applied => array(0) protected _cast_data => array(0) protected _errors_filename => string(5) "human" }{ public affected_rows => NULL public client_info => NULL public client_version => NULL public connect_errno => NULL public connect_error => NULL public errno => NULL public error => NULL public error_list => NULL public field_count => NULL public host_info => NULL public info => NULL public insert_id => NULL public server_info => NULL public server_version => NULL public stat => NULL public sqlstate => NULL public protocol_version => NULL public thread_id => NULL public warning_count => NULL }protected _config => array(5) ( "type" => string(6) "MySQLi" "connection" => array(3) ( "hostname" => string(9) "localhost" "database" => string(5) "looka" "persistent" => bool FALSE ) "table_prefix" => string(7) "finder_" "charset" => string(7) "utf8mb4" "caching" => bool FALSE ) }{ protected _has_many => array(2) ( "tasks" => array(4) ( "model" => string(4) "Task" "foreign_key" => string(11) "category_id" "through" => NULL "far_key" => string(7) "task_id" ) "tops" => array(4) ( "model" => string(3) "Top" "foreign_key" => string(11) "category_id" "through" => NULL "far_key" => string(6) "top_id" ) ) protected prefix_url => string(9) "/subject/" protected _reload_on_wakeup => bool FALSE protected _has_one => array(0) protected _belongs_to => array(0) protected _load_with => array(0) protected _validation => NULL protected _object => array(4) ( "id" => string(1) "7" "name" => string(10) "Химия" "url" => string(9) "chemistry" "count" => string(6) "799022" ) protected _changed => array(0) protected _original_values => array(4) ( "id" => string(1) "7" "name" => string(10) "Химия" "url" => string(9) "chemistry" "count" => string(6) "799022" ) protected _related => array(0) protected _valid => bool TRUE protected _loaded => bool TRUE protected _saved => bool FALSE protected _sorting => NULL protected _foreign_key_suffix => string(3) "_id" protected _object_name => string(8) "category" protected _object_plural => string(10) "categories" protected _table_name => string(10) "categories" protected _table_columns => array(4) ( "id" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(2) "id" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 1 "display" => string(2) "11" "comment" => string(0) "" "extra" => string(14) "auto_increment" "key" => string(3) "PRI" "privileges" => string(31) "select,insert,update,references" ) "name" => array(12) ( "type" => string(6) "string" "column_name" => string(4) "name" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool FALSE "ordinal_position" => integer 2 "character_maximum_length" => string(3) "255" "collation_name" => string(18) "utf8mb3_unicode_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "url" => array(12) ( "type" => string(6) "string" "column_name" => string(3) "url" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool FALSE "ordinal_position" => integer 3 "character_maximum_length" => string(3) "255" "collation_name" => string(18) "utf8mb3_unicode_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "count" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(5) "count" "column_default" => string(1) "0" "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 4 "display" => string(2) "11" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) ) protected _updated_column => NULL protected _created_column => NULL protected _serialize_columns => array(0) protected _primary_key => string(2) "id" protected _primary_key_value => string(1) "7" protected _table_names_plural => bool TRUE protected _db => object Database_MySQLi(6)) protected _valid => bool TRUE protected _loaded => bool TRUE protected _saved => bool FALSE protected _sorting => NULL protected _foreign_key_suffix => string(3) "_id" protected _object_name => string(4) "task" protected _object_plural => string(5) "tasks" protected _table_name => string(5) "tasks" protected _table_columns => array(16) ( "id" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(2) "id" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 1 "display" => string(2) "11" "comment" => string(0) "" "extra" => string(14) "auto_increment" "key" => string(3) "PRI" "privileges" => string(31) "select,insert,update,references" ) "category_id" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(11) "category_id" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 2 "display" => string(2) "11" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "text" => array(12) ( "type" => string(6) "string" "character_maximum_length" => string(5) "65535" "column_name" => string(4) "text" "column_default" => NULL "data_type" => string(4) "text" "is_nullable" => bool FALSE "ordinal_position" => integer 3 "collation_name" => string(18) "utf8mb3_unicode_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "zn_id" => array(13) ( "type" => string(3) "int" "min" => string(20) "-9223372036854775808" "max" => string(19) "9223372036854775807" "column_name" => string(5) "zn_id" "column_default" => string(1) "0" "data_type" => string(6) "bigint" "is_nullable" => bool FALSE "ordinal_position" => integer 4 "display" => string(2) "20" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "date_time" => array(10) ( "type" => string(6) "string" "column_name" => string(9) "date_time" "column_default" => string(19) "current_timestamp()" "data_type" => string(8) "datetime" "is_nullable" => bool FALSE "ordinal_position" => integer 5 "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "views" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(5) "views" "column_default" => string(1) "0" "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 6 "display" => string(2) "11" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "human_id" => array(13) ( "type" => string(3) "int" "min" => string(20) "-9223372036854775808" "max" => string(19) "9223372036854775807" "column_name" => string(8) "human_id" "column_default" => NULL "data_type" => string(6) "bigint" "is_nullable" => bool TRUE "ordinal_position" => integer 7 "display" => string(2) "20" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "ya_spell" => array(12) ( "type" => string(6) "string" "column_name" => string(8) "ya_spell" "column_default" => string(1) "0" "data_type" => string(4) "enum" "is_nullable" => bool FALSE "ordinal_position" => integer 8 "collation_name" => string(18) "utf8mb3_unicode_ci" "options" => array(2) ( 0 => string(1) "0" 1 => string(1) "1" ) "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "category_key" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(12) "category_key" "column_default" => string(1) "0" "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 9 "display" => string(2) "11" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "has_gpt" => array(12) ( "type" => string(6) "string" "column_name" => string(7) "has_gpt" "column_default" => NULL "data_type" => string(4) "enum" "is_nullable" => bool TRUE "ordinal_position" => integer 10 "collation_name" => string(18) "utf8mb3_unicode_ci" "options" => array(4) ( 0 => string(1) "0" 1 => string(1) "1" 2 => string(12) "has_attaches" 3 => string(4) "skip" ) "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "source" => array(12) ( "type" => string(6) "string" "column_name" => string(6) "source" "column_default" => NULL "data_type" => string(4) "enum" "is_nullable" => bool TRUE "ordinal_position" => integer 11 "collation_name" => string(18) "utf8mb3_unicode_ci" "options" => array(1) ( 0 => string(12) "vashurok.com" ) "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "source_id" => array(13) ( "type" => string(3) "int" "min" => string(20) "-9223372036854775808" "max" => string(19) "9223372036854775807" "column_name" => string(9) "source_id" "column_default" => NULL "data_type" => string(6) "bigint" "is_nullable" => bool TRUE "ordinal_position" => integer 12 "display" => string(2) "20" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "text_for_search" => array(12) ( "type" => string(6) "string" "character_maximum_length" => string(5) "65535" "column_name" => string(15) "text_for_search" "column_default" => NULL "data_type" => string(4) "text" "is_nullable" => bool TRUE "ordinal_position" => integer 13 "collation_name" => string(18) "utf8mb3_unicode_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "related" => array(12) ( "type" => string(6) "string" "column_name" => string(7) "related" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 14 "character_maximum_length" => string(4) "1023" "collation_name" => string(18) "utf8mb3_unicode_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "good" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(4) "good" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool TRUE "ordinal_position" => integer 15 "display" => string(2) "11" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "bad" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(3) "bad" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool TRUE "ordinal_position" => integer 16 "display" => string(2) "11" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) ) protected _updated_column => NULL protected _created_column => NULL protected _serialize_columns => array(0) protected _primary_key => string(2) "id" protected _primary_key_value => string(8) "13655758" protected _table_names_plural => bool TRUE protected _db => object Database_MySQLi(6){ protected _connection_id => string(40) "9fdecc117b583662f3b3d15c4c4ac71fc778e18d" protected _identifier => string(1) "`" public last_query => string(185) "SELECT `category`.`id` AS `id`, `category`.`name` AS `name`, `category`.`url` AS `url`, `category`.`count` AS `count` FROM `cate …" protected _instance => string(7) "default" protected _connection => object mysqli(19)protected _db_group => NULL protected _db_applied => array(0) protected _db_pending => array(0) protected _db_reset => bool TRUE protected _db_builder => NULL protected _with_applied => array(0) protected _cast_data => array(0) protected _errors_filename => string(8) "category" }{ public affected_rows => NULL public client_info => NULL public client_version => NULL public connect_errno => NULL public connect_error => NULL public errno => NULL public error => NULL public error_list => NULL public field_count => NULL public host_info => NULL public info => NULL public insert_id => NULL public server_info => NULL public server_version => NULL public stat => NULL public sqlstate => NULL public protocol_version => NULL public thread_id => NULL public warning_count => NULL }protected _config => array(6) ( "type" => string(6) "MySQLi" "connection" => array(3) ( "hostname" => string(9) "localhost" "database" => string(9) "uznavalka" "persistent" => bool FALSE ) "table_prefix" => string(0) "" "charset" => string(7) "utf8mb4" "caching" => bool FALSE "profiling" => bool FALSE ) }{ protected _connection_id => string(40) "9fdecc117b583662f3b3d15c4c4ac71fc778e18d" protected _identifier => string(1) "`" public last_query => string(185) "SELECT `category`.`id` AS `id`, `category`.`name` AS `name`, `category`.`url` AS `url`, `category`.`count` AS `count` FROM `cate …" protected _instance => string(7) "default" protected _connection => object mysqli(19)protected _db_group => NULL protected _db_applied => array(0) protected _db_pending => array(0) protected _db_reset => bool TRUE protected _db_builder => NULL protected _with_applied => array(0) protected _cast_data => array(0) protected _errors_filename => string(4) "task" }{ public affected_rows => NULL public client_info => NULL public client_version => NULL public connect_errno => NULL public connect_error => NULL public errno => NULL public error => NULL public error_list => NULL public field_count => NULL public host_info => NULL public info => NULL public insert_id => NULL public server_info => NULL public server_version => NULL public stat => NULL public sqlstate => NULL public protocol_version => NULL public thread_id => NULL public warning_count => NULL }protected _config => array(6) ( "type" => string(6) "MySQLi" "connection" => array(3) ( "hostname" => string(9) "localhost" "database" => string(9) "uznavalka" "persistent" => bool FALSE ) "table_prefix" => string(0) "" "charset" => string(7) "utf8mb4" "caching" => bool FALSE "profiling" => bool FALSE ) }{ protected _belongs_to => array(2) ( "category" => array(2) ( "model" => string(8) "Category" "foreign_key" => string(11) "category_id" ) "human" => array(2) ( "model" => string(5) "Human" "foreign_key" => string(8) "human_id" ) ) protected _has_many => array(4) ( "answers" => array(4) ( "model" => string(6) "Answer" "foreign_key" => string(7) "task_id" "through" => NULL "far_key" => string(9) "answer_id" ) "tattaches" => array(4) ( "model" => string(7) "Tattach" "foreign_key" => string(7) "task_id" "through" => NULL "far_key" => string(10) "tattach_id" ) "tops" => array(4) ( "model" => string(3) "Top" "foreign_key" => string(7) "task_id" "through" => NULL "far_key" => string(6) "top_id" ) "ipsviews" => array(4) ( "model" => string(7) "Ipsview" "foreign_key" => string(7) "task_id" "through" => NULL "far_key" => string(10) "ipsview_id" ) ) protected _reload_on_wakeup => bool FALSE protected _has_one => array(0) protected _load_with => array(0) protected _validation => NULL protected _object => array(16) ( "id" => string(8) "16768629" "category_id" => string(1) "7" "text" => string(279) "<span class="sg-text sg-text--large sg-text--bold sg-text--break-words brn-qpage-next-question-box-content__primary"> Плотность …" "zn_id" => string(8) "53905835" "date_time" => string(19) "2023-12-11 15:54:01" "views" => string(1) "5" "human_id" => string(8) "45430008" "ya_spell" => string(1) "0" "category_key" => string(6) "807968" "has_gpt" => string(1) "1" "source" => NULL "source_id" => NULL "text_for_search" => string(153) "Плотность газа (н. у) равна 1,964 г/дм3. Чему равна его относительная плотность по гелию?" "related" => string(115) "["5627434","9760947","15767002","8373576","8169876","13578701","3690788","13495168","4803913","16381419","9069156"]" "good" => NULL "bad" => NULL ) protected _changed => array(0) protected _original_values => array(16) ( "id" => string(8) "16768629" "category_id" => string(1) "7" "text" => string(279) "<span class="sg-text sg-text--large sg-text--bold sg-text--break-words brn-qpage-next-question-box-content__primary"> Плотность …" "zn_id" => string(8) "53905835" "date_time" => string(19) "2023-12-11 15:54:01" "views" => string(1) "5" "human_id" => string(8) "45430008" "ya_spell" => string(1) "0" "category_key" => string(6) "807968" "has_gpt" => string(1) "1" "source" => NULL "source_id" => NULL "text_for_search" => string(153) "Плотность газа (н. у) равна 1,964 г/дм3. Чему равна его относительная плотность по гелию?" "related" => string(115) "["5627434","9760947","15767002","8373576","8169876","13578701","3690788","13495168","4803913","16381419","9069156"]" "good" => NULL "bad" => NULL ) protected _related => array(2) ( "human" => object Model_Human(34)6 => object Model_Task(34){ protected _db_group => string(5) "looka" protected _has_many => array(4) ( "universities" => array(5) ( "model" => string(10) "university" "foreign_key" => string(8) "human_id" "through" => string(19) "humans_universities" "far_key" => string(13) "university_id" "_table_columns" => array(5) ( "faculty_id" => NULL "chair_id" => NULL "graduation" => NULL "education_form" => NULL "education_status" => NULL ) ) "humans_universities" => array(4) ( "model" => string(17) "Humans_University" "foreign_key" => string(8) "human_id" "through" => NULL "far_key" => string(20) "humans_university_id" ) "schools" => array(5) ( "model" => string(6) "school" "foreign_key" => string(8) "human_id" "through" => string(14) "humans_schools" "far_key" => string(9) "school_id" "_table_columns" => array(6) ( "year_from" => NULL "year_to" => NULL "year_graduated" => NULL "class" => NULL "speciality" => NULL "type" => NULL ) ) "humans_schools" => array(4) ( "model" => string(13) "Humans_School" "foreign_key" => string(8) "human_id" "through" => NULL "far_key" => string(16) "humans_school_id" ) ) protected _belongs_to => array(4) ( "lastname" => array(2) ( "model" => string(8) "Lastname" "foreign_key" => string(11) "lastname_id" ) "firstname" => array(2) ( "model" => string(9) "Firstname" "foreign_key" => string(12) "firstname_id" ) "country" => array(2) ( "model" => string(7) "Country" "foreign_key" => string(10) "country_id" ) "city" => array(2) ( "model" => string(4) "City" "foreign_key" => string(7) "city_id" ) ) protected _reload_on_wakeup => bool FALSE protected _has_one => array(0) protected _load_with => array(0) protected _validation => NULL protected _object => array(21) ( "id" => string(8) "45430008" "lastname_id" => string(5) "27069" "firstname_id" => string(5) "11435" "nickname" => string(0) "" "vk_id" => string(9) "246081689" "bdate" => string(10) "2004-10-09" "info" => NULL "photo" => string(63) "https://pp.userapi.com/c629313/v629313689/31cf6/dWs1Z4nnAYU.jpg" "city_id" => string(4) "3214" "country_id" => string(1) "1" "home_town" => string(0) "" "home_phone" => string(0) "" "skype" => NULL "facebook" => NULL "twitter" => NULL "livejournal" => NULL "instagram" => NULL "occupation_type" => NULL "occupation_name" => NULL "rate" => string(2) "13" "count_firstnames_lastnames" => NULL ) protected _changed => array(0) protected _original_values => array(21) ( "id" => string(8) "45430008" "lastname_id" => string(5) "27069" "firstname_id" => string(5) "11435" "nickname" => string(0) "" "vk_id" => string(9) "246081689" "bdate" => string(10) "2004-10-09" "info" => NULL "photo" => string(63) "https://pp.userapi.com/c629313/v629313689/31cf6/dWs1Z4nnAYU.jpg" "city_id" => string(4) "3214" "country_id" => string(1) "1" "home_town" => string(0) "" "home_phone" => string(0) "" "skype" => NULL "facebook" => NULL "twitter" => NULL "livejournal" => NULL "instagram" => NULL "occupation_type" => NULL "occupation_name" => NULL "rate" => string(2) "13" "count_firstnames_lastnames" => NULL ) protected _related => array(2) ( "lastname" => object Model_Lastname(34)"category" => object Model_Category(35){ protected _db_group => string(5) "looka" protected _reload_on_wakeup => bool FALSE protected _has_one => array(0) protected _belongs_to => array(0) protected _has_many => array(0) protected _load_with => array(0) protected _validation => NULL protected _object => array(2) ( "id" => string(5) "27069" "title" => string(14) "Тумасян" ) protected _changed => array(0) protected _original_values => array(2) ( "id" => string(5) "27069" "title" => string(14) "Тумасян" ) protected _related => array(0) protected _valid => bool TRUE protected _loaded => bool TRUE protected _saved => bool FALSE protected _sorting => NULL protected _foreign_key_suffix => string(3) "_id" protected _object_name => string(8) "lastname" protected _object_plural => string(9) "lastnames" protected _table_name => string(9) "lastnames" protected _table_columns => array(2) ( "id" => array(13) ( ... ) "title" => array(12) ( ... ) ) protected _updated_column => NULL protected _created_column => NULL protected _serialize_columns => array(0) protected _primary_key => string(2) "id" protected _primary_key_value => string(5) "27069" protected _table_names_plural => bool TRUE protected _db => object Database_MySQLi(6)"firstname" => object Model_Firstname(34){ protected _connection_id => string(40) "d012da34ee02fd2c23a3776760afb1e9d4e5c681" protected _identifier => string(1) "`" public last_query => string(166) "SELECT `finder_lastname`.`id` AS `id`, `finder_lastname`.`title` AS `title` FROM `finder_lastnames` AS `finder_lastname` WHERE ` …" protected _instance => string(5) "looka" protected _connection => object mysqli(19) { ... } protected _config => array(5) ( ... ) }protected _db_applied => array(0) protected _db_pending => array(0) protected _db_reset => bool TRUE protected _db_builder => NULL protected _with_applied => array(0) protected _cast_data => array(0) protected _errors_filename => string(8) "lastname" }{ protected _db_group => string(5) "looka" protected _has_many => array(1) ( "humans" => array(4) ( ... ) ) protected _reload_on_wakeup => bool FALSE protected _has_one => array(0) protected _belongs_to => array(0) protected _load_with => array(0) protected _validation => NULL protected _object => array(2) ( "id" => string(5) "11435" "title" => string(16) "Джессика" ) protected _changed => array(0) protected _original_values => array(2) ( "id" => string(5) "11435" "title" => string(16) "Джессика" ) protected _related => array(0) protected _valid => bool TRUE protected _loaded => bool TRUE protected _saved => bool FALSE protected _sorting => NULL protected _foreign_key_suffix => string(3) "_id" protected _object_name => string(9) "firstname" protected _object_plural => string(10) "firstnames" protected _table_name => string(10) "firstnames" protected _table_columns => array(2) ( "id" => array(13) ( ... ) "title" => array(12) ( ... ) ) protected _updated_column => NULL protected _created_column => NULL protected _serialize_columns => array(0) protected _primary_key => string(2) "id" protected _primary_key_value => string(5) "11435" protected _table_names_plural => bool TRUE protected _db => object Database_MySQLi(6)) protected _valid => bool TRUE protected _loaded => bool TRUE protected _saved => bool FALSE protected _sorting => NULL protected _foreign_key_suffix => string(3) "_id" protected _object_name => string(5) "human" protected _object_plural => string(6) "humans" protected _table_name => string(6) "humans" protected _table_columns => array(21) ( "id" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(2) "id" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 1 "display" => string(2) "11" "comment" => string(0) "" "extra" => string(14) "auto_increment" "key" => string(3) "PRI" "privileges" => string(31) "select,insert,update,references" ) "lastname_id" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(11) "lastname_id" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 2 "display" => string(2) "11" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "firstname_id" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(12) "firstname_id" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 3 "display" => string(2) "11" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "nickname" => array(12) ( "type" => string(6) "string" "column_name" => string(8) "nickname" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 4 "character_maximum_length" => string(3) "255" "collation_name" => string(18) "utf8mb4_unicode_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "vk_id" => array(13) ( "type" => string(3) "int" "min" => string(20) "-9223372036854775808" "max" => string(19) "9223372036854775807" "column_name" => string(5) "vk_id" "column_default" => NULL "data_type" => string(6) "bigint" "is_nullable" => bool TRUE "ordinal_position" => integer 5 "display" => string(2) "20" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "bdate" => array(10) ( "type" => string(6) "string" "column_name" => string(5) "bdate" "column_default" => NULL "data_type" => string(4) "date" "is_nullable" => bool TRUE "ordinal_position" => integer 6 "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "info" => array(12) ( "type" => string(6) "string" "column_name" => string(4) "info" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 7 "character_maximum_length" => string(4) "1023" "collation_name" => string(18) "utf8mb4_unicode_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "photo" => array(12) ( "type" => string(6) "string" "column_name" => string(5) "photo" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 8 "character_maximum_length" => string(3) "255" "collation_name" => string(18) "utf8mb4_unicode_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "city_id" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(7) "city_id" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool TRUE "ordinal_position" => integer 9 "display" => string(2) "11" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "country_id" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(10) "country_id" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool TRUE "ordinal_position" => integer 10 "display" => string(2) "11" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "home_town" => array(12) ( "type" => string(6) "string" "column_name" => string(9) "home_town" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 11 "character_maximum_length" => string(3) "255" "collation_name" => string(18) "utf8mb4_unicode_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "home_phone" => array(12) ( "type" => string(6) "string" "column_name" => string(10) "home_phone" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 12 "character_maximum_length" => string(2) "63" "collation_name" => string(18) "utf8mb4_unicode_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "skype" => array(12) ( "type" => string(6) "string" "column_name" => string(5) "skype" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 13 "character_maximum_length" => string(3) "127" "collation_name" => string(18) "utf8mb4_unicode_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "facebook" => array(12) ( "type" => string(6) "string" "column_name" => string(8) "facebook" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 14 "character_maximum_length" => string(3) "127" "collation_name" => string(18) "utf8mb4_unicode_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "twitter" => array(12) ( "type" => string(6) "string" "column_name" => string(7) "twitter" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 15 "character_maximum_length" => string(3) "127" "collation_name" => string(18) "utf8mb4_unicode_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "livejournal" => array(12) ( "type" => string(6) "string" "column_name" => string(11) "livejournal" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 16 "character_maximum_length" => string(3) "127" "collation_name" => string(18) "utf8mb4_unicode_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "instagram" => array(12) ( "type" => string(6) "string" "column_name" => string(9) "instagram" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 17 "character_maximum_length" => string(3) "127" "collation_name" => string(18) "utf8mb4_unicode_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "occupation_type" => array(12) ( "type" => string(6) "string" "column_name" => string(15) "occupation_type" "column_default" => NULL "data_type" => string(4) "enum" "is_nullable" => bool TRUE "ordinal_position" => integer 18 "collation_name" => string(18) "utf8mb4_unicode_ci" "options" => array(3) ( 0 => string(4) "work" 1 => string(6) "school" 2 => string(10) "university" ) "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "occupation_name" => array(12) ( "type" => string(6) "string" "column_name" => string(15) "occupation_name" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 19 "character_maximum_length" => string(3) "255" "collation_name" => string(18) "utf8mb4_unicode_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "rate" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(4) "rate" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 20 "display" => string(2) "11" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "count_firstnames_lastnames" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(26) "count_firstnames_lastnames" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool TRUE "ordinal_position" => integer 21 "display" => string(2) "11" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) ) protected _updated_column => NULL protected _created_column => NULL protected _serialize_columns => array(0) protected _primary_key => string(2) "id" protected _primary_key_value => string(8) "45430008" protected _table_names_plural => bool TRUE protected _db => object Database_MySQLi(6){ protected _connection_id => string(40) "d012da34ee02fd2c23a3776760afb1e9d4e5c681" protected _identifier => string(1) "`" public last_query => string(166) "SELECT `finder_lastname`.`id` AS `id`, `finder_lastname`.`title` AS `title` FROM `finder_lastnames` AS `finder_lastname` WHERE ` …" protected _instance => string(5) "looka" protected _connection => object mysqli(19) { ... } protected _config => array(5) ( ... ) }protected _db_applied => array(0) protected _db_pending => array(0) protected _db_reset => bool TRUE protected _db_builder => NULL protected _with_applied => array(0) protected _cast_data => array(0) protected _errors_filename => string(9) "firstname" }{ protected _connection_id => string(40) "d012da34ee02fd2c23a3776760afb1e9d4e5c681" protected _identifier => string(1) "`" public last_query => string(166) "SELECT `finder_lastname`.`id` AS `id`, `finder_lastname`.`title` AS `title` FROM `finder_lastnames` AS `finder_lastname` WHERE ` …" protected _instance => string(5) "looka" protected _connection => object mysqli(19)protected _db_applied => array(0) protected _db_pending => array(0) protected _db_reset => bool TRUE protected _db_builder => NULL protected _with_applied => array(0) protected _cast_data => array(0) protected _errors_filename => string(5) "human" }{ public affected_rows => NULL public client_info => NULL public client_version => NULL public connect_errno => NULL public connect_error => NULL public errno => NULL public error => NULL public error_list => NULL public field_count => NULL public host_info => NULL public info => NULL public insert_id => NULL public server_info => NULL public server_version => NULL public stat => NULL public sqlstate => NULL public protocol_version => NULL public thread_id => NULL public warning_count => NULL }protected _config => array(5) ( "type" => string(6) "MySQLi" "connection" => array(3) ( "hostname" => string(9) "localhost" "database" => string(5) "looka" "persistent" => bool FALSE ) "table_prefix" => string(7) "finder_" "charset" => string(7) "utf8mb4" "caching" => bool FALSE ) }{ protected _has_many => array(2) ( "tasks" => array(4) ( "model" => string(4) "Task" "foreign_key" => string(11) "category_id" "through" => NULL "far_key" => string(7) "task_id" ) "tops" => array(4) ( "model" => string(3) "Top" "foreign_key" => string(11) "category_id" "through" => NULL "far_key" => string(6) "top_id" ) ) protected prefix_url => string(9) "/subject/" protected _reload_on_wakeup => bool FALSE protected _has_one => array(0) protected _belongs_to => array(0) protected _load_with => array(0) protected _validation => NULL protected _object => array(4) ( "id" => string(1) "7" "name" => string(10) "Химия" "url" => string(9) "chemistry" "count" => string(6) "799022" ) protected _changed => array(0) protected _original_values => array(4) ( "id" => string(1) "7" "name" => string(10) "Химия" "url" => string(9) "chemistry" "count" => string(6) "799022" ) protected _related => array(0) protected _valid => bool TRUE protected _loaded => bool TRUE protected _saved => bool FALSE protected _sorting => NULL protected _foreign_key_suffix => string(3) "_id" protected _object_name => string(8) "category" protected _object_plural => string(10) "categories" protected _table_name => string(10) "categories" protected _table_columns => array(4) ( "id" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(2) "id" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 1 "display" => string(2) "11" "comment" => string(0) "" "extra" => string(14) "auto_increment" "key" => string(3) "PRI" "privileges" => string(31) "select,insert,update,references" ) "name" => array(12) ( "type" => string(6) "string" "column_name" => string(4) "name" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool FALSE "ordinal_position" => integer 2 "character_maximum_length" => string(3) "255" "collation_name" => string(18) "utf8mb3_unicode_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "url" => array(12) ( "type" => string(6) "string" "column_name" => string(3) "url" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool FALSE "ordinal_position" => integer 3 "character_maximum_length" => string(3) "255" "collation_name" => string(18) "utf8mb3_unicode_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "count" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(5) "count" "column_default" => string(1) "0" "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 4 "display" => string(2) "11" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) ) protected _updated_column => NULL protected _created_column => NULL protected _serialize_columns => array(0) protected _primary_key => string(2) "id" protected _primary_key_value => string(1) "7" protected _table_names_plural => bool TRUE protected _db => object Database_MySQLi(6)) protected _valid => bool TRUE protected _loaded => bool TRUE protected _saved => bool FALSE protected _sorting => NULL protected _foreign_key_suffix => string(3) "_id" protected _object_name => string(4) "task" protected _object_plural => string(5) "tasks" protected _table_name => string(5) "tasks" protected _table_columns => array(16) ( "id" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(2) "id" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 1 "display" => string(2) "11" "comment" => string(0) "" "extra" => string(14) "auto_increment" "key" => string(3) "PRI" "privileges" => string(31) "select,insert,update,references" ) "category_id" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(11) "category_id" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 2 "display" => string(2) "11" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "text" => array(12) ( "type" => string(6) "string" "character_maximum_length" => string(5) "65535" "column_name" => string(4) "text" "column_default" => NULL "data_type" => string(4) "text" "is_nullable" => bool FALSE "ordinal_position" => integer 3 "collation_name" => string(18) "utf8mb3_unicode_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "zn_id" => array(13) ( "type" => string(3) "int" "min" => string(20) "-9223372036854775808" "max" => string(19) "9223372036854775807" "column_name" => string(5) "zn_id" "column_default" => string(1) "0" "data_type" => string(6) "bigint" "is_nullable" => bool FALSE "ordinal_position" => integer 4 "display" => string(2) "20" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "date_time" => array(10) ( "type" => string(6) "string" "column_name" => string(9) "date_time" "column_default" => string(19) "current_timestamp()" "data_type" => string(8) "datetime" "is_nullable" => bool FALSE "ordinal_position" => integer 5 "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "views" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(5) "views" "column_default" => string(1) "0" "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 6 "display" => string(2) "11" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "human_id" => array(13) ( "type" => string(3) "int" "min" => string(20) "-9223372036854775808" "max" => string(19) "9223372036854775807" "column_name" => string(8) "human_id" "column_default" => NULL "data_type" => string(6) "bigint" "is_nullable" => bool TRUE "ordinal_position" => integer 7 "display" => string(2) "20" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "ya_spell" => array(12) ( "type" => string(6) "string" "column_name" => string(8) "ya_spell" "column_default" => string(1) "0" "data_type" => string(4) "enum" "is_nullable" => bool FALSE "ordinal_position" => integer 8 "collation_name" => string(18) "utf8mb3_unicode_ci" "options" => array(2) ( 0 => string(1) "0" 1 => string(1) "1" ) "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "category_key" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(12) "category_key" "column_default" => string(1) "0" "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 9 "display" => string(2) "11" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "has_gpt" => array(12) ( "type" => string(6) "string" "column_name" => string(7) "has_gpt" "column_default" => NULL "data_type" => string(4) "enum" "is_nullable" => bool TRUE "ordinal_position" => integer 10 "collation_name" => string(18) "utf8mb3_unicode_ci" "options" => array(4) ( 0 => string(1) "0" 1 => string(1) "1" 2 => string(12) "has_attaches" 3 => string(4) "skip" ) "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "source" => array(12) ( "type" => string(6) "string" "column_name" => string(6) "source" "column_default" => NULL "data_type" => string(4) "enum" "is_nullable" => bool TRUE "ordinal_position" => integer 11 "collation_name" => string(18) "utf8mb3_unicode_ci" "options" => array(1) ( 0 => string(12) "vashurok.com" ) "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "source_id" => array(13) ( "type" => string(3) "int" "min" => string(20) "-9223372036854775808" "max" => string(19) "9223372036854775807" "column_name" => string(9) "source_id" "column_default" => NULL "data_type" => string(6) "bigint" "is_nullable" => bool TRUE "ordinal_position" => integer 12 "display" => string(2) "20" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "text_for_search" => array(12) ( "type" => string(6) "string" "character_maximum_length" => string(5) "65535" "column_name" => string(15) "text_for_search" "column_default" => NULL "data_type" => string(4) "text" "is_nullable" => bool TRUE "ordinal_position" => integer 13 "collation_name" => string(18) "utf8mb3_unicode_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "related" => array(12) ( "type" => string(6) "string" "column_name" => string(7) "related" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 14 "character_maximum_length" => string(4) "1023" "collation_name" => string(18) "utf8mb3_unicode_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "good" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(4) "good" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool TRUE "ordinal_position" => integer 15 "display" => string(2) "11" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "bad" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(3) "bad" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool TRUE "ordinal_position" => integer 16 "display" => string(2) "11" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) ) protected _updated_column => NULL protected _created_column => NULL protected _serialize_columns => array(0) protected _primary_key => string(2) "id" protected _primary_key_value => string(8) "16768629" protected _table_names_plural => bool TRUE protected _db => object Database_MySQLi(6){ protected _connection_id => string(40) "9fdecc117b583662f3b3d15c4c4ac71fc778e18d" protected _identifier => string(1) "`" public last_query => string(185) "SELECT `category`.`id` AS `id`, `category`.`name` AS `name`, `category`.`url` AS `url`, `category`.`count` AS `count` FROM `cate …" protected _instance => string(7) "default" protected _connection => object mysqli(19)protected _db_group => NULL protected _db_applied => array(0) protected _db_pending => array(0) protected _db_reset => bool TRUE protected _db_builder => NULL protected _with_applied => array(0) protected _cast_data => array(0) protected _errors_filename => string(8) "category" }{ public affected_rows => NULL public client_info => NULL public client_version => NULL public connect_errno => NULL public connect_error => NULL public errno => NULL public error => NULL public error_list => NULL public field_count => NULL public host_info => NULL public info => NULL public insert_id => NULL public server_info => NULL public server_version => NULL public stat => NULL public sqlstate => NULL public protocol_version => NULL public thread_id => NULL public warning_count => NULL }protected _config => array(6) ( "type" => string(6) "MySQLi" "connection" => array(3) ( "hostname" => string(9) "localhost" "database" => string(9) "uznavalka" "persistent" => bool FALSE ) "table_prefix" => string(0) "" "charset" => string(7) "utf8mb4" "caching" => bool FALSE "profiling" => bool FALSE ) }{ protected _connection_id => string(40) "9fdecc117b583662f3b3d15c4c4ac71fc778e18d" protected _identifier => string(1) "`" public last_query => string(185) "SELECT `category`.`id` AS `id`, `category`.`name` AS `name`, `category`.`url` AS `url`, `category`.`count` AS `count` FROM `cate …" protected _instance => string(7) "default" protected _connection => object mysqli(19)protected _db_group => NULL protected _db_applied => array(0) protected _db_pending => array(0) protected _db_reset => bool TRUE protected _db_builder => NULL protected _with_applied => array(0) protected _cast_data => array(0) protected _errors_filename => string(4) "task" }{ public affected_rows => NULL public client_info => NULL public client_version => NULL public connect_errno => NULL public connect_error => NULL public errno => NULL public error => NULL public error_list => NULL public field_count => NULL public host_info => NULL public info => NULL public insert_id => NULL public server_info => NULL public server_version => NULL public stat => NULL public sqlstate => NULL public protocol_version => NULL public thread_id => NULL public warning_count => NULL }protected _config => array(6) ( "type" => string(6) "MySQLi" "connection" => array(3) ( "hostname" => string(9) "localhost" "database" => string(9) "uznavalka" "persistent" => bool FALSE ) "table_prefix" => string(0) "" "charset" => string(7) "utf8mb4" "caching" => bool FALSE "profiling" => bool FALSE ) }{ protected _belongs_to => array(2) ( "category" => array(2) ( "model" => string(8) "Category" "foreign_key" => string(11) "category_id" ) "human" => array(2) ( "model" => string(5) "Human" "foreign_key" => string(8) "human_id" ) ) protected _has_many => array(4) ( "answers" => array(4) ( "model" => string(6) "Answer" "foreign_key" => string(7) "task_id" "through" => NULL "far_key" => string(9) "answer_id" ) "tattaches" => array(4) ( "model" => string(7) "Tattach" "foreign_key" => string(7) "task_id" "through" => NULL "far_key" => string(10) "tattach_id" ) "tops" => array(4) ( "model" => string(3) "Top" "foreign_key" => string(7) "task_id" "through" => NULL "far_key" => string(6) "top_id" ) "ipsviews" => array(4) ( "model" => string(7) "Ipsview" "foreign_key" => string(7) "task_id" "through" => NULL "far_key" => string(10) "ipsview_id" ) ) protected _reload_on_wakeup => bool FALSE protected _has_one => array(0) protected _load_with => array(0) protected _validation => NULL protected _object => array(16) ( "id" => string(8) "11100414" "category_id" => string(1) "7" "text" => string(238) "<span class="sg-text sg-text--large sg-text--bold sg-text--break-words brn-qpage-next-question-box-content__primary"> Написать п …" "zn_id" => string(8) "40448283" "date_time" => string(19) "2023-05-16 13:21:41" "views" => string(2) "90" "human_id" => string(8) "65153551" "ya_spell" => string(1) "0" "category_key" => string(6) "507145" "has_gpt" => string(1) "1" "source" => NULL "source_id" => NULL "text_for_search" => string(112) "Написать полное и сокращённое ионное уравнение KOH + HCL = KCL + H2O" "related" => NULL "good" => NULL "bad" => NULL ) protected _changed => array(0) protected _original_values => array(16) ( "id" => string(8) "11100414" "category_id" => string(1) "7" "text" => string(238) "<span class="sg-text sg-text--large sg-text--bold sg-text--break-words brn-qpage-next-question-box-content__primary"> Написать п …" "zn_id" => string(8) "40448283" "date_time" => string(19) "2023-05-16 13:21:41" "views" => string(2) "90" "human_id" => string(8) "65153551" "ya_spell" => string(1) "0" "category_key" => string(6) "507145" "has_gpt" => string(1) "1" "source" => NULL "source_id" => NULL "text_for_search" => string(112) "Написать полное и сокращённое ионное уравнение KOH + HCL = KCL + H2O" "related" => NULL "good" => NULL "bad" => NULL ) protected _related => array(2) ( "human" => object Model_Human(34)7 => object Model_Task(34){ protected _db_group => string(5) "looka" protected _has_many => array(4) ( "universities" => array(5) ( "model" => string(10) "university" "foreign_key" => string(8) "human_id" "through" => string(19) "humans_universities" "far_key" => string(13) "university_id" "_table_columns" => array(5) ( "faculty_id" => NULL "chair_id" => NULL "graduation" => NULL "education_form" => NULL "education_status" => NULL ) ) "humans_universities" => array(4) ( "model" => string(17) "Humans_University" "foreign_key" => string(8) "human_id" "through" => NULL "far_key" => string(20) "humans_university_id" ) "schools" => array(5) ( "model" => string(6) "school" "foreign_key" => string(8) "human_id" "through" => string(14) "humans_schools" "far_key" => string(9) "school_id" "_table_columns" => array(6) ( "year_from" => NULL "year_to" => NULL "year_graduated" => NULL "class" => NULL "speciality" => NULL "type" => NULL ) ) "humans_schools" => array(4) ( "model" => string(13) "Humans_School" "foreign_key" => string(8) "human_id" "through" => NULL "far_key" => string(16) "humans_school_id" ) ) protected _belongs_to => array(4) ( "lastname" => array(2) ( "model" => string(8) "Lastname" "foreign_key" => string(11) "lastname_id" ) "firstname" => array(2) ( "model" => string(9) "Firstname" "foreign_key" => string(12) "firstname_id" ) "country" => array(2) ( "model" => string(7) "Country" "foreign_key" => string(10) "country_id" ) "city" => array(2) ( "model" => string(4) "City" "foreign_key" => string(7) "city_id" ) ) protected _reload_on_wakeup => bool FALSE protected _has_one => array(0) protected _load_with => array(0) protected _validation => NULL protected _object => array(21) ( "id" => string(8) "65153551" "lastname_id" => string(5) "14830" "firstname_id" => string(3) "149" "nickname" => string(0) "" "vk_id" => string(9) "221232596" "bdate" => string(10) "2004-02-28" "info" => NULL "photo" => string(63) "https://pp.userapi.com/c840336/v840336825/413f1/xXzVytFWIC8.jpg" "city_id" => string(5) "21855" "country_id" => string(1) "1" "home_town" => string(18) "Мичуринск" "home_phone" => string(0) "" "skype" => NULL "facebook" => NULL "twitter" => NULL "livejournal" => NULL "instagram" => NULL "occupation_type" => string(6) "school" "occupation_name" => string(48) "Борщевская основная школа" "rate" => string(2) "15" "count_firstnames_lastnames" => NULL ) protected _changed => array(0) protected _original_values => array(21) ( "id" => string(8) "65153551" "lastname_id" => string(5) "14830" "firstname_id" => string(3) "149" "nickname" => string(0) "" "vk_id" => string(9) "221232596" "bdate" => string(10) "2004-02-28" "info" => NULL "photo" => string(63) "https://pp.userapi.com/c840336/v840336825/413f1/xXzVytFWIC8.jpg" "city_id" => string(5) "21855" "country_id" => string(1) "1" "home_town" => string(18) "Мичуринск" "home_phone" => string(0) "" "skype" => NULL "facebook" => NULL "twitter" => NULL "livejournal" => NULL "instagram" => NULL "occupation_type" => string(6) "school" "occupation_name" => string(48) "Борщевская основная школа" "rate" => string(2) "15" "count_firstnames_lastnames" => NULL ) protected _related => array(2) ( "lastname" => object Model_Lastname(34)"category" => object Model_Category(35){ protected _db_group => string(5) "looka" protected _reload_on_wakeup => bool FALSE protected _has_one => array(0) protected _belongs_to => array(0) protected _has_many => array(0) protected _load_with => array(0) protected _validation => NULL protected _object => array(2) ( "id" => string(5) "14830" "title" => string(14) "Струков" ) protected _changed => array(0) protected _original_values => array(2) ( "id" => string(5) "14830" "title" => string(14) "Струков" ) protected _related => array(0) protected _valid => bool TRUE protected _loaded => bool TRUE protected _saved => bool FALSE protected _sorting => NULL protected _foreign_key_suffix => string(3) "_id" protected _object_name => string(8) "lastname" protected _object_plural => string(9) "lastnames" protected _table_name => string(9) "lastnames" protected _table_columns => array(2) ( "id" => array(13) ( ... ) "title" => array(12) ( ... ) ) protected _updated_column => NULL protected _created_column => NULL protected _serialize_columns => array(0) protected _primary_key => string(2) "id" protected _primary_key_value => string(5) "14830" protected _table_names_plural => bool TRUE protected _db => object Database_MySQLi(6)"firstname" => object Model_Firstname(34){ protected _connection_id => string(40) "d012da34ee02fd2c23a3776760afb1e9d4e5c681" protected _identifier => string(1) "`" public last_query => string(166) "SELECT `finder_lastname`.`id` AS `id`, `finder_lastname`.`title` AS `title` FROM `finder_lastnames` AS `finder_lastname` WHERE ` …" protected _instance => string(5) "looka" protected _connection => object mysqli(19) { ... } protected _config => array(5) ( ... ) }protected _db_applied => array(0) protected _db_pending => array(0) protected _db_reset => bool TRUE protected _db_builder => NULL protected _with_applied => array(0) protected _cast_data => array(0) protected _errors_filename => string(8) "lastname" }{ protected _db_group => string(5) "looka" protected _has_many => array(1) ( "humans" => array(4) ( ... ) ) protected _reload_on_wakeup => bool FALSE protected _has_one => array(0) protected _belongs_to => array(0) protected _load_with => array(0) protected _validation => NULL protected _object => array(2) ( "id" => string(3) "149" "title" => string(8) "Илья" ) protected _changed => array(0) protected _original_values => array(2) ( "id" => string(3) "149" "title" => string(8) "Илья" ) protected _related => array(0) protected _valid => bool TRUE protected _loaded => bool TRUE protected _saved => bool FALSE protected _sorting => NULL protected _foreign_key_suffix => string(3) "_id" protected _object_name => string(9) "firstname" protected _object_plural => string(10) "firstnames" protected _table_name => string(10) "firstnames" protected _table_columns => array(2) ( "id" => array(13) ( ... ) "title" => array(12) ( ... ) ) protected _updated_column => NULL protected _created_column => NULL protected _serialize_columns => array(0) protected _primary_key => string(2) "id" protected _primary_key_value => string(3) "149" protected _table_names_plural => bool TRUE protected _db => object Database_MySQLi(6)) protected _valid => bool TRUE protected _loaded => bool TRUE protected _saved => bool FALSE protected _sorting => NULL protected _foreign_key_suffix => string(3) "_id" protected _object_name => string(5) "human" protected _object_plural => string(6) "humans" protected _table_name => string(6) "humans" protected _table_columns => array(21) ( "id" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(2) "id" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 1 "display" => string(2) "11" "comment" => string(0) "" "extra" => string(14) "auto_increment" "key" => string(3) "PRI" "privileges" => string(31) "select,insert,update,references" ) "lastname_id" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(11) "lastname_id" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 2 "display" => string(2) "11" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "firstname_id" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(12) "firstname_id" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 3 "display" => string(2) "11" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "nickname" => array(12) ( "type" => string(6) "string" "column_name" => string(8) "nickname" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 4 "character_maximum_length" => string(3) "255" "collation_name" => string(18) "utf8mb4_unicode_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "vk_id" => array(13) ( "type" => string(3) "int" "min" => string(20) "-9223372036854775808" "max" => string(19) "9223372036854775807" "column_name" => string(5) "vk_id" "column_default" => NULL "data_type" => string(6) "bigint" "is_nullable" => bool TRUE "ordinal_position" => integer 5 "display" => string(2) "20" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "bdate" => array(10) ( "type" => string(6) "string" "column_name" => string(5) "bdate" "column_default" => NULL "data_type" => string(4) "date" "is_nullable" => bool TRUE "ordinal_position" => integer 6 "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "info" => array(12) ( "type" => string(6) "string" "column_name" => string(4) "info" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 7 "character_maximum_length" => string(4) "1023" "collation_name" => string(18) "utf8mb4_unicode_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "photo" => array(12) ( "type" => string(6) "string" "column_name" => string(5) "photo" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 8 "character_maximum_length" => string(3) "255" "collation_name" => string(18) "utf8mb4_unicode_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "city_id" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(7) "city_id" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool TRUE "ordinal_position" => integer 9 "display" => string(2) "11" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "country_id" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(10) "country_id" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool TRUE "ordinal_position" => integer 10 "display" => string(2) "11" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "home_town" => array(12) ( "type" => string(6) "string" "column_name" => string(9) "home_town" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 11 "character_maximum_length" => string(3) "255" "collation_name" => string(18) "utf8mb4_unicode_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "home_phone" => array(12) ( "type" => string(6) "string" "column_name" => string(10) "home_phone" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 12 "character_maximum_length" => string(2) "63" "collation_name" => string(18) "utf8mb4_unicode_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "skype" => array(12) ( "type" => string(6) "string" "column_name" => string(5) "skype" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 13 "character_maximum_length" => string(3) "127" "collation_name" => string(18) "utf8mb4_unicode_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "facebook" => array(12) ( "type" => string(6) "string" "column_name" => string(8) "facebook" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 14 "character_maximum_length" => string(3) "127" "collation_name" => string(18) "utf8mb4_unicode_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "twitter" => array(12) ( "type" => string(6) "string" "column_name" => string(7) "twitter" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 15 "character_maximum_length" => string(3) "127" "collation_name" => string(18) "utf8mb4_unicode_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "livejournal" => array(12) ( "type" => string(6) "string" "column_name" => string(11) "livejournal" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 16 "character_maximum_length" => string(3) "127" "collation_name" => string(18) "utf8mb4_unicode_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "instagram" => array(12) ( "type" => string(6) "string" "column_name" => string(9) "instagram" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 17 "character_maximum_length" => string(3) "127" "collation_name" => string(18) "utf8mb4_unicode_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "occupation_type" => array(12) ( "type" => string(6) "string" "column_name" => string(15) "occupation_type" "column_default" => NULL "data_type" => string(4) "enum" "is_nullable" => bool TRUE "ordinal_position" => integer 18 "collation_name" => string(18) "utf8mb4_unicode_ci" "options" => array(3) ( 0 => string(4) "work" 1 => string(6) "school" 2 => string(10) "university" ) "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "occupation_name" => array(12) ( "type" => string(6) "string" "column_name" => string(15) "occupation_name" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 19 "character_maximum_length" => string(3) "255" "collation_name" => string(18) "utf8mb4_unicode_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "rate" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(4) "rate" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 20 "display" => string(2) "11" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "count_firstnames_lastnames" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(26) "count_firstnames_lastnames" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool TRUE "ordinal_position" => integer 21 "display" => string(2) "11" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) ) protected _updated_column => NULL protected _created_column => NULL protected _serialize_columns => array(0) protected _primary_key => string(2) "id" protected _primary_key_value => string(8) "65153551" protected _table_names_plural => bool TRUE protected _db => object Database_MySQLi(6){ protected _connection_id => string(40) "d012da34ee02fd2c23a3776760afb1e9d4e5c681" protected _identifier => string(1) "`" public last_query => string(166) "SELECT `finder_lastname`.`id` AS `id`, `finder_lastname`.`title` AS `title` FROM `finder_lastnames` AS `finder_lastname` WHERE ` …" protected _instance => string(5) "looka" protected _connection => object mysqli(19) { ... } protected _config => array(5) ( ... ) }protected _db_applied => array(0) protected _db_pending => array(0) protected _db_reset => bool TRUE protected _db_builder => NULL protected _with_applied => array(0) protected _cast_data => array(0) protected _errors_filename => string(9) "firstname" }{ protected _connection_id => string(40) "d012da34ee02fd2c23a3776760afb1e9d4e5c681" protected _identifier => string(1) "`" public last_query => string(166) "SELECT `finder_lastname`.`id` AS `id`, `finder_lastname`.`title` AS `title` FROM `finder_lastnames` AS `finder_lastname` WHERE ` …" protected _instance => string(5) "looka" protected _connection => object mysqli(19)protected _db_applied => array(0) protected _db_pending => array(0) protected _db_reset => bool TRUE protected _db_builder => NULL protected _with_applied => array(0) protected _cast_data => array(0) protected _errors_filename => string(5) "human" }{ public affected_rows => NULL public client_info => NULL public client_version => NULL public connect_errno => NULL public connect_error => NULL public errno => NULL public error => NULL public error_list => NULL public field_count => NULL public host_info => NULL public info => NULL public insert_id => NULL public server_info => NULL public server_version => NULL public stat => NULL public sqlstate => NULL public protocol_version => NULL public thread_id => NULL public warning_count => NULL }protected _config => array(5) ( "type" => string(6) "MySQLi" "connection" => array(3) ( "hostname" => string(9) "localhost" "database" => string(5) "looka" "persistent" => bool FALSE ) "table_prefix" => string(7) "finder_" "charset" => string(7) "utf8mb4" "caching" => bool FALSE ) }{ protected _has_many => array(2) ( "tasks" => array(4) ( "model" => string(4) "Task" "foreign_key" => string(11) "category_id" "through" => NULL "far_key" => string(7) "task_id" ) "tops" => array(4) ( "model" => string(3) "Top" "foreign_key" => string(11) "category_id" "through" => NULL "far_key" => string(6) "top_id" ) ) protected prefix_url => string(9) "/subject/" protected _reload_on_wakeup => bool FALSE protected _has_one => array(0) protected _belongs_to => array(0) protected _load_with => array(0) protected _validation => NULL protected _object => array(4) ( "id" => string(1) "7" "name" => string(10) "Химия" "url" => string(9) "chemistry" "count" => string(6) "799022" ) protected _changed => array(0) protected _original_values => array(4) ( "id" => string(1) "7" "name" => string(10) "Химия" "url" => string(9) "chemistry" "count" => string(6) "799022" ) protected _related => array(0) protected _valid => bool TRUE protected _loaded => bool TRUE protected _saved => bool FALSE protected _sorting => NULL protected _foreign_key_suffix => string(3) "_id" protected _object_name => string(8) "category" protected _object_plural => string(10) "categories" protected _table_name => string(10) "categories" protected _table_columns => array(4) ( "id" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(2) "id" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 1 "display" => string(2) "11" "comment" => string(0) "" "extra" => string(14) "auto_increment" "key" => string(3) "PRI" "privileges" => string(31) "select,insert,update,references" ) "name" => array(12) ( "type" => string(6) "string" "column_name" => string(4) "name" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool FALSE "ordinal_position" => integer 2 "character_maximum_length" => string(3) "255" "collation_name" => string(18) "utf8mb3_unicode_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "url" => array(12) ( "type" => string(6) "string" "column_name" => string(3) "url" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool FALSE "ordinal_position" => integer 3 "character_maximum_length" => string(3) "255" "collation_name" => string(18) "utf8mb3_unicode_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "count" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(5) "count" "column_default" => string(1) "0" "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 4 "display" => string(2) "11" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) ) protected _updated_column => NULL protected _created_column => NULL protected _serialize_columns => array(0) protected _primary_key => string(2) "id" protected _primary_key_value => string(1) "7" protected _table_names_plural => bool TRUE protected _db => object Database_MySQLi(6)) protected _valid => bool TRUE protected _loaded => bool TRUE protected _saved => bool FALSE protected _sorting => NULL protected _foreign_key_suffix => string(3) "_id" protected _object_name => string(4) "task" protected _object_plural => string(5) "tasks" protected _table_name => string(5) "tasks" protected _table_columns => array(16) ( "id" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(2) "id" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 1 "display" => string(2) "11" "comment" => string(0) "" "extra" => string(14) "auto_increment" "key" => string(3) "PRI" "privileges" => string(31) "select,insert,update,references" ) "category_id" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(11) "category_id" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 2 "display" => string(2) "11" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "text" => array(12) ( "type" => string(6) "string" "character_maximum_length" => string(5) "65535" "column_name" => string(4) "text" "column_default" => NULL "data_type" => string(4) "text" "is_nullable" => bool FALSE "ordinal_position" => integer 3 "collation_name" => string(18) "utf8mb3_unicode_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "zn_id" => array(13) ( "type" => string(3) "int" "min" => string(20) "-9223372036854775808" "max" => string(19) "9223372036854775807" "column_name" => string(5) "zn_id" "column_default" => string(1) "0" "data_type" => string(6) "bigint" "is_nullable" => bool FALSE "ordinal_position" => integer 4 "display" => string(2) "20" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "date_time" => array(10) ( "type" => string(6) "string" "column_name" => string(9) "date_time" "column_default" => string(19) "current_timestamp()" "data_type" => string(8) "datetime" "is_nullable" => bool FALSE "ordinal_position" => integer 5 "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "views" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(5) "views" "column_default" => string(1) "0" "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 6 "display" => string(2) "11" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "human_id" => array(13) ( "type" => string(3) "int" "min" => string(20) "-9223372036854775808" "max" => string(19) "9223372036854775807" "column_name" => string(8) "human_id" "column_default" => NULL "data_type" => string(6) "bigint" "is_nullable" => bool TRUE "ordinal_position" => integer 7 "display" => string(2) "20" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "ya_spell" => array(12) ( "type" => string(6) "string" "column_name" => string(8) "ya_spell" "column_default" => string(1) "0" "data_type" => string(4) "enum" "is_nullable" => bool FALSE "ordinal_position" => integer 8 "collation_name" => string(18) "utf8mb3_unicode_ci" "options" => array(2) ( 0 => string(1) "0" 1 => string(1) "1" ) "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "category_key" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(12) "category_key" "column_default" => string(1) "0" "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 9 "display" => string(2) "11" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "has_gpt" => array(12) ( "type" => string(6) "string" "column_name" => string(7) "has_gpt" "column_default" => NULL "data_type" => string(4) "enum" "is_nullable" => bool TRUE "ordinal_position" => integer 10 "collation_name" => string(18) "utf8mb3_unicode_ci" "options" => array(4) ( 0 => string(1) "0" 1 => string(1) "1" 2 => string(12) "has_attaches" 3 => string(4) "skip" ) "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "source" => array(12) ( "type" => string(6) "string" "column_name" => string(6) "source" "column_default" => NULL "data_type" => string(4) "enum" "is_nullable" => bool TRUE "ordinal_position" => integer 11 "collation_name" => string(18) "utf8mb3_unicode_ci" "options" => array(1) ( 0 => string(12) "vashurok.com" ) "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "source_id" => array(13) ( "type" => string(3) "int" "min" => string(20) "-9223372036854775808" "max" => string(19) "9223372036854775807" "column_name" => string(9) "source_id" "column_default" => NULL "data_type" => string(6) "bigint" "is_nullable" => bool TRUE "ordinal_position" => integer 12 "display" => string(2) "20" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "text_for_search" => array(12) ( "type" => string(6) "string" "character_maximum_length" => string(5) "65535" "column_name" => string(15) "text_for_search" "column_default" => NULL "data_type" => string(4) "text" "is_nullable" => bool TRUE "ordinal_position" => integer 13 "collation_name" => string(18) "utf8mb3_unicode_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "related" => array(12) ( "type" => string(6) "string" "column_name" => string(7) "related" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 14 "character_maximum_length" => string(4) "1023" "collation_name" => string(18) "utf8mb3_unicode_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "good" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(4) "good" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool TRUE "ordinal_position" => integer 15 "display" => string(2) "11" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "bad" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(3) "bad" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool TRUE "ordinal_position" => integer 16 "display" => string(2) "11" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) ) protected _updated_column => NULL protected _created_column => NULL protected _serialize_columns => array(0) protected _primary_key => string(2) "id" protected _primary_key_value => string(8) "11100414" protected _table_names_plural => bool TRUE protected _db => object Database_MySQLi(6){ protected _connection_id => string(40) "9fdecc117b583662f3b3d15c4c4ac71fc778e18d" protected _identifier => string(1) "`" public last_query => string(185) "SELECT `category`.`id` AS `id`, `category`.`name` AS `name`, `category`.`url` AS `url`, `category`.`count` AS `count` FROM `cate …" protected _instance => string(7) "default" protected _connection => object mysqli(19)protected _db_group => NULL protected _db_applied => array(0) protected _db_pending => array(0) protected _db_reset => bool TRUE protected _db_builder => NULL protected _with_applied => array(0) protected _cast_data => array(0) protected _errors_filename => string(8) "category" }{ public affected_rows => NULL public client_info => NULL public client_version => NULL public connect_errno => NULL public connect_error => NULL public errno => NULL public error => NULL public error_list => NULL public field_count => NULL public host_info => NULL public info => NULL public insert_id => NULL public server_info => NULL public server_version => NULL public stat => NULL public sqlstate => NULL public protocol_version => NULL public thread_id => NULL public warning_count => NULL }protected _config => array(6) ( "type" => string(6) "MySQLi" "connection" => array(3) ( "hostname" => string(9) "localhost" "database" => string(9) "uznavalka" "persistent" => bool FALSE ) "table_prefix" => string(0) "" "charset" => string(7) "utf8mb4" "caching" => bool FALSE "profiling" => bool FALSE ) }{ protected _connection_id => string(40) "9fdecc117b583662f3b3d15c4c4ac71fc778e18d" protected _identifier => string(1) "`" public last_query => string(185) "SELECT `category`.`id` AS `id`, `category`.`name` AS `name`, `category`.`url` AS `url`, `category`.`count` AS `count` FROM `cate …" protected _instance => string(7) "default" protected _connection => object mysqli(19)protected _db_group => NULL protected _db_applied => array(0) protected _db_pending => array(0) protected _db_reset => bool TRUE protected _db_builder => NULL protected _with_applied => array(0) protected _cast_data => array(0) protected _errors_filename => string(4) "task" }{ public affected_rows => NULL public client_info => NULL public client_version => NULL public connect_errno => NULL public connect_error => NULL public errno => NULL public error => NULL public error_list => NULL public field_count => NULL public host_info => NULL public info => NULL public insert_id => NULL public server_info => NULL public server_version => NULL public stat => NULL public sqlstate => NULL public protocol_version => NULL public thread_id => NULL public warning_count => NULL }protected _config => array(6) ( "type" => string(6) "MySQLi" "connection" => array(3) ( "hostname" => string(9) "localhost" "database" => string(9) "uznavalka" "persistent" => bool FALSE ) "table_prefix" => string(0) "" "charset" => string(7) "utf8mb4" "caching" => bool FALSE "profiling" => bool FALSE ) }{ protected _belongs_to => array(2) ( "category" => array(2) ( "model" => string(8) "Category" "foreign_key" => string(11) "category_id" ) "human" => array(2) ( "model" => string(5) "Human" "foreign_key" => string(8) "human_id" ) ) protected _has_many => array(4) ( "answers" => array(4) ( "model" => string(6) "Answer" "foreign_key" => string(7) "task_id" "through" => NULL "far_key" => string(9) "answer_id" ) "tattaches" => array(4) ( "model" => string(7) "Tattach" "foreign_key" => string(7) "task_id" "through" => NULL "far_key" => string(10) "tattach_id" ) "tops" => array(4) ( "model" => string(3) "Top" "foreign_key" => string(7) "task_id" "through" => NULL "far_key" => string(6) "top_id" ) "ipsviews" => array(4) ( "model" => string(7) "Ipsview" "foreign_key" => string(7) "task_id" "through" => NULL "far_key" => string(10) "ipsview_id" ) ) protected _reload_on_wakeup => bool FALSE protected _has_one => array(0) protected _load_with => array(0) protected _validation => NULL protected _object => array(16) ( "id" => string(8) "11761506" "category_id" => string(1) "7" "text" => string(435) "<span class="sg-text sg-text--break-words brn-qpage-next-question-box-content__secondary"> 1. Завдання Які маси солі і води потр …" "zn_id" => string(8) "52323833" "date_time" => string(19) "2023-06-10 14:47:28" "views" => string(1) "5" "human_id" => string(8) "20776821" "ya_spell" => string(1) "0" "category_key" => string(6) "550584" "has_gpt" => string(1) "1" "source" => NULL "source_id" => NULL "text_for_search" => string(336) "1. Завдання Які маси солі і води потрібно взяти, щоб одержати 2 кг розчину з масовою часткою 10 %? 2. Які маси солі та води потр …" "related" => NULL "good" => NULL "bad" => NULL ) protected _changed => array(0) protected _original_values => array(16) ( "id" => string(8) "11761506" "category_id" => string(1) "7" "text" => string(435) "<span class="sg-text sg-text--break-words brn-qpage-next-question-box-content__secondary"> 1. Завдання Які маси солі і води потр …" "zn_id" => string(8) "52323833" "date_time" => string(19) "2023-06-10 14:47:28" "views" => string(1) "5" "human_id" => string(8) "20776821" "ya_spell" => string(1) "0" "category_key" => string(6) "550584" "has_gpt" => string(1) "1" "source" => NULL "source_id" => NULL "text_for_search" => string(336) "1. Завдання Які маси солі і води потрібно взяти, щоб одержати 2 кг розчину з масовою часткою 10 %? 2. Які маси солі та води потр …" "related" => NULL "good" => NULL "bad" => NULL ) protected _related => array(2) ( "human" => object Model_Human(34)8 => object Model_Task(34){ protected _db_group => string(5) "looka" protected _has_many => array(4) ( "universities" => array(5) ( "model" => string(10) "university" "foreign_key" => string(8) "human_id" "through" => string(19) "humans_universities" "far_key" => string(13) "university_id" "_table_columns" => array(5) ( "faculty_id" => NULL "chair_id" => NULL "graduation" => NULL "education_form" => NULL "education_status" => NULL ) ) "humans_universities" => array(4) ( "model" => string(17) "Humans_University" "foreign_key" => string(8) "human_id" "through" => NULL "far_key" => string(20) "humans_university_id" ) "schools" => array(5) ( "model" => string(6) "school" "foreign_key" => string(8) "human_id" "through" => string(14) "humans_schools" "far_key" => string(9) "school_id" "_table_columns" => array(6) ( "year_from" => NULL "year_to" => NULL "year_graduated" => NULL "class" => NULL "speciality" => NULL "type" => NULL ) ) "humans_schools" => array(4) ( "model" => string(13) "Humans_School" "foreign_key" => string(8) "human_id" "through" => NULL "far_key" => string(16) "humans_school_id" ) ) protected _belongs_to => array(4) ( "lastname" => array(2) ( "model" => string(8) "Lastname" "foreign_key" => string(11) "lastname_id" ) "firstname" => array(2) ( "model" => string(9) "Firstname" "foreign_key" => string(12) "firstname_id" ) "country" => array(2) ( "model" => string(7) "Country" "foreign_key" => string(10) "country_id" ) "city" => array(2) ( "model" => string(4) "City" "foreign_key" => string(7) "city_id" ) ) protected _reload_on_wakeup => bool FALSE protected _has_one => array(0) protected _load_with => array(0) protected _validation => NULL protected _object => array(21) ( "id" => string(8) "20776821" "lastname_id" => string(6) "120086" "firstname_id" => string(3) "108" "nickname" => string(0) "" "vk_id" => string(9) "277063149" "bdate" => string(10) "2004-10-30" "info" => NULL "photo" => string(63) "https://pp.userapi.com/c639725/v639725666/49c94/wXdZnA_Aebw.jpg" "city_id" => NULL "country_id" => string(1) "1" "home_town" => NULL "home_phone" => string(0) "" "skype" => NULL "facebook" => NULL "twitter" => NULL "livejournal" => NULL "instagram" => NULL "occupation_type" => NULL "occupation_name" => NULL "rate" => string(2) "11" "count_firstnames_lastnames" => NULL ) protected _changed => array(0) protected _original_values => array(21) ( "id" => string(8) "20776821" "lastname_id" => string(6) "120086" "firstname_id" => string(3) "108" "nickname" => string(0) "" "vk_id" => string(9) "277063149" "bdate" => string(10) "2004-10-30" "info" => NULL "photo" => string(63) "https://pp.userapi.com/c639725/v639725666/49c94/wXdZnA_Aebw.jpg" "city_id" => NULL "country_id" => string(1) "1" "home_town" => NULL "home_phone" => string(0) "" "skype" => NULL "facebook" => NULL "twitter" => NULL "livejournal" => NULL "instagram" => NULL "occupation_type" => NULL "occupation_name" => NULL "rate" => string(2) "11" "count_firstnames_lastnames" => NULL ) protected _related => array(2) ( "lastname" => object Model_Lastname(34)"category" => object Model_Category(35){ protected _db_group => string(5) "looka" protected _reload_on_wakeup => bool FALSE protected _has_one => array(0) protected _belongs_to => array(0) protected _has_many => array(0) protected _load_with => array(0) protected _validation => NULL protected _object => array(2) ( "id" => string(6) "120086" "title" => string(18) "Дондокова" ) protected _changed => array(0) protected _original_values => array(2) ( "id" => string(6) "120086" "title" => string(18) "Дондокова" ) protected _related => array(0) protected _valid => bool TRUE protected _loaded => bool TRUE protected _saved => bool FALSE protected _sorting => NULL protected _foreign_key_suffix => string(3) "_id" protected _object_name => string(8) "lastname" protected _object_plural => string(9) "lastnames" protected _table_name => string(9) "lastnames" protected _table_columns => array(2) ( "id" => array(13) ( ... ) "title" => array(12) ( ... ) ) protected _updated_column => NULL protected _created_column => NULL protected _serialize_columns => array(0) protected _primary_key => string(2) "id" protected _primary_key_value => string(6) "120086" protected _table_names_plural => bool TRUE protected _db => object Database_MySQLi(6)"firstname" => object Model_Firstname(34){ protected _connection_id => string(40) "d012da34ee02fd2c23a3776760afb1e9d4e5c681" protected _identifier => string(1) "`" public last_query => string(166) "SELECT `finder_lastname`.`id` AS `id`, `finder_lastname`.`title` AS `title` FROM `finder_lastnames` AS `finder_lastname` WHERE ` …" protected _instance => string(5) "looka" protected _connection => object mysqli(19) { ... } protected _config => array(5) ( ... ) }protected _db_applied => array(0) protected _db_pending => array(0) protected _db_reset => bool TRUE protected _db_builder => NULL protected _with_applied => array(0) protected _cast_data => array(0) protected _errors_filename => string(8) "lastname" }{ protected _db_group => string(5) "looka" protected _has_many => array(1) ( "humans" => array(4) ( ... ) ) protected _reload_on_wakeup => bool FALSE protected _has_one => array(0) protected _belongs_to => array(0) protected _load_with => array(0) protected _validation => NULL protected _object => array(2) ( "id" => string(3) "108" "title" => string(12) "Наташа" ) protected _changed => array(0) protected _original_values => array(2) ( "id" => string(3) "108" "title" => string(12) "Наташа" ) protected _related => array(0) protected _valid => bool TRUE protected _loaded => bool TRUE protected _saved => bool FALSE protected _sorting => NULL protected _foreign_key_suffix => string(3) "_id" protected _object_name => string(9) "firstname" protected _object_plural => string(10) "firstnames" protected _table_name => string(10) "firstnames" protected _table_columns => array(2) ( "id" => array(13) ( ... ) "title" => array(12) ( ... ) ) protected _updated_column => NULL protected _created_column => NULL protected _serialize_columns => array(0) protected _primary_key => string(2) "id" protected _primary_key_value => string(3) "108" protected _table_names_plural => bool TRUE protected _db => object Database_MySQLi(6)) protected _valid => bool TRUE protected _loaded => bool TRUE protected _saved => bool FALSE protected _sorting => NULL protected _foreign_key_suffix => string(3) "_id" protected _object_name => string(5) "human" protected _object_plural => string(6) "humans" protected _table_name => string(6) "humans" protected _table_columns => array(21) ( "id" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(2) "id" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 1 "display" => string(2) "11" "comment" => string(0) "" "extra" => string(14) "auto_increment" "key" => string(3) "PRI" "privileges" => string(31) "select,insert,update,references" ) "lastname_id" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(11) "lastname_id" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 2 "display" => string(2) "11" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "firstname_id" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(12) "firstname_id" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 3 "display" => string(2) "11" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "nickname" => array(12) ( "type" => string(6) "string" "column_name" => string(8) "nickname" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 4 "character_maximum_length" => string(3) "255" "collation_name" => string(18) "utf8mb4_unicode_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "vk_id" => array(13) ( "type" => string(3) "int" "min" => string(20) "-9223372036854775808" "max" => string(19) "9223372036854775807" "column_name" => string(5) "vk_id" "column_default" => NULL "data_type" => string(6) "bigint" "is_nullable" => bool TRUE "ordinal_position" => integer 5 "display" => string(2) "20" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "bdate" => array(10) ( "type" => string(6) "string" "column_name" => string(5) "bdate" "column_default" => NULL "data_type" => string(4) "date" "is_nullable" => bool TRUE "ordinal_position" => integer 6 "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "info" => array(12) ( "type" => string(6) "string" "column_name" => string(4) "info" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 7 "character_maximum_length" => string(4) "1023" "collation_name" => string(18) "utf8mb4_unicode_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "photo" => array(12) ( "type" => string(6) "string" "column_name" => string(5) "photo" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 8 "character_maximum_length" => string(3) "255" "collation_name" => string(18) "utf8mb4_unicode_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "city_id" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(7) "city_id" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool TRUE "ordinal_position" => integer 9 "display" => string(2) "11" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "country_id" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(10) "country_id" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool TRUE "ordinal_position" => integer 10 "display" => string(2) "11" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "home_town" => array(12) ( "type" => string(6) "string" "column_name" => string(9) "home_town" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 11 "character_maximum_length" => string(3) "255" "collation_name" => string(18) "utf8mb4_unicode_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "home_phone" => array(12) ( "type" => string(6) "string" "column_name" => string(10) "home_phone" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 12 "character_maximum_length" => string(2) "63" "collation_name" => string(18) "utf8mb4_unicode_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "skype" => array(12) ( "type" => string(6) "string" "column_name" => string(5) "skype" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 13 "character_maximum_length" => string(3) "127" "collation_name" => string(18) "utf8mb4_unicode_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "facebook" => array(12) ( "type" => string(6) "string" "column_name" => string(8) "facebook" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 14 "character_maximum_length" => string(3) "127" "collation_name" => string(18) "utf8mb4_unicode_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "twitter" => array(12) ( "type" => string(6) "string" "column_name" => string(7) "twitter" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 15 "character_maximum_length" => string(3) "127" "collation_name" => string(18) "utf8mb4_unicode_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "livejournal" => array(12) ( "type" => string(6) "string" "column_name" => string(11) "livejournal" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 16 "character_maximum_length" => string(3) "127" "collation_name" => string(18) "utf8mb4_unicode_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "instagram" => array(12) ( "type" => string(6) "string" "column_name" => string(9) "instagram" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 17 "character_maximum_length" => string(3) "127" "collation_name" => string(18) "utf8mb4_unicode_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "occupation_type" => array(12) ( "type" => string(6) "string" "column_name" => string(15) "occupation_type" "column_default" => NULL "data_type" => string(4) "enum" "is_nullable" => bool TRUE "ordinal_position" => integer 18 "collation_name" => string(18) "utf8mb4_unicode_ci" "options" => array(3) ( 0 => string(4) "work" 1 => string(6) "school" 2 => string(10) "university" ) "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "occupation_name" => array(12) ( "type" => string(6) "string" "column_name" => string(15) "occupation_name" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 19 "character_maximum_length" => string(3) "255" "collation_name" => string(18) "utf8mb4_unicode_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "rate" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(4) "rate" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 20 "display" => string(2) "11" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "count_firstnames_lastnames" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(26) "count_firstnames_lastnames" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool TRUE "ordinal_position" => integer 21 "display" => string(2) "11" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) ) protected _updated_column => NULL protected _created_column => NULL protected _serialize_columns => array(0) protected _primary_key => string(2) "id" protected _primary_key_value => string(8) "20776821" protected _table_names_plural => bool TRUE protected _db => object Database_MySQLi(6){ protected _connection_id => string(40) "d012da34ee02fd2c23a3776760afb1e9d4e5c681" protected _identifier => string(1) "`" public last_query => string(166) "SELECT `finder_lastname`.`id` AS `id`, `finder_lastname`.`title` AS `title` FROM `finder_lastnames` AS `finder_lastname` WHERE ` …" protected _instance => string(5) "looka" protected _connection => object mysqli(19) { ... } protected _config => array(5) ( ... ) }protected _db_applied => array(0) protected _db_pending => array(0) protected _db_reset => bool TRUE protected _db_builder => NULL protected _with_applied => array(0) protected _cast_data => array(0) protected _errors_filename => string(9) "firstname" }{ protected _connection_id => string(40) "d012da34ee02fd2c23a3776760afb1e9d4e5c681" protected _identifier => string(1) "`" public last_query => string(166) "SELECT `finder_lastname`.`id` AS `id`, `finder_lastname`.`title` AS `title` FROM `finder_lastnames` AS `finder_lastname` WHERE ` …" protected _instance => string(5) "looka" protected _connection => object mysqli(19)protected _db_applied => array(0) protected _db_pending => array(0) protected _db_reset => bool TRUE protected _db_builder => NULL protected _with_applied => array(0) protected _cast_data => array(0) protected _errors_filename => string(5) "human" }{ public affected_rows => NULL public client_info => NULL public client_version => NULL public connect_errno => NULL public connect_error => NULL public errno => NULL public error => NULL public error_list => NULL public field_count => NULL public host_info => NULL public info => NULL public insert_id => NULL public server_info => NULL public server_version => NULL public stat => NULL public sqlstate => NULL public protocol_version => NULL public thread_id => NULL public warning_count => NULL }protected _config => array(5) ( "type" => string(6) "MySQLi" "connection" => array(3) ( "hostname" => string(9) "localhost" "database" => string(5) "looka" "persistent" => bool FALSE ) "table_prefix" => string(7) "finder_" "charset" => string(7) "utf8mb4" "caching" => bool FALSE ) }{ protected _has_many => array(2) ( "tasks" => array(4) ( "model" => string(4) "Task" "foreign_key" => string(11) "category_id" "through" => NULL "far_key" => string(7) "task_id" ) "tops" => array(4) ( "model" => string(3) "Top" "foreign_key" => string(11) "category_id" "through" => NULL "far_key" => string(6) "top_id" ) ) protected prefix_url => string(9) "/subject/" protected _reload_on_wakeup => bool FALSE protected _has_one => array(0) protected _belongs_to => array(0) protected _load_with => array(0) protected _validation => NULL protected _object => array(4) ( "id" => string(1) "7" "name" => string(10) "Химия" "url" => string(9) "chemistry" "count" => string(6) "799022" ) protected _changed => array(0) protected _original_values => array(4) ( "id" => string(1) "7" "name" => string(10) "Химия" "url" => string(9) "chemistry" "count" => string(6) "799022" ) protected _related => array(0) protected _valid => bool TRUE protected _loaded => bool TRUE protected _saved => bool FALSE protected _sorting => NULL protected _foreign_key_suffix => string(3) "_id" protected _object_name => string(8) "category" protected _object_plural => string(10) "categories" protected _table_name => string(10) "categories" protected _table_columns => array(4) ( "id" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(2) "id" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 1 "display" => string(2) "11" "comment" => string(0) "" "extra" => string(14) "auto_increment" "key" => string(3) "PRI" "privileges" => string(31) "select,insert,update,references" ) "name" => array(12) ( "type" => string(6) "string" "column_name" => string(4) "name" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool FALSE "ordinal_position" => integer 2 "character_maximum_length" => string(3) "255" "collation_name" => string(18) "utf8mb3_unicode_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "url" => array(12) ( "type" => string(6) "string" "column_name" => string(3) "url" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool FALSE "ordinal_position" => integer 3 "character_maximum_length" => string(3) "255" "collation_name" => string(18) "utf8mb3_unicode_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "count" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(5) "count" "column_default" => string(1) "0" "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 4 "display" => string(2) "11" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) ) protected _updated_column => NULL protected _created_column => NULL protected _serialize_columns => array(0) protected _primary_key => string(2) "id" protected _primary_key_value => string(1) "7" protected _table_names_plural => bool TRUE protected _db => object Database_MySQLi(6)) protected _valid => bool TRUE protected _loaded => bool TRUE protected _saved => bool FALSE protected _sorting => NULL protected _foreign_key_suffix => string(3) "_id" protected _object_name => string(4) "task" protected _object_plural => string(5) "tasks" protected _table_name => string(5) "tasks" protected _table_columns => array(16) ( "id" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(2) "id" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 1 "display" => string(2) "11" "comment" => string(0) "" "extra" => string(14) "auto_increment" "key" => string(3) "PRI" "privileges" => string(31) "select,insert,update,references" ) "category_id" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(11) "category_id" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 2 "display" => string(2) "11" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "text" => array(12) ( "type" => string(6) "string" "character_maximum_length" => string(5) "65535" "column_name" => string(4) "text" "column_default" => NULL "data_type" => string(4) "text" "is_nullable" => bool FALSE "ordinal_position" => integer 3 "collation_name" => string(18) "utf8mb3_unicode_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "zn_id" => array(13) ( "type" => string(3) "int" "min" => string(20) "-9223372036854775808" "max" => string(19) "9223372036854775807" "column_name" => string(5) "zn_id" "column_default" => string(1) "0" "data_type" => string(6) "bigint" "is_nullable" => bool FALSE "ordinal_position" => integer 4 "display" => string(2) "20" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "date_time" => array(10) ( "type" => string(6) "string" "column_name" => string(9) "date_time" "column_default" => string(19) "current_timestamp()" "data_type" => string(8) "datetime" "is_nullable" => bool FALSE "ordinal_position" => integer 5 "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "views" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(5) "views" "column_default" => string(1) "0" "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 6 "display" => string(2) "11" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "human_id" => array(13) ( "type" => string(3) "int" "min" => string(20) "-9223372036854775808" "max" => string(19) "9223372036854775807" "column_name" => string(8) "human_id" "column_default" => NULL "data_type" => string(6) "bigint" "is_nullable" => bool TRUE "ordinal_position" => integer 7 "display" => string(2) "20" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "ya_spell" => array(12) ( "type" => string(6) "string" "column_name" => string(8) "ya_spell" "column_default" => string(1) "0" "data_type" => string(4) "enum" "is_nullable" => bool FALSE "ordinal_position" => integer 8 "collation_name" => string(18) "utf8mb3_unicode_ci" "options" => array(2) ( 0 => string(1) "0" 1 => string(1) "1" ) "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "category_key" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(12) "category_key" "column_default" => string(1) "0" "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 9 "display" => string(2) "11" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "has_gpt" => array(12) ( "type" => string(6) "string" "column_name" => string(7) "has_gpt" "column_default" => NULL "data_type" => string(4) "enum" "is_nullable" => bool TRUE "ordinal_position" => integer 10 "collation_name" => string(18) "utf8mb3_unicode_ci" "options" => array(4) ( 0 => string(1) "0" 1 => string(1) "1" 2 => string(12) "has_attaches" 3 => string(4) "skip" ) "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "source" => array(12) ( "type" => string(6) "string" "column_name" => string(6) "source" "column_default" => NULL "data_type" => string(4) "enum" "is_nullable" => bool TRUE "ordinal_position" => integer 11 "collation_name" => string(18) "utf8mb3_unicode_ci" "options" => array(1) ( 0 => string(12) "vashurok.com" ) "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "source_id" => array(13) ( "type" => string(3) "int" "min" => string(20) "-9223372036854775808" "max" => string(19) "9223372036854775807" "column_name" => string(9) "source_id" "column_default" => NULL "data_type" => string(6) "bigint" "is_nullable" => bool TRUE "ordinal_position" => integer 12 "display" => string(2) "20" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "text_for_search" => array(12) ( "type" => string(6) "string" "character_maximum_length" => string(5) "65535" "column_name" => string(15) "text_for_search" "column_default" => NULL "data_type" => string(4) "text" "is_nullable" => bool TRUE "ordinal_position" => integer 13 "collation_name" => string(18) "utf8mb3_unicode_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "related" => array(12) ( "type" => string(6) "string" "column_name" => string(7) "related" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 14 "character_maximum_length" => string(4) "1023" "collation_name" => string(18) "utf8mb3_unicode_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "good" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(4) "good" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool TRUE "ordinal_position" => integer 15 "display" => string(2) "11" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "bad" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(3) "bad" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool TRUE "ordinal_position" => integer 16 "display" => string(2) "11" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) ) protected _updated_column => NULL protected _created_column => NULL protected _serialize_columns => array(0) protected _primary_key => string(2) "id" protected _primary_key_value => string(8) "11761506" protected _table_names_plural => bool TRUE protected _db => object Database_MySQLi(6){ protected _connection_id => string(40) "9fdecc117b583662f3b3d15c4c4ac71fc778e18d" protected _identifier => string(1) "`" public last_query => string(185) "SELECT `category`.`id` AS `id`, `category`.`name` AS `name`, `category`.`url` AS `url`, `category`.`count` AS `count` FROM `cate …" protected _instance => string(7) "default" protected _connection => object mysqli(19)protected _db_group => NULL protected _db_applied => array(0) protected _db_pending => array(0) protected _db_reset => bool TRUE protected _db_builder => NULL protected _with_applied => array(0) protected _cast_data => array(0) protected _errors_filename => string(8) "category" }{ public affected_rows => NULL public client_info => NULL public client_version => NULL public connect_errno => NULL public connect_error => NULL public errno => NULL public error => NULL public error_list => NULL public field_count => NULL public host_info => NULL public info => NULL public insert_id => NULL public server_info => NULL public server_version => NULL public stat => NULL public sqlstate => NULL public protocol_version => NULL public thread_id => NULL public warning_count => NULL }protected _config => array(6) ( "type" => string(6) "MySQLi" "connection" => array(3) ( "hostname" => string(9) "localhost" "database" => string(9) "uznavalka" "persistent" => bool FALSE ) "table_prefix" => string(0) "" "charset" => string(7) "utf8mb4" "caching" => bool FALSE "profiling" => bool FALSE ) }{ protected _connection_id => string(40) "9fdecc117b583662f3b3d15c4c4ac71fc778e18d" protected _identifier => string(1) "`" public last_query => string(185) "SELECT `category`.`id` AS `id`, `category`.`name` AS `name`, `category`.`url` AS `url`, `category`.`count` AS `count` FROM `cate …" protected _instance => string(7) "default" protected _connection => object mysqli(19)protected _db_group => NULL protected _db_applied => array(0) protected _db_pending => array(0) protected _db_reset => bool TRUE protected _db_builder => NULL protected _with_applied => array(0) protected _cast_data => array(0) protected _errors_filename => string(4) "task" }{ public affected_rows => NULL public client_info => NULL public client_version => NULL public connect_errno => NULL public connect_error => NULL public errno => NULL public error => NULL public error_list => NULL public field_count => NULL public host_info => NULL public info => NULL public insert_id => NULL public server_info => NULL public server_version => NULL public stat => NULL public sqlstate => NULL public protocol_version => NULL public thread_id => NULL public warning_count => NULL }protected _config => array(6) ( "type" => string(6) "MySQLi" "connection" => array(3) ( "hostname" => string(9) "localhost" "database" => string(9) "uznavalka" "persistent" => bool FALSE ) "table_prefix" => string(0) "" "charset" => string(7) "utf8mb4" "caching" => bool FALSE "profiling" => bool FALSE ) }{ protected _belongs_to => array(2) ( "category" => array(2) ( "model" => string(8) "Category" "foreign_key" => string(11) "category_id" ) "human" => array(2) ( "model" => string(5) "Human" "foreign_key" => string(8) "human_id" ) ) protected _has_many => array(4) ( "answers" => array(4) ( "model" => string(6) "Answer" "foreign_key" => string(7) "task_id" "through" => NULL "far_key" => string(9) "answer_id" ) "tattaches" => array(4) ( "model" => string(7) "Tattach" "foreign_key" => string(7) "task_id" "through" => NULL "far_key" => string(10) "tattach_id" ) "tops" => array(4) ( "model" => string(3) "Top" "foreign_key" => string(7) "task_id" "through" => NULL "far_key" => string(6) "top_id" ) "ipsviews" => array(4) ( "model" => string(7) "Ipsview" "foreign_key" => string(7) "task_id" "through" => NULL "far_key" => string(10) "ipsview_id" ) ) protected _reload_on_wakeup => bool FALSE protected _has_one => array(0) protected _load_with => array(0) protected _validation => NULL protected _object => array(16) ( "id" => string(8) "14103798" "category_id" => string(1) "7" "text" => string(191) "<span class="sg-text sg-text--large sg-text--bold sg-text--break-words brn-qpage-next-question-box-content__primary"> До складу …" "zn_id" => string(8) "37500115" "date_time" => string(19) "2023-07-07 01:03:02" "views" => string(1) "3" "human_id" => string(7) "1186243" "ya_spell" => string(1) "0" "category_key" => string(6) "666218" "has_gpt" => string(1) "1" "source" => NULL "source_id" => NULL "text_for_search" => string(65) "До складу оксидів завжди входять? " "related" => string(120) "["7108902","14050961","11347733","13025802","11399709","11342486","5548477","11254901","11292172","12151480","11270209"]" "good" => NULL "bad" => NULL ) protected _changed => array(0) protected _original_values => array(16) ( "id" => string(8) "14103798" "category_id" => string(1) "7" "text" => string(191) "<span class="sg-text sg-text--large sg-text--bold sg-text--break-words brn-qpage-next-question-box-content__primary"> До складу …" "zn_id" => string(8) "37500115" "date_time" => string(19) "2023-07-07 01:03:02" "views" => string(1) "3" "human_id" => string(7) "1186243" "ya_spell" => string(1) "0" "category_key" => string(6) "666218" "has_gpt" => string(1) "1" "source" => NULL "source_id" => NULL "text_for_search" => string(65) "До складу оксидів завжди входять? " "related" => string(120) "["7108902","14050961","11347733","13025802","11399709","11342486","5548477","11254901","11292172","12151480","11270209"]" "good" => NULL "bad" => NULL ) protected _related => array(2) ( "human" => object Model_Human(34)9 => object Model_Task(34){ protected _db_group => string(5) "looka" protected _has_many => array(4) ( "universities" => array(5) ( "model" => string(10) "university" "foreign_key" => string(8) "human_id" "through" => string(19) "humans_universities" "far_key" => string(13) "university_id" "_table_columns" => array(5) ( "faculty_id" => NULL "chair_id" => NULL "graduation" => NULL "education_form" => NULL "education_status" => NULL ) ) "humans_universities" => array(4) ( "model" => string(17) "Humans_University" "foreign_key" => string(8) "human_id" "through" => NULL "far_key" => string(20) "humans_university_id" ) "schools" => array(5) ( "model" => string(6) "school" "foreign_key" => string(8) "human_id" "through" => string(14) "humans_schools" "far_key" => string(9) "school_id" "_table_columns" => array(6) ( "year_from" => NULL "year_to" => NULL "year_graduated" => NULL "class" => NULL "speciality" => NULL "type" => NULL ) ) "humans_schools" => array(4) ( "model" => string(13) "Humans_School" "foreign_key" => string(8) "human_id" "through" => NULL "far_key" => string(16) "humans_school_id" ) ) protected _belongs_to => array(4) ( "lastname" => array(2) ( "model" => string(8) "Lastname" "foreign_key" => string(11) "lastname_id" ) "firstname" => array(2) ( "model" => string(9) "Firstname" "foreign_key" => string(12) "firstname_id" ) "country" => array(2) ( "model" => string(7) "Country" "foreign_key" => string(10) "country_id" ) "city" => array(2) ( "model" => string(4) "City" "foreign_key" => string(7) "city_id" ) ) protected _reload_on_wakeup => bool FALSE protected _has_one => array(0) protected _load_with => array(0) protected _validation => NULL protected _object => array(21) ( "id" => string(7) "1186243" "lastname_id" => string(6) "276626" "firstname_id" => string(2) "88" "nickname" => string(0) "" "vk_id" => string(7) "1275961" "bdate" => string(10) "2004-02-04" "info" => NULL "photo" => string(63) "https://pp.userapi.com/c636329/v636329961/549a0/7gb03U4fzkU.jpg" "city_id" => string(7) "1710182" "country_id" => string(2) "43" "home_town" => NULL "home_phone" => NULL "skype" => NULL "facebook" => NULL "twitter" => NULL "livejournal" => NULL "instagram" => NULL "occupation_type" => string(4) "work" "occupation_name" => string(15) "Bank of Nikolai" "rate" => string(2) "12" "count_firstnames_lastnames" => NULL ) protected _changed => array(0) protected _original_values => array(21) ( "id" => string(7) "1186243" "lastname_id" => string(6) "276626" "firstname_id" => string(2) "88" "nickname" => string(0) "" "vk_id" => string(7) "1275961" "bdate" => string(10) "2004-02-04" "info" => NULL "photo" => string(63) "https://pp.userapi.com/c636329/v636329961/549a0/7gb03U4fzkU.jpg" "city_id" => string(7) "1710182" "country_id" => string(2) "43" "home_town" => NULL "home_phone" => NULL "skype" => NULL "facebook" => NULL "twitter" => NULL "livejournal" => NULL "instagram" => NULL "occupation_type" => string(4) "work" "occupation_name" => string(15) "Bank of Nikolai" "rate" => string(2) "12" "count_firstnames_lastnames" => NULL ) protected _related => array(2) ( "lastname" => object Model_Lastname(34)"category" => object Model_Category(35){ protected _db_group => string(5) "looka" protected _reload_on_wakeup => bool FALSE protected _has_one => array(0) protected _belongs_to => array(0) protected _has_many => array(0) protected _load_with => array(0) protected _validation => NULL protected _object => array(2) ( "id" => string(6) "276626" "title" => string(12) "Barbq-Junior" ) protected _changed => array(0) protected _original_values => array(2) ( "id" => string(6) "276626" "title" => string(12) "Barbq-Junior" ) protected _related => array(0) protected _valid => bool TRUE protected _loaded => bool TRUE protected _saved => bool FALSE protected _sorting => NULL protected _foreign_key_suffix => string(3) "_id" protected _object_name => string(8) "lastname" protected _object_plural => string(9) "lastnames" protected _table_name => string(9) "lastnames" protected _table_columns => array(2) ( "id" => array(13) ( ... ) "title" => array(12) ( ... ) ) protected _updated_column => NULL protected _created_column => NULL protected _serialize_columns => array(0) protected _primary_key => string(2) "id" protected _primary_key_value => string(6) "276626" protected _table_names_plural => bool TRUE protected _db => object Database_MySQLi(6)"firstname" => object Model_Firstname(34){ protected _connection_id => string(40) "d012da34ee02fd2c23a3776760afb1e9d4e5c681" protected _identifier => string(1) "`" public last_query => string(166) "SELECT `finder_lastname`.`id` AS `id`, `finder_lastname`.`title` AS `title` FROM `finder_lastnames` AS `finder_lastname` WHERE ` …" protected _instance => string(5) "looka" protected _connection => object mysqli(19) { ... } protected _config => array(5) ( ... ) }protected _db_applied => array(0) protected _db_pending => array(0) protected _db_reset => bool TRUE protected _db_builder => NULL protected _with_applied => array(0) protected _cast_data => array(0) protected _errors_filename => string(8) "lastname" }{ protected _db_group => string(5) "looka" protected _has_many => array(1) ( "humans" => array(4) ( ... ) ) protected _reload_on_wakeup => bool FALSE protected _has_one => array(0) protected _belongs_to => array(0) protected _load_with => array(0) protected _validation => NULL protected _object => array(2) ( "id" => string(2) "88" "title" => string(14) "Андрюха" ) protected _changed => array(0) protected _original_values => array(2) ( "id" => string(2) "88" "title" => string(14) "Андрюха" ) protected _related => array(0) protected _valid => bool TRUE protected _loaded => bool TRUE protected _saved => bool FALSE protected _sorting => NULL protected _foreign_key_suffix => string(3) "_id" protected _object_name => string(9) "firstname" protected _object_plural => string(10) "firstnames" protected _table_name => string(10) "firstnames" protected _table_columns => array(2) ( "id" => array(13) ( ... ) "title" => array(12) ( ... ) ) protected _updated_column => NULL protected _created_column => NULL protected _serialize_columns => array(0) protected _primary_key => string(2) "id" protected _primary_key_value => string(2) "88" protected _table_names_plural => bool TRUE protected _db => object Database_MySQLi(6)) protected _valid => bool TRUE protected _loaded => bool TRUE protected _saved => bool FALSE protected _sorting => NULL protected _foreign_key_suffix => string(3) "_id" protected _object_name => string(5) "human" protected _object_plural => string(6) "humans" protected _table_name => string(6) "humans" protected _table_columns => array(21) ( "id" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(2) "id" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 1 "display" => string(2) "11" "comment" => string(0) "" "extra" => string(14) "auto_increment" "key" => string(3) "PRI" "privileges" => string(31) "select,insert,update,references" ) "lastname_id" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(11) "lastname_id" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 2 "display" => string(2) "11" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "firstname_id" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(12) "firstname_id" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 3 "display" => string(2) "11" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "nickname" => array(12) ( "type" => string(6) "string" "column_name" => string(8) "nickname" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 4 "character_maximum_length" => string(3) "255" "collation_name" => string(18) "utf8mb4_unicode_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "vk_id" => array(13) ( "type" => string(3) "int" "min" => string(20) "-9223372036854775808" "max" => string(19) "9223372036854775807" "column_name" => string(5) "vk_id" "column_default" => NULL "data_type" => string(6) "bigint" "is_nullable" => bool TRUE "ordinal_position" => integer 5 "display" => string(2) "20" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "bdate" => array(10) ( "type" => string(6) "string" "column_name" => string(5) "bdate" "column_default" => NULL "data_type" => string(4) "date" "is_nullable" => bool TRUE "ordinal_position" => integer 6 "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "info" => array(12) ( "type" => string(6) "string" "column_name" => string(4) "info" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 7 "character_maximum_length" => string(4) "1023" "collation_name" => string(18) "utf8mb4_unicode_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "photo" => array(12) ( "type" => string(6) "string" "column_name" => string(5) "photo" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 8 "character_maximum_length" => string(3) "255" "collation_name" => string(18) "utf8mb4_unicode_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "city_id" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(7) "city_id" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool TRUE "ordinal_position" => integer 9 "display" => string(2) "11" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "country_id" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(10) "country_id" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool TRUE "ordinal_position" => integer 10 "display" => string(2) "11" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "home_town" => array(12) ( "type" => string(6) "string" "column_name" => string(9) "home_town" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 11 "character_maximum_length" => string(3) "255" "collation_name" => string(18) "utf8mb4_unicode_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "home_phone" => array(12) ( "type" => string(6) "string" "column_name" => string(10) "home_phone" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 12 "character_maximum_length" => string(2) "63" "collation_name" => string(18) "utf8mb4_unicode_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "skype" => array(12) ( "type" => string(6) "string" "column_name" => string(5) "skype" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 13 "character_maximum_length" => string(3) "127" "collation_name" => string(18) "utf8mb4_unicode_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "facebook" => array(12) ( "type" => string(6) "string" "column_name" => string(8) "facebook" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 14 "character_maximum_length" => string(3) "127" "collation_name" => string(18) "utf8mb4_unicode_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "twitter" => array(12) ( "type" => string(6) "string" "column_name" => string(7) "twitter" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 15 "character_maximum_length" => string(3) "127" "collation_name" => string(18) "utf8mb4_unicode_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "livejournal" => array(12) ( "type" => string(6) "string" "column_name" => string(11) "livejournal" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 16 "character_maximum_length" => string(3) "127" "collation_name" => string(18) "utf8mb4_unicode_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "instagram" => array(12) ( "type" => string(6) "string" "column_name" => string(9) "instagram" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 17 "character_maximum_length" => string(3) "127" "collation_name" => string(18) "utf8mb4_unicode_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "occupation_type" => array(12) ( "type" => string(6) "string" "column_name" => string(15) "occupation_type" "column_default" => NULL "data_type" => string(4) "enum" "is_nullable" => bool TRUE "ordinal_position" => integer 18 "collation_name" => string(18) "utf8mb4_unicode_ci" "options" => array(3) ( 0 => string(4) "work" 1 => string(6) "school" 2 => string(10) "university" ) "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "occupation_name" => array(12) ( "type" => string(6) "string" "column_name" => string(15) "occupation_name" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 19 "character_maximum_length" => string(3) "255" "collation_name" => string(18) "utf8mb4_unicode_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "rate" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(4) "rate" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 20 "display" => string(2) "11" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "count_firstnames_lastnames" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(26) "count_firstnames_lastnames" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool TRUE "ordinal_position" => integer 21 "display" => string(2) "11" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) ) protected _updated_column => NULL protected _created_column => NULL protected _serialize_columns => array(0) protected _primary_key => string(2) "id" protected _primary_key_value => string(7) "1186243" protected _table_names_plural => bool TRUE protected _db => object Database_MySQLi(6){ protected _connection_id => string(40) "d012da34ee02fd2c23a3776760afb1e9d4e5c681" protected _identifier => string(1) "`" public last_query => string(166) "SELECT `finder_lastname`.`id` AS `id`, `finder_lastname`.`title` AS `title` FROM `finder_lastnames` AS `finder_lastname` WHERE ` …" protected _instance => string(5) "looka" protected _connection => object mysqli(19) { ... } protected _config => array(5) ( ... ) }protected _db_applied => array(0) protected _db_pending => array(0) protected _db_reset => bool TRUE protected _db_builder => NULL protected _with_applied => array(0) protected _cast_data => array(0) protected _errors_filename => string(9) "firstname" }{ protected _connection_id => string(40) "d012da34ee02fd2c23a3776760afb1e9d4e5c681" protected _identifier => string(1) "`" public last_query => string(166) "SELECT `finder_lastname`.`id` AS `id`, `finder_lastname`.`title` AS `title` FROM `finder_lastnames` AS `finder_lastname` WHERE ` …" protected _instance => string(5) "looka" protected _connection => object mysqli(19)protected _db_applied => array(0) protected _db_pending => array(0) protected _db_reset => bool TRUE protected _db_builder => NULL protected _with_applied => array(0) protected _cast_data => array(0) protected _errors_filename => string(5) "human" }{ public affected_rows => NULL public client_info => NULL public client_version => NULL public connect_errno => NULL public connect_error => NULL public errno => NULL public error => NULL public error_list => NULL public field_count => NULL public host_info => NULL public info => NULL public insert_id => NULL public server_info => NULL public server_version => NULL public stat => NULL public sqlstate => NULL public protocol_version => NULL public thread_id => NULL public warning_count => NULL }protected _config => array(5) ( "type" => string(6) "MySQLi" "connection" => array(3) ( "hostname" => string(9) "localhost" "database" => string(5) "looka" "persistent" => bool FALSE ) "table_prefix" => string(7) "finder_" "charset" => string(7) "utf8mb4" "caching" => bool FALSE ) }{ protected _has_many => array(2) ( "tasks" => array(4) ( "model" => string(4) "Task" "foreign_key" => string(11) "category_id" "through" => NULL "far_key" => string(7) "task_id" ) "tops" => array(4) ( "model" => string(3) "Top" "foreign_key" => string(11) "category_id" "through" => NULL "far_key" => string(6) "top_id" ) ) protected prefix_url => string(9) "/subject/" protected _reload_on_wakeup => bool FALSE protected _has_one => array(0) protected _belongs_to => array(0) protected _load_with => array(0) protected _validation => NULL protected _object => array(4) ( "id" => string(1) "7" "name" => string(10) "Химия" "url" => string(9) "chemistry" "count" => string(6) "799022" ) protected _changed => array(0) protected _original_values => array(4) ( "id" => string(1) "7" "name" => string(10) "Химия" "url" => string(9) "chemistry" "count" => string(6) "799022" ) protected _related => array(0) protected _valid => bool TRUE protected _loaded => bool TRUE protected _saved => bool FALSE protected _sorting => NULL protected _foreign_key_suffix => string(3) "_id" protected _object_name => string(8) "category" protected _object_plural => string(10) "categories" protected _table_name => string(10) "categories" protected _table_columns => array(4) ( "id" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(2) "id" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 1 "display" => string(2) "11" "comment" => string(0) "" "extra" => string(14) "auto_increment" "key" => string(3) "PRI" "privileges" => string(31) "select,insert,update,references" ) "name" => array(12) ( "type" => string(6) "string" "column_name" => string(4) "name" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool FALSE "ordinal_position" => integer 2 "character_maximum_length" => string(3) "255" "collation_name" => string(18) "utf8mb3_unicode_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "url" => array(12) ( "type" => string(6) "string" "column_name" => string(3) "url" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool FALSE "ordinal_position" => integer 3 "character_maximum_length" => string(3) "255" "collation_name" => string(18) "utf8mb3_unicode_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "count" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(5) "count" "column_default" => string(1) "0" "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 4 "display" => string(2) "11" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) ) protected _updated_column => NULL protected _created_column => NULL protected _serialize_columns => array(0) protected _primary_key => string(2) "id" protected _primary_key_value => string(1) "7" protected _table_names_plural => bool TRUE protected _db => object Database_MySQLi(6)) protected _valid => bool TRUE protected _loaded => bool TRUE protected _saved => bool FALSE protected _sorting => NULL protected _foreign_key_suffix => string(3) "_id" protected _object_name => string(4) "task" protected _object_plural => string(5) "tasks" protected _table_name => string(5) "tasks" protected _table_columns => array(16) ( "id" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(2) "id" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 1 "display" => string(2) "11" "comment" => string(0) "" "extra" => string(14) "auto_increment" "key" => string(3) "PRI" "privileges" => string(31) "select,insert,update,references" ) "category_id" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(11) "category_id" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 2 "display" => string(2) "11" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "text" => array(12) ( "type" => string(6) "string" "character_maximum_length" => string(5) "65535" "column_name" => string(4) "text" "column_default" => NULL "data_type" => string(4) "text" "is_nullable" => bool FALSE "ordinal_position" => integer 3 "collation_name" => string(18) "utf8mb3_unicode_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "zn_id" => array(13) ( "type" => string(3) "int" "min" => string(20) "-9223372036854775808" "max" => string(19) "9223372036854775807" "column_name" => string(5) "zn_id" "column_default" => string(1) "0" "data_type" => string(6) "bigint" "is_nullable" => bool FALSE "ordinal_position" => integer 4 "display" => string(2) "20" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "date_time" => array(10) ( "type" => string(6) "string" "column_name" => string(9) "date_time" "column_default" => string(19) "current_timestamp()" "data_type" => string(8) "datetime" "is_nullable" => bool FALSE "ordinal_position" => integer 5 "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "views" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(5) "views" "column_default" => string(1) "0" "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 6 "display" => string(2) "11" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "human_id" => array(13) ( "type" => string(3) "int" "min" => string(20) "-9223372036854775808" "max" => string(19) "9223372036854775807" "column_name" => string(8) "human_id" "column_default" => NULL "data_type" => string(6) "bigint" "is_nullable" => bool TRUE "ordinal_position" => integer 7 "display" => string(2) "20" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "ya_spell" => array(12) ( "type" => string(6) "string" "column_name" => string(8) "ya_spell" "column_default" => string(1) "0" "data_type" => string(4) "enum" "is_nullable" => bool FALSE "ordinal_position" => integer 8 "collation_name" => string(18) "utf8mb3_unicode_ci" "options" => array(2) ( 0 => string(1) "0" 1 => string(1) "1" ) "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "category_key" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(12) "category_key" "column_default" => string(1) "0" "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 9 "display" => string(2) "11" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "has_gpt" => array(12) ( "type" => string(6) "string" "column_name" => string(7) "has_gpt" "column_default" => NULL "data_type" => string(4) "enum" "is_nullable" => bool TRUE "ordinal_position" => integer 10 "collation_name" => string(18) "utf8mb3_unicode_ci" "options" => array(4) ( 0 => string(1) "0" 1 => string(1) "1" 2 => string(12) "has_attaches" 3 => string(4) "skip" ) "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "source" => array(12) ( "type" => string(6) "string" "column_name" => string(6) "source" "column_default" => NULL "data_type" => string(4) "enum" "is_nullable" => bool TRUE "ordinal_position" => integer 11 "collation_name" => string(18) "utf8mb3_unicode_ci" "options" => array(1) ( 0 => string(12) "vashurok.com" ) "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "source_id" => array(13) ( "type" => string(3) "int" "min" => string(20) "-9223372036854775808" "max" => string(19) "9223372036854775807" "column_name" => string(9) "source_id" "column_default" => NULL "data_type" => string(6) "bigint" "is_nullable" => bool TRUE "ordinal_position" => integer 12 "display" => string(2) "20" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "text_for_search" => array(12) ( "type" => string(6) "string" "character_maximum_length" => string(5) "65535" "column_name" => string(15) "text_for_search" "column_default" => NULL "data_type" => string(4) "text" "is_nullable" => bool TRUE "ordinal_position" => integer 13 "collation_name" => string(18) "utf8mb3_unicode_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "related" => array(12) ( "type" => string(6) "string" "column_name" => string(7) "related" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 14 "character_maximum_length" => string(4) "1023" "collation_name" => string(18) "utf8mb3_unicode_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "good" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(4) "good" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool TRUE "ordinal_position" => integer 15 "display" => string(2) "11" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "bad" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(3) "bad" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool TRUE "ordinal_position" => integer 16 "display" => string(2) "11" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) ) protected _updated_column => NULL protected _created_column => NULL protected _serialize_columns => array(0) protected _primary_key => string(2) "id" protected _primary_key_value => string(8) "14103798" protected _table_names_plural => bool TRUE protected _db => object Database_MySQLi(6){ protected _connection_id => string(40) "9fdecc117b583662f3b3d15c4c4ac71fc778e18d" protected _identifier => string(1) "`" public last_query => string(185) "SELECT `category`.`id` AS `id`, `category`.`name` AS `name`, `category`.`url` AS `url`, `category`.`count` AS `count` FROM `cate …" protected _instance => string(7) "default" protected _connection => object mysqli(19)protected _db_group => NULL protected _db_applied => array(0) protected _db_pending => array(0) protected _db_reset => bool TRUE protected _db_builder => NULL protected _with_applied => array(0) protected _cast_data => array(0) protected _errors_filename => string(8) "category" }{ public affected_rows => NULL public client_info => NULL public client_version => NULL public connect_errno => NULL public connect_error => NULL public errno => NULL public error => NULL public error_list => NULL public field_count => NULL public host_info => NULL public info => NULL public insert_id => NULL public server_info => NULL public server_version => NULL public stat => NULL public sqlstate => NULL public protocol_version => NULL public thread_id => NULL public warning_count => NULL }protected _config => array(6) ( "type" => string(6) "MySQLi" "connection" => array(3) ( "hostname" => string(9) "localhost" "database" => string(9) "uznavalka" "persistent" => bool FALSE ) "table_prefix" => string(0) "" "charset" => string(7) "utf8mb4" "caching" => bool FALSE "profiling" => bool FALSE ) }{ protected _connection_id => string(40) "9fdecc117b583662f3b3d15c4c4ac71fc778e18d" protected _identifier => string(1) "`" public last_query => string(185) "SELECT `category`.`id` AS `id`, `category`.`name` AS `name`, `category`.`url` AS `url`, `category`.`count` AS `count` FROM `cate …" protected _instance => string(7) "default" protected _connection => object mysqli(19)protected _db_group => NULL protected _db_applied => array(0) protected _db_pending => array(0) protected _db_reset => bool TRUE protected _db_builder => NULL protected _with_applied => array(0) protected _cast_data => array(0) protected _errors_filename => string(4) "task" }{ public affected_rows => NULL public client_info => NULL public client_version => NULL public connect_errno => NULL public connect_error => NULL public errno => NULL public error => NULL public error_list => NULL public field_count => NULL public host_info => NULL public info => NULL public insert_id => NULL public server_info => NULL public server_version => NULL public stat => NULL public sqlstate => NULL public protocol_version => NULL public thread_id => NULL public warning_count => NULL }protected _config => array(6) ( "type" => string(6) "MySQLi" "connection" => array(3) ( "hostname" => string(9) "localhost" "database" => string(9) "uznavalka" "persistent" => bool FALSE ) "table_prefix" => string(0) "" "charset" => string(7) "utf8mb4" "caching" => bool FALSE "profiling" => bool FALSE ) }{ protected _belongs_to => array(2) ( "category" => array(2) ( "model" => string(8) "Category" "foreign_key" => string(11) "category_id" ) "human" => array(2) ( "model" => string(5) "Human" "foreign_key" => string(8) "human_id" ) ) protected _has_many => array(4) ( "answers" => array(4) ( "model" => string(6) "Answer" "foreign_key" => string(7) "task_id" "through" => NULL "far_key" => string(9) "answer_id" ) "tattaches" => array(4) ( "model" => string(7) "Tattach" "foreign_key" => string(7) "task_id" "through" => NULL "far_key" => string(10) "tattach_id" ) "tops" => array(4) ( "model" => string(3) "Top" "foreign_key" => string(7) "task_id" "through" => NULL "far_key" => string(6) "top_id" ) "ipsviews" => array(4) ( "model" => string(7) "Ipsview" "foreign_key" => string(7) "task_id" "through" => NULL "far_key" => string(10) "ipsview_id" ) ) protected _reload_on_wakeup => bool FALSE protected _has_one => array(0) protected _load_with => array(0) protected _validation => NULL protected _object => array(16) ( "id" => string(7) "1972445" "category_id" => string(1) "7" "text" => string(170) "Составьте уравнения реакции окисления бутаналя. Определите молярную массу продукта реакции" "zn_id" => string(7) "5517167" "date_time" => string(19) "2018-11-02 03:30:29" "views" => string(2) "17" "human_id" => string(7) "9897776" "ya_spell" => string(1) "0" "category_key" => string(5) "88488" "has_gpt" => string(1) "1" "source" => NULL "source_id" => NULL "text_for_search" => string(170) "Составьте уравнения реакции окисления бутаналя. Определите молярную массу продукта реакции" "related" => NULL "good" => NULL "bad" => NULL ) protected _changed => array(0) protected _original_values => array(16) ( "id" => string(7) "1972445" "category_id" => string(1) "7" "text" => string(170) "Составьте уравнения реакции окисления бутаналя. Определите молярную массу продукта реакции" "zn_id" => string(7) "5517167" "date_time" => string(19) "2018-11-02 03:30:29" "views" => string(2) "17" "human_id" => string(7) "9897776" "ya_spell" => string(1) "0" "category_key" => string(5) "88488" "has_gpt" => string(1) "1" "source" => NULL "source_id" => NULL "text_for_search" => string(170) "Составьте уравнения реакции окисления бутаналя. Определите молярную массу продукта реакции" "related" => NULL "good" => NULL "bad" => NULL ) protected _related => array(2) ( "human" => object Model_Human(34)) ) }{ protected _db_group => string(5) "looka" protected _has_many => array(4) ( "universities" => array(5) ( "model" => string(10) "university" "foreign_key" => string(8) "human_id" "through" => string(19) "humans_universities" "far_key" => string(13) "university_id" "_table_columns" => array(5) ( "faculty_id" => NULL "chair_id" => NULL "graduation" => NULL "education_form" => NULL "education_status" => NULL ) ) "humans_universities" => array(4) ( "model" => string(17) "Humans_University" "foreign_key" => string(8) "human_id" "through" => NULL "far_key" => string(20) "humans_university_id" ) "schools" => array(5) ( "model" => string(6) "school" "foreign_key" => string(8) "human_id" "through" => string(14) "humans_schools" "far_key" => string(9) "school_id" "_table_columns" => array(6) ( "year_from" => NULL "year_to" => NULL "year_graduated" => NULL "class" => NULL "speciality" => NULL "type" => NULL ) ) "humans_schools" => array(4) ( "model" => string(13) "Humans_School" "foreign_key" => string(8) "human_id" "through" => NULL "far_key" => string(16) "humans_school_id" ) ) protected _belongs_to => array(4) ( "lastname" => array(2) ( "model" => string(8) "Lastname" "foreign_key" => string(11) "lastname_id" ) "firstname" => array(2) ( "model" => string(9) "Firstname" "foreign_key" => string(12) "firstname_id" ) "country" => array(2) ( "model" => string(7) "Country" "foreign_key" => string(10) "country_id" ) "city" => array(2) ( "model" => string(4) "City" "foreign_key" => string(7) "city_id" ) ) protected _reload_on_wakeup => bool FALSE protected _has_one => array(0) protected _load_with => array(0) protected _validation => NULL protected _object => array(21) ( "id" => string(7) "9897776" "lastname_id" => string(3) "191" "firstname_id" => string(3) "122" "nickname" => string(0) "" "vk_id" => string(9) "290447056" "bdate" => string(10) "2004-02-07" "info" => NULL "photo" => string(63) "https://pp.userapi.com/c841227/v841227747/697b6/VrQAaLpcGNE.jpg" "city_id" => string(3) "589" "country_id" => string(1) "1" "home_town" => NULL "home_phone" => NULL "skype" => NULL "facebook" => NULL "twitter" => NULL "livejournal" => NULL "instagram" => NULL "occupation_type" => string(6) "school" "occupation_name" => string(15) "Школа №9" "rate" => string(2) "12" "count_firstnames_lastnames" => NULL ) protected _changed => array(0) protected _original_values => array(21) ( "id" => string(7) "9897776" "lastname_id" => string(3) "191" "firstname_id" => string(3) "122" "nickname" => string(0) "" "vk_id" => string(9) "290447056" "bdate" => string(10) "2004-02-07" "info" => NULL "photo" => string(63) "https://pp.userapi.com/c841227/v841227747/697b6/VrQAaLpcGNE.jpg" "city_id" => string(3) "589" "country_id" => string(1) "1" "home_town" => NULL "home_phone" => NULL "skype" => NULL "facebook" => NULL "twitter" => NULL "livejournal" => NULL "instagram" => NULL "occupation_type" => string(6) "school" "occupation_name" => string(15) "Школа №9" "rate" => string(2) "12" "count_firstnames_lastnames" => NULL ) protected _related => array(2) ( "lastname" => object Model_Lastname(34)"category" => object Model_Category(35){ protected _db_group => string(5) "looka" protected _reload_on_wakeup => bool FALSE protected _has_one => array(0) protected _belongs_to => array(0) protected _has_many => array(0) protected _load_with => array(0) protected _validation => NULL protected _object => array(2) ( "id" => string(3) "191" "title" => string(20) "Бондаренко" ) protected _changed => array(0) protected _original_values => array(2) ( "id" => string(3) "191" "title" => string(20) "Бондаренко" ) protected _related => array(0) protected _valid => bool TRUE protected _loaded => bool TRUE protected _saved => bool FALSE protected _sorting => NULL protected _foreign_key_suffix => string(3) "_id" protected _object_name => string(8) "lastname" protected _object_plural => string(9) "lastnames" protected _table_name => string(9) "lastnames" protected _table_columns => array(2) ( "id" => array(13) ( ... ) "title" => array(12) ( ... ) ) protected _updated_column => NULL protected _created_column => NULL protected _serialize_columns => array(0) protected _primary_key => string(2) "id" protected _primary_key_value => string(3) "191" protected _table_names_plural => bool TRUE protected _db => object Database_MySQLi(6)"firstname" => object Model_Firstname(34){ protected _connection_id => string(40) "d012da34ee02fd2c23a3776760afb1e9d4e5c681" protected _identifier => string(1) "`" public last_query => string(166) "SELECT `finder_lastname`.`id` AS `id`, `finder_lastname`.`title` AS `title` FROM `finder_lastnames` AS `finder_lastname` WHERE ` …" protected _instance => string(5) "looka" protected _connection => object mysqli(19) { ... } protected _config => array(5) ( ... ) }protected _db_applied => array(0) protected _db_pending => array(0) protected _db_reset => bool TRUE protected _db_builder => NULL protected _with_applied => array(0) protected _cast_data => array(0) protected _errors_filename => string(8) "lastname" }{ protected _db_group => string(5) "looka" protected _has_many => array(1) ( "humans" => array(4) ( ... ) ) protected _reload_on_wakeup => bool FALSE protected _has_one => array(0) protected _belongs_to => array(0) protected _load_with => array(0) protected _validation => NULL protected _object => array(2) ( "id" => string(3) "122" "title" => string(20) "Александра" ) protected _changed => array(0) protected _original_values => array(2) ( "id" => string(3) "122" "title" => string(20) "Александра" ) protected _related => array(0) protected _valid => bool TRUE protected _loaded => bool TRUE protected _saved => bool FALSE protected _sorting => NULL protected _foreign_key_suffix => string(3) "_id" protected _object_name => string(9) "firstname" protected _object_plural => string(10) "firstnames" protected _table_name => string(10) "firstnames" protected _table_columns => array(2) ( "id" => array(13) ( ... ) "title" => array(12) ( ... ) ) protected _updated_column => NULL protected _created_column => NULL protected _serialize_columns => array(0) protected _primary_key => string(2) "id" protected _primary_key_value => string(3) "122" protected _table_names_plural => bool TRUE protected _db => object Database_MySQLi(6)) protected _valid => bool TRUE protected _loaded => bool TRUE protected _saved => bool FALSE protected _sorting => NULL protected _foreign_key_suffix => string(3) "_id" protected _object_name => string(5) "human" protected _object_plural => string(6) "humans" protected _table_name => string(6) "humans" protected _table_columns => array(21) ( "id" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(2) "id" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 1 "display" => string(2) "11" "comment" => string(0) "" "extra" => string(14) "auto_increment" "key" => string(3) "PRI" "privileges" => string(31) "select,insert,update,references" ) "lastname_id" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(11) "lastname_id" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 2 "display" => string(2) "11" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "firstname_id" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(12) "firstname_id" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 3 "display" => string(2) "11" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "nickname" => array(12) ( "type" => string(6) "string" "column_name" => string(8) "nickname" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 4 "character_maximum_length" => string(3) "255" "collation_name" => string(18) "utf8mb4_unicode_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "vk_id" => array(13) ( "type" => string(3) "int" "min" => string(20) "-9223372036854775808" "max" => string(19) "9223372036854775807" "column_name" => string(5) "vk_id" "column_default" => NULL "data_type" => string(6) "bigint" "is_nullable" => bool TRUE "ordinal_position" => integer 5 "display" => string(2) "20" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "bdate" => array(10) ( "type" => string(6) "string" "column_name" => string(5) "bdate" "column_default" => NULL "data_type" => string(4) "date" "is_nullable" => bool TRUE "ordinal_position" => integer 6 "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "info" => array(12) ( "type" => string(6) "string" "column_name" => string(4) "info" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 7 "character_maximum_length" => string(4) "1023" "collation_name" => string(18) "utf8mb4_unicode_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "photo" => array(12) ( "type" => string(6) "string" "column_name" => string(5) "photo" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 8 "character_maximum_length" => string(3) "255" "collation_name" => string(18) "utf8mb4_unicode_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "city_id" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(7) "city_id" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool TRUE "ordinal_position" => integer 9 "display" => string(2) "11" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "country_id" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(10) "country_id" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool TRUE "ordinal_position" => integer 10 "display" => string(2) "11" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "home_town" => array(12) ( "type" => string(6) "string" "column_name" => string(9) "home_town" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 11 "character_maximum_length" => string(3) "255" "collation_name" => string(18) "utf8mb4_unicode_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "home_phone" => array(12) ( "type" => string(6) "string" "column_name" => string(10) "home_phone" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 12 "character_maximum_length" => string(2) "63" "collation_name" => string(18) "utf8mb4_unicode_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "skype" => array(12) ( "type" => string(6) "string" "column_name" => string(5) "skype" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 13 "character_maximum_length" => string(3) "127" "collation_name" => string(18) "utf8mb4_unicode_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "facebook" => array(12) ( "type" => string(6) "string" "column_name" => string(8) "facebook" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 14 "character_maximum_length" => string(3) "127" "collation_name" => string(18) "utf8mb4_unicode_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "twitter" => array(12) ( "type" => string(6) "string" "column_name" => string(7) "twitter" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 15 "character_maximum_length" => string(3) "127" "collation_name" => string(18) "utf8mb4_unicode_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "livejournal" => array(12) ( "type" => string(6) "string" "column_name" => string(11) "livejournal" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 16 "character_maximum_length" => string(3) "127" "collation_name" => string(18) "utf8mb4_unicode_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "instagram" => array(12) ( "type" => string(6) "string" "column_name" => string(9) "instagram" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 17 "character_maximum_length" => string(3) "127" "collation_name" => string(18) "utf8mb4_unicode_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "occupation_type" => array(12) ( "type" => string(6) "string" "column_name" => string(15) "occupation_type" "column_default" => NULL "data_type" => string(4) "enum" "is_nullable" => bool TRUE "ordinal_position" => integer 18 "collation_name" => string(18) "utf8mb4_unicode_ci" "options" => array(3) ( 0 => string(4) "work" 1 => string(6) "school" 2 => string(10) "university" ) "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "occupation_name" => array(12) ( "type" => string(6) "string" "column_name" => string(15) "occupation_name" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 19 "character_maximum_length" => string(3) "255" "collation_name" => string(18) "utf8mb4_unicode_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "rate" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(4) "rate" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 20 "display" => string(2) "11" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "count_firstnames_lastnames" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(26) "count_firstnames_lastnames" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool TRUE "ordinal_position" => integer 21 "display" => string(2) "11" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) ) protected _updated_column => NULL protected _created_column => NULL protected _serialize_columns => array(0) protected _primary_key => string(2) "id" protected _primary_key_value => string(7) "9897776" protected _table_names_plural => bool TRUE protected _db => object Database_MySQLi(6){ protected _connection_id => string(40) "d012da34ee02fd2c23a3776760afb1e9d4e5c681" protected _identifier => string(1) "`" public last_query => string(166) "SELECT `finder_lastname`.`id` AS `id`, `finder_lastname`.`title` AS `title` FROM `finder_lastnames` AS `finder_lastname` WHERE ` …" protected _instance => string(5) "looka" protected _connection => object mysqli(19) { ... } protected _config => array(5) ( ... ) }protected _db_applied => array(0) protected _db_pending => array(0) protected _db_reset => bool TRUE protected _db_builder => NULL protected _with_applied => array(0) protected _cast_data => array(0) protected _errors_filename => string(9) "firstname" }{ protected _connection_id => string(40) "d012da34ee02fd2c23a3776760afb1e9d4e5c681" protected _identifier => string(1) "`" public last_query => string(166) "SELECT `finder_lastname`.`id` AS `id`, `finder_lastname`.`title` AS `title` FROM `finder_lastnames` AS `finder_lastname` WHERE ` …" protected _instance => string(5) "looka" protected _connection => object mysqli(19)protected _db_applied => array(0) protected _db_pending => array(0) protected _db_reset => bool TRUE protected _db_builder => NULL protected _with_applied => array(0) protected _cast_data => array(0) protected _errors_filename => string(5) "human" }{ public affected_rows => NULL public client_info => NULL public client_version => NULL public connect_errno => NULL public connect_error => NULL public errno => NULL public error => NULL public error_list => NULL public field_count => NULL public host_info => NULL public info => NULL public insert_id => NULL public server_info => NULL public server_version => NULL public stat => NULL public sqlstate => NULL public protocol_version => NULL public thread_id => NULL public warning_count => NULL }protected _config => array(5) ( "type" => string(6) "MySQLi" "connection" => array(3) ( "hostname" => string(9) "localhost" "database" => string(5) "looka" "persistent" => bool FALSE ) "table_prefix" => string(7) "finder_" "charset" => string(7) "utf8mb4" "caching" => bool FALSE ) }{ protected _has_many => array(2) ( "tasks" => array(4) ( "model" => string(4) "Task" "foreign_key" => string(11) "category_id" "through" => NULL "far_key" => string(7) "task_id" ) "tops" => array(4) ( "model" => string(3) "Top" "foreign_key" => string(11) "category_id" "through" => NULL "far_key" => string(6) "top_id" ) ) protected prefix_url => string(9) "/subject/" protected _reload_on_wakeup => bool FALSE protected _has_one => array(0) protected _belongs_to => array(0) protected _load_with => array(0) protected _validation => NULL protected _object => array(4) ( "id" => string(1) "7" "name" => string(10) "Химия" "url" => string(9) "chemistry" "count" => string(6) "799022" ) protected _changed => array(0) protected _original_values => array(4) ( "id" => string(1) "7" "name" => string(10) "Химия" "url" => string(9) "chemistry" "count" => string(6) "799022" ) protected _related => array(0) protected _valid => bool TRUE protected _loaded => bool TRUE protected _saved => bool FALSE protected _sorting => NULL protected _foreign_key_suffix => string(3) "_id" protected _object_name => string(8) "category" protected _object_plural => string(10) "categories" protected _table_name => string(10) "categories" protected _table_columns => array(4) ( "id" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(2) "id" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 1 "display" => string(2) "11" "comment" => string(0) "" "extra" => string(14) "auto_increment" "key" => string(3) "PRI" "privileges" => string(31) "select,insert,update,references" ) "name" => array(12) ( "type" => string(6) "string" "column_name" => string(4) "name" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool FALSE "ordinal_position" => integer 2 "character_maximum_length" => string(3) "255" "collation_name" => string(18) "utf8mb3_unicode_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "url" => array(12) ( "type" => string(6) "string" "column_name" => string(3) "url" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool FALSE "ordinal_position" => integer 3 "character_maximum_length" => string(3) "255" "collation_name" => string(18) "utf8mb3_unicode_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "count" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(5) "count" "column_default" => string(1) "0" "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 4 "display" => string(2) "11" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) ) protected _updated_column => NULL protected _created_column => NULL protected _serialize_columns => array(0) protected _primary_key => string(2) "id" protected _primary_key_value => string(1) "7" protected _table_names_plural => bool TRUE protected _db => object Database_MySQLi(6)) protected _valid => bool TRUE protected _loaded => bool TRUE protected _saved => bool FALSE protected _sorting => NULL protected _foreign_key_suffix => string(3) "_id" protected _object_name => string(4) "task" protected _object_plural => string(5) "tasks" protected _table_name => string(5) "tasks" protected _table_columns => array(16) ( "id" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(2) "id" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 1 "display" => string(2) "11" "comment" => string(0) "" "extra" => string(14) "auto_increment" "key" => string(3) "PRI" "privileges" => string(31) "select,insert,update,references" ) "category_id" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(11) "category_id" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 2 "display" => string(2) "11" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "text" => array(12) ( "type" => string(6) "string" "character_maximum_length" => string(5) "65535" "column_name" => string(4) "text" "column_default" => NULL "data_type" => string(4) "text" "is_nullable" => bool FALSE "ordinal_position" => integer 3 "collation_name" => string(18) "utf8mb3_unicode_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "zn_id" => array(13) ( "type" => string(3) "int" "min" => string(20) "-9223372036854775808" "max" => string(19) "9223372036854775807" "column_name" => string(5) "zn_id" "column_default" => string(1) "0" "data_type" => string(6) "bigint" "is_nullable" => bool FALSE "ordinal_position" => integer 4 "display" => string(2) "20" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "date_time" => array(10) ( "type" => string(6) "string" "column_name" => string(9) "date_time" "column_default" => string(19) "current_timestamp()" "data_type" => string(8) "datetime" "is_nullable" => bool FALSE "ordinal_position" => integer 5 "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "views" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(5) "views" "column_default" => string(1) "0" "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 6 "display" => string(2) "11" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "human_id" => array(13) ( "type" => string(3) "int" "min" => string(20) "-9223372036854775808" "max" => string(19) "9223372036854775807" "column_name" => string(8) "human_id" "column_default" => NULL "data_type" => string(6) "bigint" "is_nullable" => bool TRUE "ordinal_position" => integer 7 "display" => string(2) "20" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "ya_spell" => array(12) ( "type" => string(6) "string" "column_name" => string(8) "ya_spell" "column_default" => string(1) "0" "data_type" => string(4) "enum" "is_nullable" => bool FALSE "ordinal_position" => integer 8 "collation_name" => string(18) "utf8mb3_unicode_ci" "options" => array(2) ( 0 => string(1) "0" 1 => string(1) "1" ) "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "category_key" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(12) "category_key" "column_default" => string(1) "0" "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 9 "display" => string(2) "11" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "has_gpt" => array(12) ( "type" => string(6) "string" "column_name" => string(7) "has_gpt" "column_default" => NULL "data_type" => string(4) "enum" "is_nullable" => bool TRUE "ordinal_position" => integer 10 "collation_name" => string(18) "utf8mb3_unicode_ci" "options" => array(4) ( 0 => string(1) "0" 1 => string(1) "1" 2 => string(12) "has_attaches" 3 => string(4) "skip" ) "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "source" => array(12) ( "type" => string(6) "string" "column_name" => string(6) "source" "column_default" => NULL "data_type" => string(4) "enum" "is_nullable" => bool TRUE "ordinal_position" => integer 11 "collation_name" => string(18) "utf8mb3_unicode_ci" "options" => array(1) ( 0 => string(12) "vashurok.com" ) "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "source_id" => array(13) ( "type" => string(3) "int" "min" => string(20) "-9223372036854775808" "max" => string(19) "9223372036854775807" "column_name" => string(9) "source_id" "column_default" => NULL "data_type" => string(6) "bigint" "is_nullable" => bool TRUE "ordinal_position" => integer 12 "display" => string(2) "20" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "text_for_search" => array(12) ( "type" => string(6) "string" "character_maximum_length" => string(5) "65535" "column_name" => string(15) "text_for_search" "column_default" => NULL "data_type" => string(4) "text" "is_nullable" => bool TRUE "ordinal_position" => integer 13 "collation_name" => string(18) "utf8mb3_unicode_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "related" => array(12) ( "type" => string(6) "string" "column_name" => string(7) "related" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 14 "character_maximum_length" => string(4) "1023" "collation_name" => string(18) "utf8mb3_unicode_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "good" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(4) "good" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool TRUE "ordinal_position" => integer 15 "display" => string(2) "11" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "bad" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(3) "bad" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool TRUE "ordinal_position" => integer 16 "display" => string(2) "11" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) ) protected _updated_column => NULL protected _created_column => NULL protected _serialize_columns => array(0) protected _primary_key => string(2) "id" protected _primary_key_value => string(7) "1972445" protected _table_names_plural => bool TRUE protected _db => object Database_MySQLi(6){ protected _connection_id => string(40) "9fdecc117b583662f3b3d15c4c4ac71fc778e18d" protected _identifier => string(1) "`" public last_query => string(185) "SELECT `category`.`id` AS `id`, `category`.`name` AS `name`, `category`.`url` AS `url`, `category`.`count` AS `count` FROM `cate …" protected _instance => string(7) "default" protected _connection => object mysqli(19)protected _db_group => NULL protected _db_applied => array(0) protected _db_pending => array(0) protected _db_reset => bool TRUE protected _db_builder => NULL protected _with_applied => array(0) protected _cast_data => array(0) protected _errors_filename => string(8) "category" }{ public affected_rows => NULL public client_info => NULL public client_version => NULL public connect_errno => NULL public connect_error => NULL public errno => NULL public error => NULL public error_list => NULL public field_count => NULL public host_info => NULL public info => NULL public insert_id => NULL public server_info => NULL public server_version => NULL public stat => NULL public sqlstate => NULL public protocol_version => NULL public thread_id => NULL public warning_count => NULL }protected _config => array(6) ( "type" => string(6) "MySQLi" "connection" => array(3) ( "hostname" => string(9) "localhost" "database" => string(9) "uznavalka" "persistent" => bool FALSE ) "table_prefix" => string(0) "" "charset" => string(7) "utf8mb4" "caching" => bool FALSE "profiling" => bool FALSE ) }{ protected _connection_id => string(40) "9fdecc117b583662f3b3d15c4c4ac71fc778e18d" protected _identifier => string(1) "`" public last_query => string(185) "SELECT `category`.`id` AS `id`, `category`.`name` AS `name`, `category`.`url` AS `url`, `category`.`count` AS `count` FROM `cate …" protected _instance => string(7) "default" protected _connection => object mysqli(19)protected _db_group => NULL protected _db_applied => array(0) protected _db_pending => array(0) protected _db_reset => bool TRUE protected _db_builder => NULL protected _with_applied => array(0) protected _cast_data => array(0) protected _errors_filename => string(4) "task" }{ public affected_rows => NULL public client_info => NULL public client_version => NULL public connect_errno => NULL public connect_error => NULL public errno => NULL public error => NULL public error_list => NULL public field_count => NULL public host_info => NULL public info => NULL public insert_id => NULL public server_info => NULL public server_version => NULL public stat => NULL public sqlstate => NULL public protocol_version => NULL public thread_id => NULL public warning_count => NULL }protected _config => array(6) ( "type" => string(6) "MySQLi" "connection" => array(3) ( "hostname" => string(9) "localhost" "database" => string(9) "uznavalka" "persistent" => bool FALSE ) "table_prefix" => string(0) "" "charset" => string(7) "utf8mb4" "caching" => bool FALSE "profiling" => bool FALSE ) }343 { 344 throw new View_Exception('You must set the file to use within your view before rendering'); 345 } 346 347 // Combine local and global data and capture the output 348 return View::capture($this->_file, $this->_data); 349 } 350 351 } -
SYSPATH/classes/Kohana/Controller/Template.php [ 44 ] » Kohana_View->render()
39 */ 40 public function after() 41 { 42 if ($this->auto_render === TRUE) 43 { 44 $this->response->body($this->template->render()); 45 } 46 47 parent::after(); 48 } 49 -
SYSPATH/classes/Kohana/Controller.php [ 87 ] » Kohana_Controller_Template->after()
82 83 // Execute the action itself 84 $this->{$action}(); 85 86 // Execute the "after action" method 87 $this->after(); 88 89 // Return the response 90 return $this->response; 91 } 92 -
{PHP internal call} » Kohana_Controller->execute()
-
SYSPATH/classes/Kohana/Request/Client/Internal.php [ 97 ] » ReflectionMethod->invoke(arguments)
0object Controller_Index_Task(7)
{ protected auth => NULL protected user => object Model_User(34){ protected _reload_on_wakeup => bool FALSE protected _has_one => array(0) protected _belongs_to => array(0) protected _has_many => array(0) protected _load_with => array(0) protected _validation => NULL protected _object => array(10) ( "id" => NULL "provider" => NULL "social_id" => NULL "name" => NULL "email" => NULL "social_page" => NULL "sex" => NULL "birthday" => NULL "avatar" => NULL "token" => NULL ) protected _changed => array(0) protected _original_values => array(0) protected _related => array(0) protected _valid => bool FALSE protected _loaded => bool FALSE protected _saved => bool FALSE protected _sorting => NULL protected _foreign_key_suffix => string(3) "_id" protected _object_name => string(4) "user" protected _object_plural => string(5) "users" protected _table_name => string(5) "users" protected _table_columns => array(10) ( "id" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(2) "id" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 1 "display" => string(2) "11" "comment" => string(0) "" "extra" => string(14) "auto_increment" "key" => string(3) "PRI" "privileges" => string(31) "select,insert,update,references" ) "provider" => array(12) ( "type" => string(6) "string" "column_name" => string(8) "provider" "column_default" => NULL "data_type" => string(4) "enum" "is_nullable" => bool FALSE "ordinal_position" => integer 2 "collation_name" => string(18) "utf8mb3_general_ci" "options" => array(6) ( 0 => string(2) "vk" 1 => string(13) "odnoklassniki" 2 => string(6) "mailru" 3 => string(6) "yandex" 4 => string(6) "google" 5 => string(8) "facebook" ) "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "social_id" => array(12) ( "type" => string(6) "string" "column_name" => string(9) "social_id" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool FALSE "ordinal_position" => integer 3 "character_maximum_length" => string(3) "255" "collation_name" => string(18) "utf8mb3_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "name" => array(12) ( "type" => string(6) "string" "column_name" => string(4) "name" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool FALSE "ordinal_position" => integer 4 "character_maximum_length" => string(3) "255" "collation_name" => string(18) "utf8mb3_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "email" => array(12) ( "type" => string(6) "string" "column_name" => string(5) "email" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool FALSE "ordinal_position" => integer 5 "character_maximum_length" => string(3) "255" "collation_name" => string(18) "utf8mb3_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "social_page" => array(12) ( "type" => string(6) "string" "column_name" => string(11) "social_page" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool FALSE "ordinal_position" => integer 6 "character_maximum_length" => string(3) "255" "collation_name" => string(18) "utf8mb3_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "sex" => array(12) ( "type" => string(6) "string" "column_name" => string(3) "sex" "column_default" => NULL "data_type" => string(4) "enum" "is_nullable" => bool FALSE "ordinal_position" => integer 7 "collation_name" => string(18) "utf8mb3_general_ci" "options" => array(2) ( 0 => string(4) "male" 1 => string(6) "female" ) "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "birthday" => array(10) ( "type" => string(6) "string" "column_name" => string(8) "birthday" "column_default" => NULL "data_type" => string(4) "date" "is_nullable" => bool FALSE "ordinal_position" => integer 8 "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "avatar" => array(12) ( "type" => string(6) "string" "column_name" => string(6) "avatar" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool FALSE "ordinal_position" => integer 9 "character_maximum_length" => string(3) "255" "collation_name" => string(18) "utf8mb3_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "token" => array(12) ( "type" => string(6) "string" "column_name" => string(5) "token" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool FALSE "ordinal_position" => integer 10 "character_maximum_length" => string(2) "32" "collation_name" => string(18) "utf8mb3_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) ) protected _updated_column => NULL protected _created_column => NULL protected _serialize_columns => array(0) protected _primary_key => string(2) "id" protected _primary_key_value => NULL protected _table_names_plural => bool TRUE protected _db => object Database_MySQLi(6)public template => object View(2){ protected _connection_id => string(40) "9fdecc117b583662f3b3d15c4c4ac71fc778e18d" protected _identifier => string(1) "`" public last_query => string(185) "SELECT `category`.`id` AS `id`, `category`.`name` AS `name`, `category`.`url` AS `url`, `category`.`count` AS `count` FROM `cate …" protected _instance => string(7) "default" protected _connection => object mysqli(19)protected _db_group => NULL protected _db_applied => array(0) protected _db_pending => array(0) protected _db_reset => bool TRUE protected _db_builder => NULL protected _with_applied => array(0) protected _cast_data => array(0) protected _errors_filename => string(4) "user" }{ public affected_rows => NULL public client_info => NULL public client_version => NULL public connect_errno => NULL public connect_error => NULL public errno => NULL public error => NULL public error_list => NULL public field_count => NULL public host_info => NULL public info => NULL public insert_id => NULL public server_info => NULL public server_version => NULL public stat => NULL public sqlstate => NULL public protocol_version => NULL public thread_id => NULL public warning_count => NULL }protected _config => array(6) ( "type" => string(6) "MySQLi" "connection" => array(3) ( "hostname" => string(9) "localhost" "database" => string(9) "uznavalka" "persistent" => bool FALSE ) "table_prefix" => string(0) "" "charset" => string(7) "utf8mb4" "caching" => bool FALSE "profiling" => bool FALSE ) }{ protected _file => string(74) "/home/uznavalka/web/uznavalka.pro/public_html/application/views/v_base.php" protected _data => array(8) ( "title" => string(191) "При нагревании 20г гидрокарбоната натрия выделилось 2.24 л оксида углерода (IV) при н.у. какая - Узнавалка.про" "categories" => object Database_MySQLi_Result(7)public auth_required => bool FALSE public auto_render => bool TRUE public request => object Request(19){ protected _internal_row => integer 0 protected _query => string(149) "SELECT `category`.`id` AS `id`, `category`.`name` AS `name`, `category`.`url` AS `url`, `category`.`count` AS `count` FROM `cate …" protected _result => object mysqli_result(5)"user" => object Model_User(34){ public current_field => NULL public field_count => NULL public lengths => NULL public num_rows => NULL public type => NULL }protected _total_rows => integer 31 protected _current_row => integer 0 protected _as_object => string(14) "Model_Category" protected _object_params => NULL }{ protected _reload_on_wakeup => bool FALSE protected _has_one => array(0) protected _belongs_to => array(0) protected _has_many => array(0) protected _load_with => array(0) protected _validation => NULL protected _object => array(10) ( "id" => NULL "provider" => NULL "social_id" => NULL "name" => NULL "email" => NULL "social_page" => NULL "sex" => NULL "birthday" => NULL "avatar" => NULL "token" => NULL ) protected _changed => array(0) protected _original_values => array(0) protected _related => array(0) protected _valid => bool FALSE protected _loaded => bool FALSE protected _saved => bool FALSE protected _sorting => NULL protected _foreign_key_suffix => string(3) "_id" protected _object_name => string(4) "user" protected _object_plural => string(5) "users" protected _table_name => string(5) "users" protected _table_columns => array(10) ( "id" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(2) "id" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 1 "display" => string(2) "11" "comment" => string(0) "" "extra" => string(14) "auto_increment" "key" => string(3) "PRI" "privileges" => string(31) "select,insert,update,references" ) "provider" => array(12) ( "type" => string(6) "string" "column_name" => string(8) "provider" "column_default" => NULL "data_type" => string(4) "enum" "is_nullable" => bool FALSE "ordinal_position" => integer 2 "collation_name" => string(18) "utf8mb3_general_ci" "options" => array(6) ( 0 => string(2) "vk" 1 => string(13) "odnoklassniki" 2 => string(6) "mailru" 3 => string(6) "yandex" 4 => string(6) "google" 5 => string(8) "facebook" ) "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "social_id" => array(12) ( "type" => string(6) "string" "column_name" => string(9) "social_id" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool FALSE "ordinal_position" => integer 3 "character_maximum_length" => string(3) "255" "collation_name" => string(18) "utf8mb3_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "name" => array(12) ( "type" => string(6) "string" "column_name" => string(4) "name" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool FALSE "ordinal_position" => integer 4 "character_maximum_length" => string(3) "255" "collation_name" => string(18) "utf8mb3_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "email" => array(12) ( "type" => string(6) "string" "column_name" => string(5) "email" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool FALSE "ordinal_position" => integer 5 "character_maximum_length" => string(3) "255" "collation_name" => string(18) "utf8mb3_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "social_page" => array(12) ( "type" => string(6) "string" "column_name" => string(11) "social_page" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool FALSE "ordinal_position" => integer 6 "character_maximum_length" => string(3) "255" "collation_name" => string(18) "utf8mb3_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "sex" => array(12) ( "type" => string(6) "string" "column_name" => string(3) "sex" "column_default" => NULL "data_type" => string(4) "enum" "is_nullable" => bool FALSE "ordinal_position" => integer 7 "collation_name" => string(18) "utf8mb3_general_ci" "options" => array(2) ( 0 => string(4) "male" 1 => string(6) "female" ) "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "birthday" => array(10) ( "type" => string(6) "string" "column_name" => string(8) "birthday" "column_default" => NULL "data_type" => string(4) "date" "is_nullable" => bool FALSE "ordinal_position" => integer 8 "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "avatar" => array(12) ( "type" => string(6) "string" "column_name" => string(6) "avatar" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool FALSE "ordinal_position" => integer 9 "character_maximum_length" => string(3) "255" "collation_name" => string(18) "utf8mb3_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "token" => array(12) ( "type" => string(6) "string" "column_name" => string(5) "token" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool FALSE "ordinal_position" => integer 10 "character_maximum_length" => string(2) "32" "collation_name" => string(18) "utf8mb3_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) ) protected _updated_column => NULL protected _created_column => NULL protected _serialize_columns => array(0) protected _primary_key => string(2) "id" protected _primary_key_value => NULL protected _table_names_plural => bool TRUE protected _db => object Database_MySQLi(6)"block_right" => object View(2){ protected _connection_id => string(40) "9fdecc117b583662f3b3d15c4c4ac71fc778e18d" protected _identifier => string(1) "`" public last_query => string(185) "SELECT `category`.`id` AS `id`, `category`.`name` AS `name`, `category`.`url` AS `url`, `category`.`count` AS `count` FROM `cate …" protected _instance => string(7) "default" protected _connection => object mysqli(19)protected _db_group => NULL protected _db_applied => array(0) protected _db_pending => array(0) protected _db_reset => bool TRUE protected _db_builder => NULL protected _with_applied => array(0) protected _cast_data => array(0) protected _errors_filename => string(4) "user" }{ public affected_rows => NULL public client_info => NULL public client_version => NULL public connect_errno => NULL public connect_error => NULL public errno => NULL public error => NULL public error_list => NULL public field_count => NULL public host_info => NULL public info => NULL public insert_id => NULL public server_info => NULL public server_version => NULL public stat => NULL public sqlstate => NULL public protocol_version => NULL public thread_id => NULL public warning_count => NULL }protected _config => array(6) ( "type" => string(6) "MySQLi" "connection" => array(3) ( "hostname" => string(9) "localhost" "database" => string(9) "uznavalka" "persistent" => bool FALSE ) "table_prefix" => string(0) "" "charset" => string(7) "utf8mb4" "caching" => bool FALSE "profiling" => bool FALSE ) }{ protected _file => string(96) "/home/uznavalka/web/uznavalka.pro/public_html/application/views/block/auth/v_right_not_login.php" protected _data => array(2) ( "user" => object Model_User(34)"adapters" => array(4) ( "vk" => object SocialAuther_Adapter_Vk(6){ protected _reload_on_wakeup => bool FALSE protected _has_one => array(0) protected _belongs_to => array(0) protected _has_many => array(0) protected _load_with => array(0) protected _validation => NULL protected _object => array(10) ( "id" => NULL "provider" => NULL "social_id" => NULL "name" => NULL "email" => NULL "social_page" => NULL "sex" => NULL "birthday" => NULL "avatar" => NULL "token" => NULL ) protected _changed => array(0) protected _original_values => array(0) protected _related => array(0) protected _valid => bool FALSE protected _loaded => bool FALSE protected _saved => bool FALSE protected _sorting => NULL protected _foreign_key_suffix => string(3) "_id" protected _object_name => string(4) "user" protected _object_plural => string(5) "users" protected _table_name => string(5) "users" protected _table_columns => array(10) ( "id" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(2) "id" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 1 "display" => string(2) "11" "comment" => string(0) "" "extra" => string(14) "auto_increment" "key" => string(3) "PRI" "privileges" => string(31) "select,insert,update,references" ) "provider" => array(12) ( "type" => string(6) "string" "column_name" => string(8) "provider" "column_default" => NULL "data_type" => string(4) "enum" "is_nullable" => bool FALSE "ordinal_position" => integer 2 "collation_name" => string(18) "utf8mb3_general_ci" "options" => array(6) ( 0 => string(2) "vk" 1 => string(13) "odnoklassniki" 2 => string(6) "mailru" 3 => string(6) "yandex" 4 => string(6) "google" 5 => string(8) "facebook" ) "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "social_id" => array(12) ( "type" => string(6) "string" "column_name" => string(9) "social_id" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool FALSE "ordinal_position" => integer 3 "character_maximum_length" => string(3) "255" "collation_name" => string(18) "utf8mb3_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "name" => array(12) ( "type" => string(6) "string" "column_name" => string(4) "name" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool FALSE "ordinal_position" => integer 4 "character_maximum_length" => string(3) "255" "collation_name" => string(18) "utf8mb3_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "email" => array(12) ( "type" => string(6) "string" "column_name" => string(5) "email" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool FALSE "ordinal_position" => integer 5 "character_maximum_length" => string(3) "255" "collation_name" => string(18) "utf8mb3_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "social_page" => array(12) ( "type" => string(6) "string" "column_name" => string(11) "social_page" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool FALSE "ordinal_position" => integer 6 "character_maximum_length" => string(3) "255" "collation_name" => string(18) "utf8mb3_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "sex" => array(12) ( "type" => string(6) "string" "column_name" => string(3) "sex" "column_default" => NULL "data_type" => string(4) "enum" "is_nullable" => bool FALSE "ordinal_position" => integer 7 "collation_name" => string(18) "utf8mb3_general_ci" "options" => array(2) ( 0 => string(4) "male" 1 => string(6) "female" ) "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "birthday" => array(10) ( "type" => string(6) "string" "column_name" => string(8) "birthday" "column_default" => NULL "data_type" => string(4) "date" "is_nullable" => bool FALSE "ordinal_position" => integer 8 "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "avatar" => array(12) ( "type" => string(6) "string" "column_name" => string(6) "avatar" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool FALSE "ordinal_position" => integer 9 "character_maximum_length" => string(3) "255" "collation_name" => string(18) "utf8mb3_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "token" => array(12) ( "type" => string(6) "string" "column_name" => string(5) "token" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool FALSE "ordinal_position" => integer 10 "character_maximum_length" => string(2) "32" "collation_name" => string(18) "utf8mb3_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) ) protected _updated_column => NULL protected _created_column => NULL protected _serialize_columns => array(0) protected _primary_key => string(2) "id" protected _primary_key_value => NULL protected _table_names_plural => bool TRUE protected _db => object Database_MySQLi(6)"adapters" => array(4) ( "vk" => object SocialAuther_Adapter_Vk(6){ protected _connection_id => string(40) "9fdecc117b583662f3b3d15c4c4ac71fc778e18d" protected _identifier => string(1) "`" public last_query => string(185) "SELECT `category`.`id` AS `id`, `category`.`name` AS `name`, `category`.`url` AS `url`, `category`.`count` AS `count` FROM `cate …" protected _instance => string(7) "default" protected _connection => object mysqli(19)protected _db_group => NULL protected _db_applied => array(0) protected _db_pending => array(0) protected _db_reset => bool TRUE protected _db_builder => NULL protected _with_applied => array(0) protected _cast_data => array(0) protected _errors_filename => string(4) "user" }{ public affected_rows => NULL public client_info => NULL public client_version => NULL public connect_errno => NULL public connect_error => NULL public errno => NULL public error => NULL public error_list => NULL public field_count => NULL public host_info => NULL public info => NULL public insert_id => NULL public server_info => NULL public server_version => NULL public stat => NULL public sqlstate => NULL public protocol_version => NULL public thread_id => NULL public warning_count => NULL }protected _config => array(6) ( "type" => string(6) "MySQLi" "connection" => array(3) ( "hostname" => string(9) "localhost" "database" => string(9) "uznavalka" "persistent" => bool FALSE ) "table_prefix" => string(0) "" "charset" => string(7) "utf8mb4" "caching" => bool FALSE "profiling" => bool FALSE ) }{ protected clientId => string(7) "6460292" protected clientSecret => string(20) "CnDJo6J5YtJOOCXygPrT" protected redirectUri => string(42) "https://uznavalka.pro/soc/auth?provider=vk" protected provider => string(2) "vk" protected socialFieldsMap => array(4) ( "socialId" => string(2) "id" "email" => string(5) "email" "avatar" => string(9) "photo_big" "birthday" => string(5) "bdate" ) protected userInfo => NULL }"odnoklassniki" => object SocialAuther_Adapter_Odnoklassniki(7){ protected publicKey => string(17) "CBAPAHHMEBABABABA" protected clientId => string(10) "1266028032" protected clientSecret => string(24) "A4DAAA9E02CAA1FBC5A6B251" protected redirectUri => string(53) "https://uznavalka.pro/soc/auth?provider=odnoklassniki" protected provider => string(13) "odnoklassniki" protected socialFieldsMap => array(6) ( "socialId" => string(3) "uid" "email" => string(5) "email" "name" => string(4) "name" "avatar" => string(5) "pic_2" "sex" => string(6) "gender" "birthday" => string(8) "birthday" ) protected userInfo => NULL }"mailru" => object SocialAuther_Adapter_Mailru(6){ protected clientId => string(6) "759855" protected clientSecret => string(32) "b5679d595bd5249829e401644c4c7c75" protected redirectUri => string(46) "https://uznavalka.pro/soc/auth?provider=mailru" protected provider => string(6) "mailru" protected socialFieldsMap => array(6) ( "socialId" => string(3) "uid" "email" => string(5) "email" "name" => string(4) "nick" "socialPage" => string(4) "link" "avatar" => string(7) "pic_big" "birthday" => string(8) "birthday" ) protected userInfo => NULL }"facebook" => object SocialAuther_Adapter_Facebook(6){ protected clientId => string(15) "164263907738599" protected clientSecret => string(32) "3573a3b525b6adda44b592d68aef7ce3" protected redirectUri => string(48) "https://uznavalka.pro/soc/auth?provider=facebook" protected provider => string(8) "facebook" protected socialFieldsMap => array(6) ( "socialId" => string(2) "id" "email" => string(5) "email" "name" => string(4) "name" "socialPage" => string(4) "link" "sex" => string(6) "gender" "birthday" => string(8) "birthday" ) protected userInfo => NULL }) ) }{ protected clientId => string(7) "6460292" protected clientSecret => string(20) "CnDJo6J5YtJOOCXygPrT" protected redirectUri => string(42) "https://uznavalka.pro/soc/auth?provider=vk" protected provider => string(2) "vk" protected socialFieldsMap => array(4) ( "socialId" => string(2) "id" "email" => string(5) "email" "avatar" => string(9) "photo_big" "birthday" => string(5) "bdate" ) protected userInfo => NULL }"odnoklassniki" => object SocialAuther_Adapter_Odnoklassniki(7){ protected publicKey => string(17) "CBAPAHHMEBABABABA" protected clientId => string(10) "1266028032" protected clientSecret => string(24) "A4DAAA9E02CAA1FBC5A6B251" protected redirectUri => string(53) "https://uznavalka.pro/soc/auth?provider=odnoklassniki" protected provider => string(13) "odnoklassniki" protected socialFieldsMap => array(6) ( "socialId" => string(3) "uid" "email" => string(5) "email" "name" => string(4) "name" "avatar" => string(5) "pic_2" "sex" => string(6) "gender" "birthday" => string(8) "birthday" ) protected userInfo => NULL }"mailru" => object SocialAuther_Adapter_Mailru(6){ protected clientId => string(6) "759855" protected clientSecret => string(32) "b5679d595bd5249829e401644c4c7c75" protected redirectUri => string(46) "https://uznavalka.pro/soc/auth?provider=mailru" protected provider => string(6) "mailru" protected socialFieldsMap => array(6) ( "socialId" => string(3) "uid" "email" => string(5) "email" "name" => string(4) "nick" "socialPage" => string(4) "link" "avatar" => string(7) "pic_big" "birthday" => string(8) "birthday" ) protected userInfo => NULL }"facebook" => object SocialAuther_Adapter_Facebook(6){ protected clientId => string(15) "164263907738599" protected clientSecret => string(32) "3573a3b525b6adda44b592d68aef7ce3" protected redirectUri => string(48) "https://uznavalka.pro/soc/auth?provider=facebook" protected provider => string(8) "facebook" protected socialFieldsMap => array(6) ( "socialId" => string(2) "id" "email" => string(5) "email" "name" => string(4) "name" "socialPage" => string(4) "link" "sex" => string(6) "gender" "birthday" => string(8) "birthday" ) protected userInfo => NULL }) "styles" => array(1) ( 0 => string(34) "media/css/social-likes_classic.css" ) "scripts" => array(4) ( 0 => string(29) "media/js/jquery-1.11.0.min.js" 1 => string(17) "media/js/my.js?10" 2 => string(28) "media/js/social-likes.min.js" 3 => string(26) "media/js/less-1.7.5.min.js" ) "block_center" => object View(2){ protected _file => string(80) "/home/uznavalka/web/uznavalka.pro/public_html/application/views/index/v_task.php" protected _data => array(10) ( "title" => string(191) "При нагревании 20г гидрокарбоната натрия выделилось 2.24 л оксида углерода (IV) при н.у. какая - Узнавалка.про" "h1" => string(163) "При нагревании 20г гидрокарбоната натрия выделилось 2.24 л оксида углерода (IV) при н.у. какая" "category" => object Model_Category(35)) }{ protected _has_many => array(2) ( "tasks" => array(4) ( "model" => string(4) "Task" "foreign_key" => string(11) "category_id" "through" => NULL "far_key" => string(7) "task_id" ) "tops" => array(4) ( "model" => string(3) "Top" "foreign_key" => string(11) "category_id" "through" => NULL "far_key" => string(6) "top_id" ) ) protected prefix_url => string(9) "/subject/" protected _reload_on_wakeup => bool FALSE protected _has_one => array(0) protected _belongs_to => array(0) protected _load_with => array(0) protected _validation => NULL protected _object => array(4) ( "id" => string(1) "7" "name" => string(10) "Химия" "url" => string(9) "chemistry" "count" => string(6) "799022" ) protected _changed => array(0) protected _original_values => array(4) ( "id" => string(1) "7" "name" => string(10) "Химия" "url" => string(9) "chemistry" "count" => string(6) "799022" ) protected _related => array(0) protected _valid => bool TRUE protected _loaded => bool TRUE protected _saved => bool FALSE protected _sorting => NULL protected _foreign_key_suffix => string(3) "_id" protected _object_name => string(8) "category" protected _object_plural => string(10) "categories" protected _table_name => string(10) "categories" protected _table_columns => array(4) ( "id" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(2) "id" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 1 "display" => string(2) "11" "comment" => string(0) "" "extra" => string(14) "auto_increment" "key" => string(3) "PRI" "privileges" => string(31) "select,insert,update,references" ) "name" => array(12) ( "type" => string(6) "string" "column_name" => string(4) "name" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool FALSE "ordinal_position" => integer 2 "character_maximum_length" => string(3) "255" "collation_name" => string(18) "utf8mb3_unicode_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "url" => array(12) ( "type" => string(6) "string" "column_name" => string(3) "url" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool FALSE "ordinal_position" => integer 3 "character_maximum_length" => string(3) "255" "collation_name" => string(18) "utf8mb3_unicode_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "count" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(5) "count" "column_default" => string(1) "0" "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 4 "display" => string(2) "11" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) ) protected _updated_column => NULL protected _created_column => NULL protected _serialize_columns => array(0) protected _primary_key => string(2) "id" protected _primary_key_value => string(1) "7" protected _table_names_plural => bool TRUE protected _db => object Database_MySQLi(6)"task" => object Model_Task(34){ protected _connection_id => string(40) "9fdecc117b583662f3b3d15c4c4ac71fc778e18d" protected _identifier => string(1) "`" public last_query => string(185) "SELECT `category`.`id` AS `id`, `category`.`name` AS `name`, `category`.`url` AS `url`, `category`.`count` AS `count` FROM `cate …" protected _instance => string(7) "default" protected _connection => object mysqli(19)protected _db_group => NULL protected _db_applied => array(0) protected _db_pending => array(0) protected _db_reset => bool TRUE protected _db_builder => NULL protected _with_applied => array(0) protected _cast_data => array(0) protected _errors_filename => string(8) "category" }{ public affected_rows => NULL public client_info => NULL public client_version => NULL public connect_errno => NULL public connect_error => NULL public errno => NULL public error => NULL public error_list => NULL public field_count => NULL public host_info => NULL public info => NULL public insert_id => NULL public server_info => NULL public server_version => NULL public stat => NULL public sqlstate => NULL public protocol_version => NULL public thread_id => NULL public warning_count => NULL }protected _config => array(6) ( "type" => string(6) "MySQLi" "connection" => array(3) ( "hostname" => string(9) "localhost" "database" => string(9) "uznavalka" "persistent" => bool FALSE ) "table_prefix" => string(0) "" "charset" => string(7) "utf8mb4" "caching" => bool FALSE "profiling" => bool FALSE ) }{ protected _belongs_to => array(2) ( "category" => array(2) ( "model" => string(8) "Category" "foreign_key" => string(11) "category_id" ) "human" => array(2) ( "model" => string(5) "Human" "foreign_key" => string(8) "human_id" ) ) protected _has_many => array(4) ( "answers" => array(4) ( "model" => string(6) "Answer" "foreign_key" => string(7) "task_id" "through" => NULL "far_key" => string(9) "answer_id" ) "tattaches" => array(4) ( "model" => string(7) "Tattach" "foreign_key" => string(7) "task_id" "through" => NULL "far_key" => string(10) "tattach_id" ) "tops" => array(4) ( "model" => string(3) "Top" "foreign_key" => string(7) "task_id" "through" => NULL "far_key" => string(6) "top_id" ) "ipsviews" => array(4) ( "model" => string(7) "Ipsview" "foreign_key" => string(7) "task_id" "through" => NULL "far_key" => string(10) "ipsview_id" ) ) protected _reload_on_wakeup => bool FALSE protected _has_one => array(0) protected _load_with => array(0) protected _validation => NULL protected _object => array(16) ( "id" => string(7) "5872829" "category_id" => string(1) "7" "text" => string(247) "При нагревании 20г гидрокарбоната натрия выделилось 2.24 л оксида углерода (IV) при н.у. какая массовая доля (в%) гидрокарбоната …" "zn_id" => string(8) "19122218" "date_time" => string(19) "2019-05-08 01:34:19" "views" => integer 13 "human_id" => string(8) "55035162" "ya_spell" => string(1) "0" "category_key" => string(6) "263954" "has_gpt" => string(1) "1" "source" => NULL "source_id" => NULL "text_for_search" => string(247) "При нагревании 20г гидрокарбоната натрия выделилось 2.24 л оксида углерода (IV) при н.у. какая массовая доля (в%) гидрокарбоната …" "related" => NULL "good" => NULL "bad" => NULL ) protected _changed => array(1) ( "views" => string(5) "views" ) protected _original_values => array(16) ( "id" => string(7) "5872829" "category_id" => string(1) "7" "text" => string(247) "При нагревании 20г гидрокарбоната натрия выделилось 2.24 л оксида углерода (IV) при н.у. какая массовая доля (в%) гидрокарбоната …" "zn_id" => string(8) "19122218" "date_time" => string(19) "2019-05-08 01:34:19" "views" => string(2) "12" "human_id" => string(8) "55035162" "ya_spell" => string(1) "0" "category_key" => string(6) "263954" "has_gpt" => string(1) "1" "source" => NULL "source_id" => NULL "text_for_search" => string(247) "При нагревании 20г гидрокарбоната натрия выделилось 2.24 л оксида углерода (IV) при н.у. какая массовая доля (в%) гидрокарбоната …" "related" => NULL "good" => NULL "bad" => NULL ) protected _related => array(1) ( "human" => object Model_Human(34)"pre_task" => object Model_Task(34){ protected _db_group => string(5) "looka" protected _has_many => array(4) ( "universities" => array(5) ( "model" => string(10) "university" "foreign_key" => string(8) "human_id" "through" => string(19) "humans_universities" "far_key" => string(13) "university_id" "_table_columns" => array(5) ( ... ) ) "humans_universities" => array(4) ( "model" => string(17) "Humans_University" "foreign_key" => string(8) "human_id" "through" => NULL "far_key" => string(20) "humans_university_id" ) "schools" => array(5) ( "model" => string(6) "school" "foreign_key" => string(8) "human_id" "through" => string(14) "humans_schools" "far_key" => string(9) "school_id" "_table_columns" => array(6) ( ... ) ) "humans_schools" => array(4) ( "model" => string(13) "Humans_School" "foreign_key" => string(8) "human_id" "through" => NULL "far_key" => string(16) "humans_school_id" ) ) protected _belongs_to => array(4) ( "lastname" => array(2) ( "model" => string(8) "Lastname" "foreign_key" => string(11) "lastname_id" ) "firstname" => array(2) ( "model" => string(9) "Firstname" "foreign_key" => string(12) "firstname_id" ) "country" => array(2) ( "model" => string(7) "Country" "foreign_key" => string(10) "country_id" ) "city" => array(2) ( "model" => string(4) "City" "foreign_key" => string(7) "city_id" ) ) protected _reload_on_wakeup => bool FALSE protected _has_one => array(0) protected _load_with => array(0) protected _validation => NULL protected _object => array(21) ( "id" => string(8) "55035162" "lastname_id" => string(4) "3066" "firstname_id" => string(2) "24" "nickname" => string(0) "" "vk_id" => string(9) "233994881" "bdate" => string(10) "2004-05-21" "info" => NULL "photo" => string(63) "https://pp.userapi.com/c847018/v847018162/133f9/PRq9c6f6qxs.jpg" "city_id" => NULL "country_id" => string(1) "1" "home_town" => string(0) "" "home_phone" => string(0) "" "skype" => NULL "facebook" => NULL "twitter" => NULL "livejournal" => NULL "instagram" => NULL "occupation_type" => NULL "occupation_name" => NULL "rate" => string(2) "12" "count_firstnames_lastnames" => NULL ) protected _changed => array(0) protected _original_values => array(21) ( "id" => string(8) "55035162" "lastname_id" => string(4) "3066" "firstname_id" => string(2) "24" "nickname" => string(0) "" "vk_id" => string(9) "233994881" "bdate" => string(10) "2004-05-21" "info" => NULL "photo" => string(63) "https://pp.userapi.com/c847018/v847018162/133f9/PRq9c6f6qxs.jpg" "city_id" => NULL "country_id" => string(1) "1" "home_town" => string(0) "" "home_phone" => string(0) "" "skype" => NULL "facebook" => NULL "twitter" => NULL "livejournal" => NULL "instagram" => NULL "occupation_type" => NULL "occupation_name" => NULL "rate" => string(2) "12" "count_firstnames_lastnames" => NULL ) protected _related => array(2) ( "lastname" => object Model_Lastname(34)) protected _valid => bool FALSE protected _loaded => bool TRUE protected _saved => bool FALSE protected _sorting => NULL protected _foreign_key_suffix => string(3) "_id" protected _object_name => string(4) "task" protected _object_plural => string(5) "tasks" protected _table_name => string(5) "tasks" protected _table_columns => array(16) ( "id" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(2) "id" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 1 "display" => string(2) "11" "comment" => string(0) "" "extra" => string(14) "auto_increment" "key" => string(3) "PRI" "privileges" => string(31) "select,insert,update,references" ) "category_id" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(11) "category_id" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 2 "display" => string(2) "11" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "text" => array(12) ( "type" => string(6) "string" "character_maximum_length" => string(5) "65535" "column_name" => string(4) "text" "column_default" => NULL "data_type" => string(4) "text" "is_nullable" => bool FALSE "ordinal_position" => integer 3 "collation_name" => string(18) "utf8mb3_unicode_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "zn_id" => array(13) ( "type" => string(3) "int" "min" => string(20) "-9223372036854775808" "max" => string(19) "9223372036854775807" "column_name" => string(5) "zn_id" "column_default" => string(1) "0" "data_type" => string(6) "bigint" "is_nullable" => bool FALSE "ordinal_position" => integer 4 "display" => string(2) "20" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "date_time" => array(10) ( "type" => string(6) "string" "column_name" => string(9) "date_time" "column_default" => string(19) "current_timestamp()" "data_type" => string(8) "datetime" "is_nullable" => bool FALSE "ordinal_position" => integer 5 "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "views" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(5) "views" "column_default" => string(1) "0" "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 6 "display" => string(2) "11" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "human_id" => array(13) ( "type" => string(3) "int" "min" => string(20) "-9223372036854775808" "max" => string(19) "9223372036854775807" "column_name" => string(8) "human_id" "column_default" => NULL "data_type" => string(6) "bigint" "is_nullable" => bool TRUE "ordinal_position" => integer 7 "display" => string(2) "20" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "ya_spell" => array(12) ( "type" => string(6) "string" "column_name" => string(8) "ya_spell" "column_default" => string(1) "0" "data_type" => string(4) "enum" "is_nullable" => bool FALSE "ordinal_position" => integer 8 "collation_name" => string(18) "utf8mb3_unicode_ci" "options" => array(2) ( 0 => string(1) "0" 1 => string(1) "1" ) "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "category_key" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(12) "category_key" "column_default" => string(1) "0" "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 9 "display" => string(2) "11" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "has_gpt" => array(12) ( "type" => string(6) "string" "column_name" => string(7) "has_gpt" "column_default" => NULL "data_type" => string(4) "enum" "is_nullable" => bool TRUE "ordinal_position" => integer 10 "collation_name" => string(18) "utf8mb3_unicode_ci" "options" => array(4) ( 0 => string(1) "0" 1 => string(1) "1" 2 => string(12) "has_attaches" 3 => string(4) "skip" ) "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "source" => array(12) ( "type" => string(6) "string" "column_name" => string(6) "source" "column_default" => NULL "data_type" => string(4) "enum" "is_nullable" => bool TRUE "ordinal_position" => integer 11 "collation_name" => string(18) "utf8mb3_unicode_ci" "options" => array(1) ( 0 => string(12) "vashurok.com" ) "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "source_id" => array(13) ( "type" => string(3) "int" "min" => string(20) "-9223372036854775808" "max" => string(19) "9223372036854775807" "column_name" => string(9) "source_id" "column_default" => NULL "data_type" => string(6) "bigint" "is_nullable" => bool TRUE "ordinal_position" => integer 12 "display" => string(2) "20" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "text_for_search" => array(12) ( "type" => string(6) "string" "character_maximum_length" => string(5) "65535" "column_name" => string(15) "text_for_search" "column_default" => NULL "data_type" => string(4) "text" "is_nullable" => bool TRUE "ordinal_position" => integer 13 "collation_name" => string(18) "utf8mb3_unicode_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "related" => array(12) ( "type" => string(6) "string" "column_name" => string(7) "related" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 14 "character_maximum_length" => string(4) "1023" "collation_name" => string(18) "utf8mb3_unicode_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "good" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(4) "good" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool TRUE "ordinal_position" => integer 15 "display" => string(2) "11" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "bad" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(3) "bad" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool TRUE "ordinal_position" => integer 16 "display" => string(2) "11" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) ) protected _updated_column => NULL protected _created_column => NULL protected _serialize_columns => array(0) protected _primary_key => string(2) "id" protected _primary_key_value => string(7) "5872829" protected _table_names_plural => bool TRUE protected _db => object Database_MySQLi(6){ protected _db_group => string(5) "looka" protected _reload_on_wakeup => bool FALSE protected _has_one => array(0) protected _belongs_to => array(0) protected _has_many => array(0) protected _load_with => array(0) protected _validation => NULL protected _object => array(2) ( ... ) protected _changed => array(0) protected _original_values => array(2) ( ... ) protected _related => array(0) protected _valid => bool TRUE protected _loaded => bool TRUE protected _saved => bool FALSE protected _sorting => NULL protected _foreign_key_suffix => string(3) "_id" protected _object_name => string(8) "lastname" protected _object_plural => string(9) "lastnames" protected _table_name => string(9) "lastnames" protected _table_columns => array(2) ( ... ) protected _updated_column => NULL protected _created_column => NULL protected _serialize_columns => array(0) protected _primary_key => string(2) "id" protected _primary_key_value => string(4) "3066" protected _table_names_plural => bool TRUE protected _db => object Database_MySQLi(6) { ... } protected _db_applied => array(0) protected _db_pending => array(0) protected _db_reset => bool TRUE protected _db_builder => NULL protected _with_applied => array(0) protected _cast_data => array(0) protected _errors_filename => string(8) "lastname" }"firstname" => object Model_Firstname(34){ protected _db_group => string(5) "looka" protected _has_many => array(1) ( ... ) protected _reload_on_wakeup => bool FALSE protected _has_one => array(0) protected _belongs_to => array(0) protected _load_with => array(0) protected _validation => NULL protected _object => array(2) ( ... ) protected _changed => array(0) protected _original_values => array(2) ( ... ) protected _related => array(0) protected _valid => bool TRUE protected _loaded => bool TRUE protected _saved => bool FALSE protected _sorting => NULL protected _foreign_key_suffix => string(3) "_id" protected _object_name => string(9) "firstname" protected _object_plural => string(10) "firstnames" protected _table_name => string(10) "firstnames" protected _table_columns => array(2) ( ... ) protected _updated_column => NULL protected _created_column => NULL protected _serialize_columns => array(0) protected _primary_key => string(2) "id" protected _primary_key_value => string(2) "24" protected _table_names_plural => bool TRUE protected _db => object Database_MySQLi(6) { ... } protected _db_applied => array(0) protected _db_pending => array(0) protected _db_reset => bool TRUE protected _db_builder => NULL protected _with_applied => array(0) protected _cast_data => array(0) protected _errors_filename => string(9) "firstname" }) protected _valid => bool TRUE protected _loaded => bool TRUE protected _saved => bool FALSE protected _sorting => NULL protected _foreign_key_suffix => string(3) "_id" protected _object_name => string(5) "human" protected _object_plural => string(6) "humans" protected _table_name => string(6) "humans" protected _table_columns => array(21) ( "id" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(2) "id" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 1 "display" => string(2) "11" "comment" => string(0) "" "extra" => string(14) "auto_increment" "key" => string(3) "PRI" "privileges" => string(31) "select,insert,update,references" ) "lastname_id" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(11) "lastname_id" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 2 "display" => string(2) "11" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "firstname_id" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(12) "firstname_id" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 3 "display" => string(2) "11" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "nickname" => array(12) ( "type" => string(6) "string" "column_name" => string(8) "nickname" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 4 "character_maximum_length" => string(3) "255" "collation_name" => string(18) "utf8mb4_unicode_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "vk_id" => array(13) ( "type" => string(3) "int" "min" => string(20) "-9223372036854775808" "max" => string(19) "9223372036854775807" "column_name" => string(5) "vk_id" "column_default" => NULL "data_type" => string(6) "bigint" "is_nullable" => bool TRUE "ordinal_position" => integer 5 "display" => string(2) "20" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "bdate" => array(10) ( "type" => string(6) "string" "column_name" => string(5) "bdate" "column_default" => NULL "data_type" => string(4) "date" "is_nullable" => bool TRUE "ordinal_position" => integer 6 "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "info" => array(12) ( "type" => string(6) "string" "column_name" => string(4) "info" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 7 "character_maximum_length" => string(4) "1023" "collation_name" => string(18) "utf8mb4_unicode_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "photo" => array(12) ( "type" => string(6) "string" "column_name" => string(5) "photo" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 8 "character_maximum_length" => string(3) "255" "collation_name" => string(18) "utf8mb4_unicode_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "city_id" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(7) "city_id" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool TRUE "ordinal_position" => integer 9 "display" => string(2) "11" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "country_id" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(10) "country_id" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool TRUE "ordinal_position" => integer 10 "display" => string(2) "11" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "home_town" => array(12) ( "type" => string(6) "string" "column_name" => string(9) "home_town" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 11 "character_maximum_length" => string(3) "255" "collation_name" => string(18) "utf8mb4_unicode_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "home_phone" => array(12) ( "type" => string(6) "string" "column_name" => string(10) "home_phone" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 12 "character_maximum_length" => string(2) "63" "collation_name" => string(18) "utf8mb4_unicode_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "skype" => array(12) ( "type" => string(6) "string" "column_name" => string(5) "skype" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 13 "character_maximum_length" => string(3) "127" "collation_name" => string(18) "utf8mb4_unicode_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "facebook" => array(12) ( "type" => string(6) "string" "column_name" => string(8) "facebook" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 14 "character_maximum_length" => string(3) "127" "collation_name" => string(18) "utf8mb4_unicode_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "twitter" => array(12) ( "type" => string(6) "string" "column_name" => string(7) "twitter" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 15 "character_maximum_length" => string(3) "127" "collation_name" => string(18) "utf8mb4_unicode_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "livejournal" => array(12) ( "type" => string(6) "string" "column_name" => string(11) "livejournal" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 16 "character_maximum_length" => string(3) "127" "collation_name" => string(18) "utf8mb4_unicode_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "instagram" => array(12) ( "type" => string(6) "string" "column_name" => string(9) "instagram" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 17 "character_maximum_length" => string(3) "127" "collation_name" => string(18) "utf8mb4_unicode_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "occupation_type" => array(12) ( "type" => string(6) "string" "column_name" => string(15) "occupation_type" "column_default" => NULL "data_type" => string(4) "enum" "is_nullable" => bool TRUE "ordinal_position" => integer 18 "collation_name" => string(18) "utf8mb4_unicode_ci" "options" => array(3) ( ... ) "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "occupation_name" => array(12) ( "type" => string(6) "string" "column_name" => string(15) "occupation_name" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 19 "character_maximum_length" => string(3) "255" "collation_name" => string(18) "utf8mb4_unicode_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "rate" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(4) "rate" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 20 "display" => string(2) "11" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "count_firstnames_lastnames" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(26) "count_firstnames_lastnames" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool TRUE "ordinal_position" => integer 21 "display" => string(2) "11" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) ) protected _updated_column => NULL protected _created_column => NULL protected _serialize_columns => array(0) protected _primary_key => string(2) "id" protected _primary_key_value => string(8) "55035162" protected _table_names_plural => bool TRUE protected _db => object Database_MySQLi(6){ protected _connection_id => string(40) "d012da34ee02fd2c23a3776760afb1e9d4e5c681" protected _identifier => string(1) "`" public last_query => string(166) "SELECT `finder_lastname`.`id` AS `id`, `finder_lastname`.`title` AS `title` FROM `finder_lastnames` AS `finder_lastname` WHERE ` …" protected _instance => string(5) "looka" protected _connection => object mysqli(19)protected _db_applied => array(0) protected _db_pending => array(0) protected _db_reset => bool TRUE protected _db_builder => NULL protected _with_applied => array(0) protected _cast_data => array(0) protected _errors_filename => string(5) "human" }{ public affected_rows => NULL public client_info => NULL public client_version => NULL public connect_errno => NULL public connect_error => NULL public errno => NULL public error => NULL public error_list => NULL public field_count => NULL public host_info => NULL public info => NULL public insert_id => NULL public server_info => NULL public server_version => NULL public stat => NULL public sqlstate => NULL public protocol_version => NULL public thread_id => NULL public warning_count => NULL }protected _config => array(5) ( "type" => string(6) "MySQLi" "connection" => array(3) ( ... ) "table_prefix" => string(7) "finder_" "charset" => string(7) "utf8mb4" "caching" => bool FALSE ) }{ protected _connection_id => string(40) "9fdecc117b583662f3b3d15c4c4ac71fc778e18d" protected _identifier => string(1) "`" public last_query => string(185) "SELECT `category`.`id` AS `id`, `category`.`name` AS `name`, `category`.`url` AS `url`, `category`.`count` AS `count` FROM `cate …" protected _instance => string(7) "default" protected _connection => object mysqli(19)protected _db_group => NULL protected _db_applied => array(0) protected _db_pending => array(0) protected _db_reset => bool TRUE protected _db_builder => NULL protected _with_applied => array(0) protected _cast_data => array(0) protected _errors_filename => string(4) "task" }{ public affected_rows => NULL public client_info => NULL public client_version => NULL public connect_errno => NULL public connect_error => NULL public errno => NULL public error => NULL public error_list => NULL public field_count => NULL public host_info => NULL public info => NULL public insert_id => NULL public server_info => NULL public server_version => NULL public stat => NULL public sqlstate => NULL public protocol_version => NULL public thread_id => NULL public warning_count => NULL }protected _config => array(6) ( "type" => string(6) "MySQLi" "connection" => array(3) ( "hostname" => string(9) "localhost" "database" => string(9) "uznavalka" "persistent" => bool FALSE ) "table_prefix" => string(0) "" "charset" => string(7) "utf8mb4" "caching" => bool FALSE "profiling" => bool FALSE ) }{ protected _belongs_to => array(2) ( "category" => array(2) ( "model" => string(8) "Category" "foreign_key" => string(11) "category_id" ) "human" => array(2) ( "model" => string(5) "Human" "foreign_key" => string(8) "human_id" ) ) protected _has_many => array(4) ( "answers" => array(4) ( "model" => string(6) "Answer" "foreign_key" => string(7) "task_id" "through" => NULL "far_key" => string(9) "answer_id" ) "tattaches" => array(4) ( "model" => string(7) "Tattach" "foreign_key" => string(7) "task_id" "through" => NULL "far_key" => string(10) "tattach_id" ) "tops" => array(4) ( "model" => string(3) "Top" "foreign_key" => string(7) "task_id" "through" => NULL "far_key" => string(6) "top_id" ) "ipsviews" => array(4) ( "model" => string(7) "Ipsview" "foreign_key" => string(7) "task_id" "through" => NULL "far_key" => string(10) "ipsview_id" ) ) protected _reload_on_wakeup => bool FALSE protected _has_one => array(0) protected _load_with => array(0) protected _validation => NULL protected _object => array(16) ( "id" => string(7) "5872828" "category_id" => string(1) "2" "text" => string(294) "Известно, что Василия Тёркина многие солдаты считали своим однополчанином и никогда не расставались с книгой. Чем это можно объя …" "zn_id" => string(8) "11455122" "date_time" => string(19) "2019-05-08 01:34:17" "views" => string(2) "41" "human_id" => string(8) "56821243" "ya_spell" => string(1) "0" "category_key" => string(6) "337325" "has_gpt" => string(1) "1" "source" => NULL "source_id" => NULL "text_for_search" => string(287) "Известно, что Василия Тёркина многие солдаты считали своим однополчанином и никогда не расставались с книгой. Чем это можно объя …" "related" => NULL "good" => NULL "bad" => NULL ) protected _changed => array(0) protected _original_values => array(16) ( "id" => string(7) "5872828" "category_id" => string(1) "2" "text" => string(294) "Известно, что Василия Тёркина многие солдаты считали своим однополчанином и никогда не расставались с книгой. Чем это можно объя …" "zn_id" => string(8) "11455122" "date_time" => string(19) "2019-05-08 01:34:17" "views" => string(2) "41" "human_id" => string(8) "56821243" "ya_spell" => string(1) "0" "category_key" => string(6) "337325" "has_gpt" => string(1) "1" "source" => NULL "source_id" => NULL "text_for_search" => string(287) "Известно, что Василия Тёркина многие солдаты считали своим однополчанином и никогда не расставались с книгой. Чем это можно объя …" "related" => NULL "good" => NULL "bad" => NULL ) protected _related => array(1) ( "category" => object Model_Category(35)"next_task" => object Model_Task(34){ protected _has_many => array(2) ( "tasks" => array(4) ( "model" => string(4) "Task" "foreign_key" => string(11) "category_id" "through" => NULL "far_key" => string(7) "task_id" ) "tops" => array(4) ( "model" => string(3) "Top" "foreign_key" => string(11) "category_id" "through" => NULL "far_key" => string(6) "top_id" ) ) protected prefix_url => string(9) "/subject/" protected _reload_on_wakeup => bool FALSE protected _has_one => array(0) protected _belongs_to => array(0) protected _load_with => array(0) protected _validation => NULL protected _object => array(4) ( "id" => NULL "name" => NULL "url" => NULL "count" => NULL ) protected _changed => array(0) protected _original_values => array(0) protected _related => array(0) protected _valid => bool FALSE protected _loaded => bool FALSE protected _saved => bool FALSE protected _sorting => NULL protected _foreign_key_suffix => string(3) "_id" protected _object_name => string(8) "category" protected _object_plural => string(10) "categories" protected _table_name => string(10) "categories" protected _table_columns => array(4) ( "id" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(2) "id" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 1 "display" => string(2) "11" "comment" => string(0) "" "extra" => string(14) "auto_increment" "key" => string(3) "PRI" "privileges" => string(31) "select,insert,update,references" ) "name" => array(12) ( "type" => string(6) "string" "column_name" => string(4) "name" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool FALSE "ordinal_position" => integer 2 "character_maximum_length" => string(3) "255" "collation_name" => string(18) "utf8mb3_unicode_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "url" => array(12) ( "type" => string(6) "string" "column_name" => string(3) "url" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool FALSE "ordinal_position" => integer 3 "character_maximum_length" => string(3) "255" "collation_name" => string(18) "utf8mb3_unicode_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "count" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(5) "count" "column_default" => string(1) "0" "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 4 "display" => string(2) "11" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) ) protected _updated_column => NULL protected _created_column => NULL protected _serialize_columns => array(0) protected _primary_key => string(2) "id" protected _primary_key_value => NULL protected _table_names_plural => bool TRUE protected _db => object Database_MySQLi(6)) protected _valid => bool TRUE protected _loaded => bool TRUE protected _saved => bool FALSE protected _sorting => NULL protected _foreign_key_suffix => string(3) "_id" protected _object_name => string(4) "task" protected _object_plural => string(5) "tasks" protected _table_name => string(5) "tasks" protected _table_columns => array(16) ( "id" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(2) "id" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 1 "display" => string(2) "11" "comment" => string(0) "" "extra" => string(14) "auto_increment" "key" => string(3) "PRI" "privileges" => string(31) "select,insert,update,references" ) "category_id" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(11) "category_id" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 2 "display" => string(2) "11" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "text" => array(12) ( "type" => string(6) "string" "character_maximum_length" => string(5) "65535" "column_name" => string(4) "text" "column_default" => NULL "data_type" => string(4) "text" "is_nullable" => bool FALSE "ordinal_position" => integer 3 "collation_name" => string(18) "utf8mb3_unicode_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "zn_id" => array(13) ( "type" => string(3) "int" "min" => string(20) "-9223372036854775808" "max" => string(19) "9223372036854775807" "column_name" => string(5) "zn_id" "column_default" => string(1) "0" "data_type" => string(6) "bigint" "is_nullable" => bool FALSE "ordinal_position" => integer 4 "display" => string(2) "20" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "date_time" => array(10) ( "type" => string(6) "string" "column_name" => string(9) "date_time" "column_default" => string(19) "current_timestamp()" "data_type" => string(8) "datetime" "is_nullable" => bool FALSE "ordinal_position" => integer 5 "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "views" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(5) "views" "column_default" => string(1) "0" "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 6 "display" => string(2) "11" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "human_id" => array(13) ( "type" => string(3) "int" "min" => string(20) "-9223372036854775808" "max" => string(19) "9223372036854775807" "column_name" => string(8) "human_id" "column_default" => NULL "data_type" => string(6) "bigint" "is_nullable" => bool TRUE "ordinal_position" => integer 7 "display" => string(2) "20" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "ya_spell" => array(12) ( "type" => string(6) "string" "column_name" => string(8) "ya_spell" "column_default" => string(1) "0" "data_type" => string(4) "enum" "is_nullable" => bool FALSE "ordinal_position" => integer 8 "collation_name" => string(18) "utf8mb3_unicode_ci" "options" => array(2) ( 0 => string(1) "0" 1 => string(1) "1" ) "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "category_key" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(12) "category_key" "column_default" => string(1) "0" "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 9 "display" => string(2) "11" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "has_gpt" => array(12) ( "type" => string(6) "string" "column_name" => string(7) "has_gpt" "column_default" => NULL "data_type" => string(4) "enum" "is_nullable" => bool TRUE "ordinal_position" => integer 10 "collation_name" => string(18) "utf8mb3_unicode_ci" "options" => array(4) ( 0 => string(1) "0" 1 => string(1) "1" 2 => string(12) "has_attaches" 3 => string(4) "skip" ) "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "source" => array(12) ( "type" => string(6) "string" "column_name" => string(6) "source" "column_default" => NULL "data_type" => string(4) "enum" "is_nullable" => bool TRUE "ordinal_position" => integer 11 "collation_name" => string(18) "utf8mb3_unicode_ci" "options" => array(1) ( 0 => string(12) "vashurok.com" ) "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "source_id" => array(13) ( "type" => string(3) "int" "min" => string(20) "-9223372036854775808" "max" => string(19) "9223372036854775807" "column_name" => string(9) "source_id" "column_default" => NULL "data_type" => string(6) "bigint" "is_nullable" => bool TRUE "ordinal_position" => integer 12 "display" => string(2) "20" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "text_for_search" => array(12) ( "type" => string(6) "string" "character_maximum_length" => string(5) "65535" "column_name" => string(15) "text_for_search" "column_default" => NULL "data_type" => string(4) "text" "is_nullable" => bool TRUE "ordinal_position" => integer 13 "collation_name" => string(18) "utf8mb3_unicode_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "related" => array(12) ( "type" => string(6) "string" "column_name" => string(7) "related" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 14 "character_maximum_length" => string(4) "1023" "collation_name" => string(18) "utf8mb3_unicode_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "good" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(4) "good" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool TRUE "ordinal_position" => integer 15 "display" => string(2) "11" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "bad" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(3) "bad" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool TRUE "ordinal_position" => integer 16 "display" => string(2) "11" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) ) protected _updated_column => NULL protected _created_column => NULL protected _serialize_columns => array(0) protected _primary_key => string(2) "id" protected _primary_key_value => string(7) "5872828" protected _table_names_plural => bool TRUE protected _db => object Database_MySQLi(6){ protected _connection_id => string(40) "9fdecc117b583662f3b3d15c4c4ac71fc778e18d" protected _identifier => string(1) "`" public last_query => string(185) "SELECT `category`.`id` AS `id`, `category`.`name` AS `name`, `category`.`url` AS `url`, `category`.`count` AS `count` FROM `cate …" protected _instance => string(7) "default" protected _connection => object mysqli(19)protected _db_group => NULL protected _db_applied => array(1) ( "where" => string(5) "where" ) protected _db_pending => array(1) ( 0 => array(2) ( "name" => string(5) "where" "args" => array(3) ( ... ) ) ) protected _db_reset => bool TRUE protected _db_builder => object Database_Query_Builder_Select(20){ public affected_rows => NULL public client_info => NULL public client_version => NULL public connect_errno => NULL public connect_error => NULL public errno => NULL public error => NULL public error_list => NULL public field_count => NULL public host_info => NULL public info => NULL public insert_id => NULL public server_info => NULL public server_version => NULL public stat => NULL public sqlstate => NULL public protocol_version => NULL public thread_id => NULL public warning_count => NULL }protected _config => array(6) ( "type" => string(6) "MySQLi" "connection" => array(3) ( ... ) "table_prefix" => string(0) "" "charset" => string(7) "utf8mb4" "caching" => bool FALSE "profiling" => bool FALSE ) }{ protected _use_index => NULL protected _select => array(4) ( 0 => array(2) ( ... ) 1 => array(2) ( ... ) 2 => array(2) ( ... ) 3 => array(2) ( ... ) ) protected _distinct => bool FALSE protected _from => array(1) ( 0 => array(2) ( ... ) ) protected _join => array(0) protected _group_by => array(0) protected _having => array(0) protected _offset => NULL protected _union => array(0) protected _last_join => NULL protected _where => array(1) ( 0 => array(1) ( ... ) ) protected _order_by => array(0) protected _limit => integer 1 protected _type => integer 1 protected _force_execute => bool FALSE protected _lifetime => NULL protected _sql => string(185) "SELECT `category`.`id` AS `id`, `category`.`name` AS `name`, `category`.`url` AS `url`, `category`.`count` AS `count` FROM `cate …" protected _parameters => array(0) protected _as_object => bool FALSE protected _object_params => array(0) }protected _with_applied => array(0) protected _cast_data => array(0) protected _errors_filename => string(8) "category" }{ protected _connection_id => string(40) "9fdecc117b583662f3b3d15c4c4ac71fc778e18d" protected _identifier => string(1) "`" public last_query => string(185) "SELECT `category`.`id` AS `id`, `category`.`name` AS `name`, `category`.`url` AS `url`, `category`.`count` AS `count` FROM `cate …" protected _instance => string(7) "default" protected _connection => object mysqli(19)protected _db_group => NULL protected _db_applied => array(0) protected _db_pending => array(0) protected _db_reset => bool TRUE protected _db_builder => NULL protected _with_applied => array(0) protected _cast_data => array(0) protected _errors_filename => string(4) "task" }{ public affected_rows => NULL public client_info => NULL public client_version => NULL public connect_errno => NULL public connect_error => NULL public errno => NULL public error => NULL public error_list => NULL public field_count => NULL public host_info => NULL public info => NULL public insert_id => NULL public server_info => NULL public server_version => NULL public stat => NULL public sqlstate => NULL public protocol_version => NULL public thread_id => NULL public warning_count => NULL }protected _config => array(6) ( "type" => string(6) "MySQLi" "connection" => array(3) ( "hostname" => string(9) "localhost" "database" => string(9) "uznavalka" "persistent" => bool FALSE ) "table_prefix" => string(0) "" "charset" => string(7) "utf8mb4" "caching" => bool FALSE "profiling" => bool FALSE ) }{ protected _belongs_to => array(2) ( "category" => array(2) ( "model" => string(8) "Category" "foreign_key" => string(11) "category_id" ) "human" => array(2) ( "model" => string(5) "Human" "foreign_key" => string(8) "human_id" ) ) protected _has_many => array(4) ( "answers" => array(4) ( "model" => string(6) "Answer" "foreign_key" => string(7) "task_id" "through" => NULL "far_key" => string(9) "answer_id" ) "tattaches" => array(4) ( "model" => string(7) "Tattach" "foreign_key" => string(7) "task_id" "through" => NULL "far_key" => string(10) "tattach_id" ) "tops" => array(4) ( "model" => string(3) "Top" "foreign_key" => string(7) "task_id" "through" => NULL "far_key" => string(6) "top_id" ) "ipsviews" => array(4) ( "model" => string(7) "Ipsview" "foreign_key" => string(7) "task_id" "through" => NULL "far_key" => string(10) "ipsview_id" ) ) protected _reload_on_wakeup => bool FALSE protected _has_one => array(0) protected _load_with => array(0) protected _validation => NULL protected _object => array(16) ( "id" => string(7) "5872831" "category_id" => string(1) "1" "text" => string(312) "При движении по течению реки расстояние в 144км моторная<br /> лодка проходит за 6ч. Какова скорость лодки в стоячей воде,<br /> …" "zn_id" => string(8) "25743100" "date_time" => string(19) "2019-05-08 01:34:22" "views" => string(2) "30" "human_id" => string(8) "26941726" "ya_spell" => string(1) "0" "category_key" => string(7) "1685423" "has_gpt" => string(1) "1" "source" => NULL "source_id" => NULL "text_for_search" => string(294) "При движении по течению реки расстояние в 144км моторная лодка проходит за 6ч. Какова скорость лодки в стоячей воде, если плот т …" "related" => NULL "good" => NULL "bad" => NULL ) protected _changed => array(0) protected _original_values => array(16) ( "id" => string(7) "5872831" "category_id" => string(1) "1" "text" => string(312) "При движении по течению реки расстояние в 144км моторная<br /> лодка проходит за 6ч. Какова скорость лодки в стоячей воде,<br /> …" "zn_id" => string(8) "25743100" "date_time" => string(19) "2019-05-08 01:34:22" "views" => string(2) "30" "human_id" => string(8) "26941726" "ya_spell" => string(1) "0" "category_key" => string(7) "1685423" "has_gpt" => string(1) "1" "source" => NULL "source_id" => NULL "text_for_search" => string(294) "При движении по течению реки расстояние в 144км моторная лодка проходит за 6ч. Какова скорость лодки в стоячей воде, если плот т …" "related" => NULL "good" => NULL "bad" => NULL ) protected _related => array(0) protected _valid => bool TRUE protected _loaded => bool TRUE protected _saved => bool FALSE protected _sorting => NULL protected _foreign_key_suffix => string(3) "_id" protected _object_name => string(4) "task" protected _object_plural => string(5) "tasks" protected _table_name => string(5) "tasks" protected _table_columns => array(16) ( "id" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(2) "id" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 1 "display" => string(2) "11" "comment" => string(0) "" "extra" => string(14) "auto_increment" "key" => string(3) "PRI" "privileges" => string(31) "select,insert,update,references" ) "category_id" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(11) "category_id" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 2 "display" => string(2) "11" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "text" => array(12) ( "type" => string(6) "string" "character_maximum_length" => string(5) "65535" "column_name" => string(4) "text" "column_default" => NULL "data_type" => string(4) "text" "is_nullable" => bool FALSE "ordinal_position" => integer 3 "collation_name" => string(18) "utf8mb3_unicode_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "zn_id" => array(13) ( "type" => string(3) "int" "min" => string(20) "-9223372036854775808" "max" => string(19) "9223372036854775807" "column_name" => string(5) "zn_id" "column_default" => string(1) "0" "data_type" => string(6) "bigint" "is_nullable" => bool FALSE "ordinal_position" => integer 4 "display" => string(2) "20" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "date_time" => array(10) ( "type" => string(6) "string" "column_name" => string(9) "date_time" "column_default" => string(19) "current_timestamp()" "data_type" => string(8) "datetime" "is_nullable" => bool FALSE "ordinal_position" => integer 5 "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "views" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(5) "views" "column_default" => string(1) "0" "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 6 "display" => string(2) "11" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "human_id" => array(13) ( "type" => string(3) "int" "min" => string(20) "-9223372036854775808" "max" => string(19) "9223372036854775807" "column_name" => string(8) "human_id" "column_default" => NULL "data_type" => string(6) "bigint" "is_nullable" => bool TRUE "ordinal_position" => integer 7 "display" => string(2) "20" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "ya_spell" => array(12) ( "type" => string(6) "string" "column_name" => string(8) "ya_spell" "column_default" => string(1) "0" "data_type" => string(4) "enum" "is_nullable" => bool FALSE "ordinal_position" => integer 8 "collation_name" => string(18) "utf8mb3_unicode_ci" "options" => array(2) ( 0 => string(1) "0" 1 => string(1) "1" ) "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "category_key" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(12) "category_key" "column_default" => string(1) "0" "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 9 "display" => string(2) "11" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "has_gpt" => array(12) ( "type" => string(6) "string" "column_name" => string(7) "has_gpt" "column_default" => NULL "data_type" => string(4) "enum" "is_nullable" => bool TRUE "ordinal_position" => integer 10 "collation_name" => string(18) "utf8mb3_unicode_ci" "options" => array(4) ( 0 => string(1) "0" 1 => string(1) "1" 2 => string(12) "has_attaches" 3 => string(4) "skip" ) "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "source" => array(12) ( "type" => string(6) "string" "column_name" => string(6) "source" "column_default" => NULL "data_type" => string(4) "enum" "is_nullable" => bool TRUE "ordinal_position" => integer 11 "collation_name" => string(18) "utf8mb3_unicode_ci" "options" => array(1) ( 0 => string(12) "vashurok.com" ) "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "source_id" => array(13) ( "type" => string(3) "int" "min" => string(20) "-9223372036854775808" "max" => string(19) "9223372036854775807" "column_name" => string(9) "source_id" "column_default" => NULL "data_type" => string(6) "bigint" "is_nullable" => bool TRUE "ordinal_position" => integer 12 "display" => string(2) "20" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "text_for_search" => array(12) ( "type" => string(6) "string" "character_maximum_length" => string(5) "65535" "column_name" => string(15) "text_for_search" "column_default" => NULL "data_type" => string(4) "text" "is_nullable" => bool TRUE "ordinal_position" => integer 13 "collation_name" => string(18) "utf8mb3_unicode_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "related" => array(12) ( "type" => string(6) "string" "column_name" => string(7) "related" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 14 "character_maximum_length" => string(4) "1023" "collation_name" => string(18) "utf8mb3_unicode_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "good" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(4) "good" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool TRUE "ordinal_position" => integer 15 "display" => string(2) "11" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "bad" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(3) "bad" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool TRUE "ordinal_position" => integer 16 "display" => string(2) "11" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) ) protected _updated_column => NULL protected _created_column => NULL protected _serialize_columns => array(0) protected _primary_key => string(2) "id" protected _primary_key_value => string(7) "5872831" protected _table_names_plural => bool TRUE protected _db => object Database_MySQLi(6)"tasks" => object Database_MySQLi_Result(7){ protected _connection_id => string(40) "9fdecc117b583662f3b3d15c4c4ac71fc778e18d" protected _identifier => string(1) "`" public last_query => string(185) "SELECT `category`.`id` AS `id`, `category`.`name` AS `name`, `category`.`url` AS `url`, `category`.`count` AS `count` FROM `cate …" protected _instance => string(7) "default" protected _connection => object mysqli(19)protected _db_group => NULL protected _db_applied => array(0) protected _db_pending => array(0) protected _db_reset => bool TRUE protected _db_builder => NULL protected _with_applied => array(0) protected _cast_data => array(0) protected _errors_filename => string(4) "task" }{ public affected_rows => NULL public client_info => NULL public client_version => NULL public connect_errno => NULL public connect_error => NULL public errno => NULL public error => NULL public error_list => NULL public field_count => NULL public host_info => NULL public info => NULL public insert_id => NULL public server_info => NULL public server_version => NULL public stat => NULL public sqlstate => NULL public protocol_version => NULL public thread_id => NULL public warning_count => NULL }protected _config => array(6) ( "type" => string(6) "MySQLi" "connection" => array(3) ( "hostname" => string(9) "localhost" "database" => string(9) "uznavalka" "persistent" => bool FALSE ) "table_prefix" => string(0) "" "charset" => string(7) "utf8mb4" "caching" => bool FALSE "profiling" => bool FALSE ) }{ protected _internal_row => integer 2 protected _query => string(621) "SELECT `task`.`id` AS `id`, `task`.`category_id` AS `category_id`, `task`.`text` AS `text`, `task`.`zn_id` AS `zn_id`, `task`.`d …" protected _result => object mysqli_result(5)"answer" => object Model_Answer(34){ public current_field => NULL public field_count => NULL public lengths => NULL public num_rows => NULL public type => NULL }protected _total_rows => integer 10 protected _current_row => integer 1 protected _as_object => string(10) "Model_Task" protected _object_params => NULL }{ protected _belongs_to => array(2) ( "human" => array(2) ( "model" => string(5) "Human" "foreign_key" => string(8) "human_id" ) "task" => array(2) ( "model" => string(4) "Task" "foreign_key" => string(7) "task_id" ) ) protected _has_many => array(1) ( "aattaches" => array(4) ( "model" => string(7) "Aattach" "foreign_key" => string(9) "answer_id" "through" => NULL "far_key" => string(10) "aattach_id" ) ) protected _reload_on_wakeup => bool FALSE protected _has_one => array(0) protected _load_with => array(0) protected _validation => NULL protected _object => array(11) ( "id" => string(7) "7099103" "task_id" => string(7) "5872829" "text" => string(148) "<div class="sg-text js-answer-content brn-rich-content" data-test="answer-content"> Х-2,24<br />168-22,4<br />х=16,8г<br />16,8/ …" "human_id" => string(8) "22972330" "type" => NULL "datetime" => NULL "gptemail_id" => string(1) "0" "good" => NULL "bad" => NULL "public" => string(1) "1" "provider" => NULL ) protected _changed => array(0) protected _original_values => array(11) ( "id" => string(7) "7099103" "task_id" => string(7) "5872829" "text" => string(148) "<div class="sg-text js-answer-content brn-rich-content" data-test="answer-content"> Х-2,24<br />168-22,4<br />х=16,8г<br />16,8/ …" "human_id" => string(8) "22972330" "type" => NULL "datetime" => NULL "gptemail_id" => string(1) "0" "good" => NULL "bad" => NULL "public" => string(1) "1" "provider" => NULL ) protected _related => array(0) protected _valid => bool TRUE protected _loaded => bool TRUE protected _saved => bool FALSE protected _sorting => NULL protected _foreign_key_suffix => string(3) "_id" protected _object_name => string(6) "answer" protected _object_plural => string(7) "answers" protected _table_name => string(7) "answers" protected _table_columns => array(11) ( "id" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(2) "id" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 1 "display" => string(2) "11" "comment" => string(0) "" "extra" => string(14) "auto_increment" "key" => string(3) "PRI" "privileges" => string(31) "select,insert,update,references" ) "task_id" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(7) "task_id" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 2 "display" => string(2) "11" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "text" => array(12) ( "type" => string(6) "string" "character_maximum_length" => string(5) "65535" "column_name" => string(4) "text" "column_default" => NULL "data_type" => string(4) "text" "is_nullable" => bool FALSE "ordinal_position" => integer 3 "collation_name" => string(18) "utf8mb3_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "human_id" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(8) "human_id" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool TRUE "ordinal_position" => integer 4 "display" => string(2) "11" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "type" => array(12) ( "type" => string(6) "string" "column_name" => string(4) "type" "column_default" => NULL "data_type" => string(4) "enum" "is_nullable" => bool TRUE "ordinal_position" => integer 5 "collation_name" => string(18) "utf8mb3_general_ci" "options" => array(1) ( 0 => string(3) "gpt" ) "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "datetime" => array(10) ( "type" => string(6) "string" "column_name" => string(8) "datetime" "column_default" => NULL "data_type" => string(8) "datetime" "is_nullable" => bool TRUE "ordinal_position" => integer 6 "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "gptemail_id" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(11) "gptemail_id" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool TRUE "ordinal_position" => integer 7 "display" => string(2) "11" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "good" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(4) "good" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool TRUE "ordinal_position" => integer 8 "display" => string(2) "11" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "bad" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(3) "bad" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool TRUE "ordinal_position" => integer 9 "display" => string(2) "11" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "public" => array(12) ( "type" => string(6) "string" "column_name" => string(6) "public" "column_default" => string(1) "1" "data_type" => string(4) "enum" "is_nullable" => bool FALSE "ordinal_position" => integer 10 "collation_name" => string(18) "utf8mb3_general_ci" "options" => array(4) ( 0 => string(1) "0" 1 => string(1) "1" 2 => string(1) "2" 3 => string(0) "" ) "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "provider" => array(12) ( "type" => string(6) "string" "column_name" => string(8) "provider" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 11 "character_maximum_length" => string(3) "255" "collation_name" => string(18) "utf8mb3_general_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) ) protected _updated_column => NULL protected _created_column => NULL protected _serialize_columns => array(0) protected _primary_key => string(2) "id" protected _primary_key_value => string(7) "7099103" protected _table_names_plural => bool TRUE protected _db => object Database_MySQLi(6)"related_tasks" => array(0) "top_yesterday_tasks" => array(10) ( 0 => object Model_Task(34){ protected _connection_id => string(40) "9fdecc117b583662f3b3d15c4c4ac71fc778e18d" protected _identifier => string(1) "`" public last_query => string(185) "SELECT `category`.`id` AS `id`, `category`.`name` AS `name`, `category`.`url` AS `url`, `category`.`count` AS `count` FROM `cate …" protected _instance => string(7) "default" protected _connection => object mysqli(19)protected _db_group => NULL protected _db_applied => array(0) protected _db_pending => array(0) protected _db_reset => bool TRUE protected _db_builder => NULL protected _with_applied => array(0) protected _cast_data => array(0) protected _errors_filename => string(6) "answer" }{ public affected_rows => NULL public client_info => NULL public client_version => NULL public connect_errno => NULL public connect_error => NULL public errno => NULL public error => NULL public error_list => NULL public field_count => NULL public host_info => NULL public info => NULL public insert_id => NULL public server_info => NULL public server_version => NULL public stat => NULL public sqlstate => NULL public protocol_version => NULL public thread_id => NULL public warning_count => NULL }protected _config => array(6) ( "type" => string(6) "MySQLi" "connection" => array(3) ( "hostname" => string(9) "localhost" "database" => string(9) "uznavalka" "persistent" => bool FALSE ) "table_prefix" => string(0) "" "charset" => string(7) "utf8mb4" "caching" => bool FALSE "profiling" => bool FALSE ) }{ protected _belongs_to => array(2) ( "category" => array(2) ( "model" => string(8) "Category" "foreign_key" => string(11) "category_id" ) "human" => array(2) ( "model" => string(5) "Human" "foreign_key" => string(8) "human_id" ) ) protected _has_many => array(4) ( "answers" => array(4) ( "model" => string(6) "Answer" "foreign_key" => string(7) "task_id" "through" => NULL "far_key" => string(9) "answer_id" ) "tattaches" => array(4) ( "model" => string(7) "Tattach" "foreign_key" => string(7) "task_id" "through" => NULL "far_key" => string(10) "tattach_id" ) "tops" => array(4) ( "model" => string(3) "Top" "foreign_key" => string(7) "task_id" "through" => NULL "far_key" => string(6) "top_id" ) "ipsviews" => array(4) ( "model" => string(7) "Ipsview" "foreign_key" => string(7) "task_id" "through" => NULL "far_key" => string(10) "ipsview_id" ) ) protected _reload_on_wakeup => bool FALSE protected _has_one => array(0) protected _load_with => array(0) protected _validation => NULL protected _object => array(16) ( "id" => string(8) "14116615" "category_id" => string(1) "7" "text" => string(2681) "<span class="sg-text sg-text--large sg-text--bold sg-text--break-words brn-qpage-next-question-box-content__primary"> 1. Ра …" "zn_id" => string(8) "36460897" "date_time" => string(19) "2023-07-07 05:27:36" "views" => string(2) "42" "human_id" => string(7) "3202407" "ya_spell" => string(1) "0" "category_key" => string(6) "667139" "has_gpt" => string(1) "1" "source" => NULL "source_id" => NULL "text_for_search" => string(2340) "1. Разделите предложенные вещества: Al, H 2 , CaO, N 2 , C, HCl , Cu, Н 2 O, Ag,&nb …" "related" => string(107) "["13507366","11115815","1673274","13382253","11147251","13877146","13686780","11620305","755942","1025905"]" "good" => NULL "bad" => NULL ) protected _changed => array(0) protected _original_values => array(16) ( "id" => string(8) "14116615" "category_id" => string(1) "7" "text" => string(2681) "<span class="sg-text sg-text--large sg-text--bold sg-text--break-words brn-qpage-next-question-box-content__primary"> 1. Ра …" "zn_id" => string(8) "36460897" "date_time" => string(19) "2023-07-07 05:27:36" "views" => string(2) "42" "human_id" => string(7) "3202407" "ya_spell" => string(1) "0" "category_key" => string(6) "667139" "has_gpt" => string(1) "1" "source" => NULL "source_id" => NULL "text_for_search" => string(2340) "1. Разделите предложенные вещества: Al, H 2 , CaO, N 2 , C, HCl , Cu, Н 2 O, Ag,&nb …" "related" => string(107) "["13507366","11115815","1673274","13382253","11147251","13877146","13686780","11620305","755942","1025905"]" "good" => NULL "bad" => NULL ) protected _related => array(2) ( "human" => object Model_Human(34)1 => object Model_Task(34){ protected _db_group => string(5) "looka" protected _has_many => array(4) ( "universities" => array(5) ( ... ) "humans_universities" => array(4) ( ... ) "schools" => array(5) ( ... ) "humans_schools" => array(4) ( ... ) ) protected _belongs_to => array(4) ( "lastname" => array(2) ( ... ) "firstname" => array(2) ( ... ) "country" => array(2) ( ... ) "city" => array(2) ( ... ) ) protected _reload_on_wakeup => bool FALSE protected _has_one => array(0) protected _load_with => array(0) protected _validation => NULL protected _object => array(21) ( "id" => string(7) "3202407" "lastname_id" => string(4) "6171" "firstname_id" => string(3) "280" "nickname" => string(0) "" "vk_id" => string(9) "298678624" "bdate" => string(10) "2004-01-20" "info" => NULL "photo" => string(67) "https://sun9-7.userapi.com/c840733/v840733432/678c8/DDRBrk4tvY0.jpg" "city_id" => string(7) "1937764" "country_id" => string(3) "209" "home_town" => NULL "home_phone" => NULL "skype" => NULL "facebook" => NULL "twitter" => NULL "livejournal" => NULL "instagram" => NULL "occupation_type" => string(4) "work" "occupation_name" => string(7) "YouTube" "rate" => string(2) "12" "count_firstnames_lastnames" => NULL ) protected _changed => array(0) protected _original_values => array(21) ( "id" => string(7) "3202407" "lastname_id" => string(4) "6171" "firstname_id" => string(3) "280" "nickname" => string(0) "" "vk_id" => string(9) "298678624" "bdate" => string(10) "2004-01-20" "info" => NULL "photo" => string(67) "https://sun9-7.userapi.com/c840733/v840733432/678c8/DDRBrk4tvY0.jpg" "city_id" => string(7) "1937764" "country_id" => string(3) "209" "home_town" => NULL "home_phone" => NULL "skype" => NULL "facebook" => NULL "twitter" => NULL "livejournal" => NULL "instagram" => NULL "occupation_type" => string(4) "work" "occupation_name" => string(7) "YouTube" "rate" => string(2) "12" "count_firstnames_lastnames" => NULL ) protected _related => array(2) ( "lastname" => object Model_Lastname(34) { ... } "firstname" => object Model_Firstname(34) { ... } ) protected _valid => bool TRUE protected _loaded => bool TRUE protected _saved => bool FALSE protected _sorting => NULL protected _foreign_key_suffix => string(3) "_id" protected _object_name => string(5) "human" protected _object_plural => string(6) "humans" protected _table_name => string(6) "humans" protected _table_columns => array(21) ( "id" => array(13) ( ... ) "lastname_id" => array(13) ( ... ) "firstname_id" => array(13) ( ... ) "nickname" => array(12) ( ... ) "vk_id" => array(13) ( ... ) "bdate" => array(10) ( ... ) "info" => array(12) ( ... ) "photo" => array(12) ( ... ) "city_id" => array(13) ( ... ) "country_id" => array(13) ( ... ) "home_town" => array(12) ( ... ) "home_phone" => array(12) ( ... ) "skype" => array(12) ( ... ) "facebook" => array(12) ( ... ) "twitter" => array(12) ( ... ) "livejournal" => array(12) ( ... ) "instagram" => array(12) ( ... ) "occupation_type" => array(12) ( ... ) "occupation_name" => array(12) ( ... ) "rate" => array(13) ( ... ) "count_firstnames_lastnames" => array(13) ( ... ) ) protected _updated_column => NULL protected _created_column => NULL protected _serialize_columns => array(0) protected _primary_key => string(2) "id" protected _primary_key_value => string(7) "3202407" protected _table_names_plural => bool TRUE protected _db => object Database_MySQLi(6)"category" => object Model_Category(35){ protected _connection_id => string(40) "d012da34ee02fd2c23a3776760afb1e9d4e5c681" protected _identifier => string(1) "`" public last_query => string(166) "SELECT `finder_lastname`.`id` AS `id`, `finder_lastname`.`title` AS `title` FROM `finder_lastnames` AS `finder_lastname` WHERE ` …" protected _instance => string(5) "looka" protected _connection => object mysqli(19) { ... } protected _config => array(5) ( ... ) }protected _db_applied => array(0) protected _db_pending => array(0) protected _db_reset => bool TRUE protected _db_builder => NULL protected _with_applied => array(0) protected _cast_data => array(0) protected _errors_filename => string(5) "human" }{ protected _has_many => array(2) ( "tasks" => array(4) ( ... ) "tops" => array(4) ( ... ) ) protected prefix_url => string(9) "/subject/" protected _reload_on_wakeup => bool FALSE protected _has_one => array(0) protected _belongs_to => array(0) protected _load_with => array(0) protected _validation => NULL protected _object => array(4) ( "id" => string(1) "7" "name" => string(10) "Химия" "url" => string(9) "chemistry" "count" => string(6) "799022" ) protected _changed => array(0) protected _original_values => array(4) ( "id" => string(1) "7" "name" => string(10) "Химия" "url" => string(9) "chemistry" "count" => string(6) "799022" ) protected _related => array(0) protected _valid => bool TRUE protected _loaded => bool TRUE protected _saved => bool FALSE protected _sorting => NULL protected _foreign_key_suffix => string(3) "_id" protected _object_name => string(8) "category" protected _object_plural => string(10) "categories" protected _table_name => string(10) "categories" protected _table_columns => array(4) ( "id" => array(13) ( ... ) "name" => array(12) ( ... ) "url" => array(12) ( ... ) "count" => array(13) ( ... ) ) protected _updated_column => NULL protected _created_column => NULL protected _serialize_columns => array(0) protected _primary_key => string(2) "id" protected _primary_key_value => string(1) "7" protected _table_names_plural => bool TRUE protected _db => object Database_MySQLi(6)) protected _valid => bool TRUE protected _loaded => bool TRUE protected _saved => bool FALSE protected _sorting => NULL protected _foreign_key_suffix => string(3) "_id" protected _object_name => string(4) "task" protected _object_plural => string(5) "tasks" protected _table_name => string(5) "tasks" protected _table_columns => array(16) ( "id" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(2) "id" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 1 "display" => string(2) "11" "comment" => string(0) "" "extra" => string(14) "auto_increment" "key" => string(3) "PRI" "privileges" => string(31) "select,insert,update,references" ) "category_id" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(11) "category_id" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 2 "display" => string(2) "11" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "text" => array(12) ( "type" => string(6) "string" "character_maximum_length" => string(5) "65535" "column_name" => string(4) "text" "column_default" => NULL "data_type" => string(4) "text" "is_nullable" => bool FALSE "ordinal_position" => integer 3 "collation_name" => string(18) "utf8mb3_unicode_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "zn_id" => array(13) ( "type" => string(3) "int" "min" => string(20) "-9223372036854775808" "max" => string(19) "9223372036854775807" "column_name" => string(5) "zn_id" "column_default" => string(1) "0" "data_type" => string(6) "bigint" "is_nullable" => bool FALSE "ordinal_position" => integer 4 "display" => string(2) "20" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "date_time" => array(10) ( "type" => string(6) "string" "column_name" => string(9) "date_time" "column_default" => string(19) "current_timestamp()" "data_type" => string(8) "datetime" "is_nullable" => bool FALSE "ordinal_position" => integer 5 "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "views" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(5) "views" "column_default" => string(1) "0" "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 6 "display" => string(2) "11" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "human_id" => array(13) ( "type" => string(3) "int" "min" => string(20) "-9223372036854775808" "max" => string(19) "9223372036854775807" "column_name" => string(8) "human_id" "column_default" => NULL "data_type" => string(6) "bigint" "is_nullable" => bool TRUE "ordinal_position" => integer 7 "display" => string(2) "20" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "ya_spell" => array(12) ( "type" => string(6) "string" "column_name" => string(8) "ya_spell" "column_default" => string(1) "0" "data_type" => string(4) "enum" "is_nullable" => bool FALSE "ordinal_position" => integer 8 "collation_name" => string(18) "utf8mb3_unicode_ci" "options" => array(2) ( 0 => string(1) "0" 1 => string(1) "1" ) "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "category_key" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(12) "category_key" "column_default" => string(1) "0" "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 9 "display" => string(2) "11" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "has_gpt" => array(12) ( "type" => string(6) "string" "column_name" => string(7) "has_gpt" "column_default" => NULL "data_type" => string(4) "enum" "is_nullable" => bool TRUE "ordinal_position" => integer 10 "collation_name" => string(18) "utf8mb3_unicode_ci" "options" => array(4) ( 0 => string(1) "0" 1 => string(1) "1" 2 => string(12) "has_attaches" 3 => string(4) "skip" ) "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "source" => array(12) ( "type" => string(6) "string" "column_name" => string(6) "source" "column_default" => NULL "data_type" => string(4) "enum" "is_nullable" => bool TRUE "ordinal_position" => integer 11 "collation_name" => string(18) "utf8mb3_unicode_ci" "options" => array(1) ( 0 => string(12) "vashurok.com" ) "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "source_id" => array(13) ( "type" => string(3) "int" "min" => string(20) "-9223372036854775808" "max" => string(19) "9223372036854775807" "column_name" => string(9) "source_id" "column_default" => NULL "data_type" => string(6) "bigint" "is_nullable" => bool TRUE "ordinal_position" => integer 12 "display" => string(2) "20" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "text_for_search" => array(12) ( "type" => string(6) "string" "character_maximum_length" => string(5) "65535" "column_name" => string(15) "text_for_search" "column_default" => NULL "data_type" => string(4) "text" "is_nullable" => bool TRUE "ordinal_position" => integer 13 "collation_name" => string(18) "utf8mb3_unicode_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "related" => array(12) ( "type" => string(6) "string" "column_name" => string(7) "related" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 14 "character_maximum_length" => string(4) "1023" "collation_name" => string(18) "utf8mb3_unicode_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "good" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(4) "good" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool TRUE "ordinal_position" => integer 15 "display" => string(2) "11" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "bad" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(3) "bad" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool TRUE "ordinal_position" => integer 16 "display" => string(2) "11" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) ) protected _updated_column => NULL protected _created_column => NULL protected _serialize_columns => array(0) protected _primary_key => string(2) "id" protected _primary_key_value => string(8) "14116615" protected _table_names_plural => bool TRUE protected _db => object Database_MySQLi(6){ protected _connection_id => string(40) "9fdecc117b583662f3b3d15c4c4ac71fc778e18d" protected _identifier => string(1) "`" public last_query => string(185) "SELECT `category`.`id` AS `id`, `category`.`name` AS `name`, `category`.`url` AS `url`, `category`.`count` AS `count` FROM `cate …" protected _instance => string(7) "default" protected _connection => object mysqli(19) { ... } protected _config => array(6) ( ... ) }protected _db_group => NULL protected _db_applied => array(0) protected _db_pending => array(0) protected _db_reset => bool TRUE protected _db_builder => NULL protected _with_applied => array(0) protected _cast_data => array(0) protected _errors_filename => string(8) "category" }{ protected _connection_id => string(40) "9fdecc117b583662f3b3d15c4c4ac71fc778e18d" protected _identifier => string(1) "`" public last_query => string(185) "SELECT `category`.`id` AS `id`, `category`.`name` AS `name`, `category`.`url` AS `url`, `category`.`count` AS `count` FROM `cate …" protected _instance => string(7) "default" protected _connection => object mysqli(19)protected _db_group => NULL protected _db_applied => array(0) protected _db_pending => array(0) protected _db_reset => bool TRUE protected _db_builder => NULL protected _with_applied => array(0) protected _cast_data => array(0) protected _errors_filename => string(4) "task" }{ public affected_rows => NULL public client_info => NULL public client_version => NULL public connect_errno => NULL public connect_error => NULL public errno => NULL public error => NULL public error_list => NULL public field_count => NULL public host_info => NULL public info => NULL public insert_id => NULL public server_info => NULL public server_version => NULL public stat => NULL public sqlstate => NULL public protocol_version => NULL public thread_id => NULL public warning_count => NULL }protected _config => array(6) ( "type" => string(6) "MySQLi" "connection" => array(3) ( "hostname" => string(9) "localhost" "database" => string(9) "uznavalka" "persistent" => bool FALSE ) "table_prefix" => string(0) "" "charset" => string(7) "utf8mb4" "caching" => bool FALSE "profiling" => bool FALSE ) }{ protected _belongs_to => array(2) ( "category" => array(2) ( "model" => string(8) "Category" "foreign_key" => string(11) "category_id" ) "human" => array(2) ( "model" => string(5) "Human" "foreign_key" => string(8) "human_id" ) ) protected _has_many => array(4) ( "answers" => array(4) ( "model" => string(6) "Answer" "foreign_key" => string(7) "task_id" "through" => NULL "far_key" => string(9) "answer_id" ) "tattaches" => array(4) ( "model" => string(7) "Tattach" "foreign_key" => string(7) "task_id" "through" => NULL "far_key" => string(10) "tattach_id" ) "tops" => array(4) ( "model" => string(3) "Top" "foreign_key" => string(7) "task_id" "through" => NULL "far_key" => string(6) "top_id" ) "ipsviews" => array(4) ( "model" => string(7) "Ipsview" "foreign_key" => string(7) "task_id" "through" => NULL "far_key" => string(10) "ipsview_id" ) ) protected _reload_on_wakeup => bool FALSE protected _has_one => array(0) protected _load_with => array(0) protected _validation => NULL protected _object => array(16) ( "id" => string(8) "10860218" "category_id" => string(1) "7" "text" => string(270) "<span class="sg-text sg-text--large sg-text--bold sg-text--break-words brn-qpage-next-question-box-content__primary"> CuO + NH3 …" "zn_id" => string(8) "24342333" "date_time" => string(19) "2021-03-25 16:19:04" "views" => string(2) "49" "human_id" => string(8) "32694668" "ya_spell" => string(1) "0" "category_key" => string(6) "494327" "has_gpt" => string(1) "1" "source" => NULL "source_id" => NULL "text_for_search" => string(140) "CuO + NH3 -> Cu + N2 + H2O. Сколько электронов участвуют в процессе окисления реакции?" "related" => NULL "good" => NULL "bad" => NULL ) protected _changed => array(0) protected _original_values => array(16) ( "id" => string(8) "10860218" "category_id" => string(1) "7" "text" => string(270) "<span class="sg-text sg-text--large sg-text--bold sg-text--break-words brn-qpage-next-question-box-content__primary"> CuO + NH3 …" "zn_id" => string(8) "24342333" "date_time" => string(19) "2021-03-25 16:19:04" "views" => string(2) "49" "human_id" => string(8) "32694668" "ya_spell" => string(1) "0" "category_key" => string(6) "494327" "has_gpt" => string(1) "1" "source" => NULL "source_id" => NULL "text_for_search" => string(140) "CuO + NH3 -> Cu + N2 + H2O. Сколько электронов участвуют в процессе окисления реакции?" "related" => NULL "good" => NULL "bad" => NULL ) protected _related => array(2) ( "human" => object Model_Human(34)2 => object Model_Task(34){ protected _db_group => string(5) "looka" protected _has_many => array(4) ( "universities" => array(5) ( ... ) "humans_universities" => array(4) ( ... ) "schools" => array(5) ( ... ) "humans_schools" => array(4) ( ... ) ) protected _belongs_to => array(4) ( "lastname" => array(2) ( ... ) "firstname" => array(2) ( ... ) "country" => array(2) ( ... ) "city" => array(2) ( ... ) ) protected _reload_on_wakeup => bool FALSE protected _has_one => array(0) protected _load_with => array(0) protected _validation => NULL protected _object => array(21) ( "id" => string(8) "32694668" "lastname_id" => string(4) "9027" "firstname_id" => string(2) "73" "nickname" => string(0) "" "vk_id" => string(9) "262187723" "bdate" => string(10) "2004-04-03" "info" => NULL "photo" => string(62) "https://pp.userapi.com/c844617/v844617397/e1a8/1QlqBt3OVBA.jpg" "city_id" => string(7) "1702115" "country_id" => string(1) "4" "home_town" => string(20) "Надеждинка" "home_phone" => string(14) ".............." "skype" => NULL "facebook" => NULL "twitter" => NULL "livejournal" => NULL "instagram" => NULL "occupation_type" => string(6) "school" "occupation_name" => string(16) "Школа №13" "rate" => string(2) "15" "count_firstnames_lastnames" => NULL ) protected _changed => array(0) protected _original_values => array(21) ( "id" => string(8) "32694668" "lastname_id" => string(4) "9027" "firstname_id" => string(2) "73" "nickname" => string(0) "" "vk_id" => string(9) "262187723" "bdate" => string(10) "2004-04-03" "info" => NULL "photo" => string(62) "https://pp.userapi.com/c844617/v844617397/e1a8/1QlqBt3OVBA.jpg" "city_id" => string(7) "1702115" "country_id" => string(1) "4" "home_town" => string(20) "Надеждинка" "home_phone" => string(14) ".............." "skype" => NULL "facebook" => NULL "twitter" => NULL "livejournal" => NULL "instagram" => NULL "occupation_type" => string(6) "school" "occupation_name" => string(16) "Школа №13" "rate" => string(2) "15" "count_firstnames_lastnames" => NULL ) protected _related => array(2) ( "lastname" => object Model_Lastname(34) { ... } "firstname" => object Model_Firstname(34) { ... } ) protected _valid => bool TRUE protected _loaded => bool TRUE protected _saved => bool FALSE protected _sorting => NULL protected _foreign_key_suffix => string(3) "_id" protected _object_name => string(5) "human" protected _object_plural => string(6) "humans" protected _table_name => string(6) "humans" protected _table_columns => array(21) ( "id" => array(13) ( ... ) "lastname_id" => array(13) ( ... ) "firstname_id" => array(13) ( ... ) "nickname" => array(12) ( ... ) "vk_id" => array(13) ( ... ) "bdate" => array(10) ( ... ) "info" => array(12) ( ... ) "photo" => array(12) ( ... ) "city_id" => array(13) ( ... ) "country_id" => array(13) ( ... ) "home_town" => array(12) ( ... ) "home_phone" => array(12) ( ... ) "skype" => array(12) ( ... ) "facebook" => array(12) ( ... ) "twitter" => array(12) ( ... ) "livejournal" => array(12) ( ... ) "instagram" => array(12) ( ... ) "occupation_type" => array(12) ( ... ) "occupation_name" => array(12) ( ... ) "rate" => array(13) ( ... ) "count_firstnames_lastnames" => array(13) ( ... ) ) protected _updated_column => NULL protected _created_column => NULL protected _serialize_columns => array(0) protected _primary_key => string(2) "id" protected _primary_key_value => string(8) "32694668" protected _table_names_plural => bool TRUE protected _db => object Database_MySQLi(6)"category" => object Model_Category(35){ protected _connection_id => string(40) "d012da34ee02fd2c23a3776760afb1e9d4e5c681" protected _identifier => string(1) "`" public last_query => string(166) "SELECT `finder_lastname`.`id` AS `id`, `finder_lastname`.`title` AS `title` FROM `finder_lastnames` AS `finder_lastname` WHERE ` …" protected _instance => string(5) "looka" protected _connection => object mysqli(19) { ... } protected _config => array(5) ( ... ) }protected _db_applied => array(0) protected _db_pending => array(0) protected _db_reset => bool TRUE protected _db_builder => NULL protected _with_applied => array(0) protected _cast_data => array(0) protected _errors_filename => string(5) "human" }{ protected _has_many => array(2) ( "tasks" => array(4) ( ... ) "tops" => array(4) ( ... ) ) protected prefix_url => string(9) "/subject/" protected _reload_on_wakeup => bool FALSE protected _has_one => array(0) protected _belongs_to => array(0) protected _load_with => array(0) protected _validation => NULL protected _object => array(4) ( "id" => string(1) "7" "name" => string(10) "Химия" "url" => string(9) "chemistry" "count" => string(6) "799022" ) protected _changed => array(0) protected _original_values => array(4) ( "id" => string(1) "7" "name" => string(10) "Химия" "url" => string(9) "chemistry" "count" => string(6) "799022" ) protected _related => array(0) protected _valid => bool TRUE protected _loaded => bool TRUE protected _saved => bool FALSE protected _sorting => NULL protected _foreign_key_suffix => string(3) "_id" protected _object_name => string(8) "category" protected _object_plural => string(10) "categories" protected _table_name => string(10) "categories" protected _table_columns => array(4) ( "id" => array(13) ( ... ) "name" => array(12) ( ... ) "url" => array(12) ( ... ) "count" => array(13) ( ... ) ) protected _updated_column => NULL protected _created_column => NULL protected _serialize_columns => array(0) protected _primary_key => string(2) "id" protected _primary_key_value => string(1) "7" protected _table_names_plural => bool TRUE protected _db => object Database_MySQLi(6)) protected _valid => bool TRUE protected _loaded => bool TRUE protected _saved => bool FALSE protected _sorting => NULL protected _foreign_key_suffix => string(3) "_id" protected _object_name => string(4) "task" protected _object_plural => string(5) "tasks" protected _table_name => string(5) "tasks" protected _table_columns => array(16) ( "id" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(2) "id" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 1 "display" => string(2) "11" "comment" => string(0) "" "extra" => string(14) "auto_increment" "key" => string(3) "PRI" "privileges" => string(31) "select,insert,update,references" ) "category_id" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(11) "category_id" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 2 "display" => string(2) "11" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "text" => array(12) ( "type" => string(6) "string" "character_maximum_length" => string(5) "65535" "column_name" => string(4) "text" "column_default" => NULL "data_type" => string(4) "text" "is_nullable" => bool FALSE "ordinal_position" => integer 3 "collation_name" => string(18) "utf8mb3_unicode_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "zn_id" => array(13) ( "type" => string(3) "int" "min" => string(20) "-9223372036854775808" "max" => string(19) "9223372036854775807" "column_name" => string(5) "zn_id" "column_default" => string(1) "0" "data_type" => string(6) "bigint" "is_nullable" => bool FALSE "ordinal_position" => integer 4 "display" => string(2) "20" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "date_time" => array(10) ( "type" => string(6) "string" "column_name" => string(9) "date_time" "column_default" => string(19) "current_timestamp()" "data_type" => string(8) "datetime" "is_nullable" => bool FALSE "ordinal_position" => integer 5 "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "views" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(5) "views" "column_default" => string(1) "0" "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 6 "display" => string(2) "11" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "human_id" => array(13) ( "type" => string(3) "int" "min" => string(20) "-9223372036854775808" "max" => string(19) "9223372036854775807" "column_name" => string(8) "human_id" "column_default" => NULL "data_type" => string(6) "bigint" "is_nullable" => bool TRUE "ordinal_position" => integer 7 "display" => string(2) "20" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "ya_spell" => array(12) ( "type" => string(6) "string" "column_name" => string(8) "ya_spell" "column_default" => string(1) "0" "data_type" => string(4) "enum" "is_nullable" => bool FALSE "ordinal_position" => integer 8 "collation_name" => string(18) "utf8mb3_unicode_ci" "options" => array(2) ( 0 => string(1) "0" 1 => string(1) "1" ) "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "category_key" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(12) "category_key" "column_default" => string(1) "0" "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 9 "display" => string(2) "11" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "has_gpt" => array(12) ( "type" => string(6) "string" "column_name" => string(7) "has_gpt" "column_default" => NULL "data_type" => string(4) "enum" "is_nullable" => bool TRUE "ordinal_position" => integer 10 "collation_name" => string(18) "utf8mb3_unicode_ci" "options" => array(4) ( 0 => string(1) "0" 1 => string(1) "1" 2 => string(12) "has_attaches" 3 => string(4) "skip" ) "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "source" => array(12) ( "type" => string(6) "string" "column_name" => string(6) "source" "column_default" => NULL "data_type" => string(4) "enum" "is_nullable" => bool TRUE "ordinal_position" => integer 11 "collation_name" => string(18) "utf8mb3_unicode_ci" "options" => array(1) ( 0 => string(12) "vashurok.com" ) "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "source_id" => array(13) ( "type" => string(3) "int" "min" => string(20) "-9223372036854775808" "max" => string(19) "9223372036854775807" "column_name" => string(9) "source_id" "column_default" => NULL "data_type" => string(6) "bigint" "is_nullable" => bool TRUE "ordinal_position" => integer 12 "display" => string(2) "20" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "text_for_search" => array(12) ( "type" => string(6) "string" "character_maximum_length" => string(5) "65535" "column_name" => string(15) "text_for_search" "column_default" => NULL "data_type" => string(4) "text" "is_nullable" => bool TRUE "ordinal_position" => integer 13 "collation_name" => string(18) "utf8mb3_unicode_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "related" => array(12) ( "type" => string(6) "string" "column_name" => string(7) "related" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 14 "character_maximum_length" => string(4) "1023" "collation_name" => string(18) "utf8mb3_unicode_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "good" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(4) "good" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool TRUE "ordinal_position" => integer 15 "display" => string(2) "11" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "bad" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(3) "bad" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool TRUE "ordinal_position" => integer 16 "display" => string(2) "11" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) ) protected _updated_column => NULL protected _created_column => NULL protected _serialize_columns => array(0) protected _primary_key => string(2) "id" protected _primary_key_value => string(8) "10860218" protected _table_names_plural => bool TRUE protected _db => object Database_MySQLi(6){ protected _connection_id => string(40) "9fdecc117b583662f3b3d15c4c4ac71fc778e18d" protected _identifier => string(1) "`" public last_query => string(185) "SELECT `category`.`id` AS `id`, `category`.`name` AS `name`, `category`.`url` AS `url`, `category`.`count` AS `count` FROM `cate …" protected _instance => string(7) "default" protected _connection => object mysqli(19) { ... } protected _config => array(6) ( ... ) }protected _db_group => NULL protected _db_applied => array(0) protected _db_pending => array(0) protected _db_reset => bool TRUE protected _db_builder => NULL protected _with_applied => array(0) protected _cast_data => array(0) protected _errors_filename => string(8) "category" }{ protected _connection_id => string(40) "9fdecc117b583662f3b3d15c4c4ac71fc778e18d" protected _identifier => string(1) "`" public last_query => string(185) "SELECT `category`.`id` AS `id`, `category`.`name` AS `name`, `category`.`url` AS `url`, `category`.`count` AS `count` FROM `cate …" protected _instance => string(7) "default" protected _connection => object mysqli(19)protected _db_group => NULL protected _db_applied => array(0) protected _db_pending => array(0) protected _db_reset => bool TRUE protected _db_builder => NULL protected _with_applied => array(0) protected _cast_data => array(0) protected _errors_filename => string(4) "task" }{ public affected_rows => NULL public client_info => NULL public client_version => NULL public connect_errno => NULL public connect_error => NULL public errno => NULL public error => NULL public error_list => NULL public field_count => NULL public host_info => NULL public info => NULL public insert_id => NULL public server_info => NULL public server_version => NULL public stat => NULL public sqlstate => NULL public protocol_version => NULL public thread_id => NULL public warning_count => NULL }protected _config => array(6) ( "type" => string(6) "MySQLi" "connection" => array(3) ( "hostname" => string(9) "localhost" "database" => string(9) "uznavalka" "persistent" => bool FALSE ) "table_prefix" => string(0) "" "charset" => string(7) "utf8mb4" "caching" => bool FALSE "profiling" => bool FALSE ) }{ protected _belongs_to => array(2) ( "category" => array(2) ( "model" => string(8) "Category" "foreign_key" => string(11) "category_id" ) "human" => array(2) ( "model" => string(5) "Human" "foreign_key" => string(8) "human_id" ) ) protected _has_many => array(4) ( "answers" => array(4) ( "model" => string(6) "Answer" "foreign_key" => string(7) "task_id" "through" => NULL "far_key" => string(9) "answer_id" ) "tattaches" => array(4) ( "model" => string(7) "Tattach" "foreign_key" => string(7) "task_id" "through" => NULL "far_key" => string(10) "tattach_id" ) "tops" => array(4) ( "model" => string(3) "Top" "foreign_key" => string(7) "task_id" "through" => NULL "far_key" => string(6) "top_id" ) "ipsviews" => array(4) ( "model" => string(7) "Ipsview" "foreign_key" => string(7) "task_id" "through" => NULL "far_key" => string(10) "ipsview_id" ) ) protected _reload_on_wakeup => bool FALSE protected _has_one => array(0) protected _load_with => array(0) protected _validation => NULL protected _object => array(16) ( "id" => string(8) "11327053" "category_id" => string(1) "7" "text" => string(584) "<span class="sg-text sg-text--large sg-text--bold sg-text--break-words brn-qpage-next-question-box-content__primary"> 9. Обчислі …" "zn_id" => string(8) "52874505" "date_time" => string(19) "2023-06-06 11:46:12" "views" => string(1) "5" "human_id" => string(7) "5925970" "ya_spell" => string(1) "0" "category_key" => string(6) "523674" "has_gpt" => string(1) "1" "source" => NULL "source_id" => NULL "text_for_search" => string(359) "9. Обчисліть масову частку натрій нітрату (NaNO3) в розчині, якщо до його розчину масою 130 г з масовою часткою солі 12% долили …" "related" => NULL "good" => NULL "bad" => NULL ) protected _changed => array(0) protected _original_values => array(16) ( "id" => string(8) "11327053" "category_id" => string(1) "7" "text" => string(584) "<span class="sg-text sg-text--large sg-text--bold sg-text--break-words brn-qpage-next-question-box-content__primary"> 9. Обчислі …" "zn_id" => string(8) "52874505" "date_time" => string(19) "2023-06-06 11:46:12" "views" => string(1) "5" "human_id" => string(7) "5925970" "ya_spell" => string(1) "0" "category_key" => string(6) "523674" "has_gpt" => string(1) "1" "source" => NULL "source_id" => NULL "text_for_search" => string(359) "9. Обчисліть масову частку натрій нітрату (NaNO3) в розчині, якщо до його розчину масою 130 г з масовою часткою солі 12% долили …" "related" => NULL "good" => NULL "bad" => NULL ) protected _related => array(2) ( "human" => object Model_Human(34)3 => object Model_Task(34){ protected _db_group => string(5) "looka" protected _has_many => array(4) ( "universities" => array(5) ( ... ) "humans_universities" => array(4) ( ... ) "schools" => array(5) ( ... ) "humans_schools" => array(4) ( ... ) ) protected _belongs_to => array(4) ( "lastname" => array(2) ( ... ) "firstname" => array(2) ( ... ) "country" => array(2) ( ... ) "city" => array(2) ( ... ) ) protected _reload_on_wakeup => bool FALSE protected _has_one => array(0) protected _load_with => array(0) protected _validation => NULL protected _object => array(21) ( "id" => string(7) "5925970" "lastname_id" => string(4) "1425" "firstname_id" => string(1) "7" "nickname" => string(0) "" "vk_id" => string(9) "295323624" "bdate" => string(10) "2004-09-20" "info" => NULL "photo" => string(67) "https://sun9-7.userapi.com/c840629/v840629535/5f8cd/ptRHQOM0j_o.jpg" "city_id" => string(4) "1469" "country_id" => string(1) "1" "home_town" => NULL "home_phone" => string(0) "" "skype" => NULL "facebook" => NULL "twitter" => NULL "livejournal" => NULL "instagram" => NULL "occupation_type" => NULL "occupation_name" => NULL "rate" => string(2) "12" "count_firstnames_lastnames" => NULL ) protected _changed => array(0) protected _original_values => array(21) ( "id" => string(7) "5925970" "lastname_id" => string(4) "1425" "firstname_id" => string(1) "7" "nickname" => string(0) "" "vk_id" => string(9) "295323624" "bdate" => string(10) "2004-09-20" "info" => NULL "photo" => string(67) "https://sun9-7.userapi.com/c840629/v840629535/5f8cd/ptRHQOM0j_o.jpg" "city_id" => string(4) "1469" "country_id" => string(1) "1" "home_town" => NULL "home_phone" => string(0) "" "skype" => NULL "facebook" => NULL "twitter" => NULL "livejournal" => NULL "instagram" => NULL "occupation_type" => NULL "occupation_name" => NULL "rate" => string(2) "12" "count_firstnames_lastnames" => NULL ) protected _related => array(2) ( "lastname" => object Model_Lastname(34) { ... } "firstname" => object Model_Firstname(34) { ... } ) protected _valid => bool TRUE protected _loaded => bool TRUE protected _saved => bool FALSE protected _sorting => NULL protected _foreign_key_suffix => string(3) "_id" protected _object_name => string(5) "human" protected _object_plural => string(6) "humans" protected _table_name => string(6) "humans" protected _table_columns => array(21) ( "id" => array(13) ( ... ) "lastname_id" => array(13) ( ... ) "firstname_id" => array(13) ( ... ) "nickname" => array(12) ( ... ) "vk_id" => array(13) ( ... ) "bdate" => array(10) ( ... ) "info" => array(12) ( ... ) "photo" => array(12) ( ... ) "city_id" => array(13) ( ... ) "country_id" => array(13) ( ... ) "home_town" => array(12) ( ... ) "home_phone" => array(12) ( ... ) "skype" => array(12) ( ... ) "facebook" => array(12) ( ... ) "twitter" => array(12) ( ... ) "livejournal" => array(12) ( ... ) "instagram" => array(12) ( ... ) "occupation_type" => array(12) ( ... ) "occupation_name" => array(12) ( ... ) "rate" => array(13) ( ... ) "count_firstnames_lastnames" => array(13) ( ... ) ) protected _updated_column => NULL protected _created_column => NULL protected _serialize_columns => array(0) protected _primary_key => string(2) "id" protected _primary_key_value => string(7) "5925970" protected _table_names_plural => bool TRUE protected _db => object Database_MySQLi(6)"category" => object Model_Category(35){ protected _connection_id => string(40) "d012da34ee02fd2c23a3776760afb1e9d4e5c681" protected _identifier => string(1) "`" public last_query => string(166) "SELECT `finder_lastname`.`id` AS `id`, `finder_lastname`.`title` AS `title` FROM `finder_lastnames` AS `finder_lastname` WHERE ` …" protected _instance => string(5) "looka" protected _connection => object mysqli(19) { ... } protected _config => array(5) ( ... ) }protected _db_applied => array(0) protected _db_pending => array(0) protected _db_reset => bool TRUE protected _db_builder => NULL protected _with_applied => array(0) protected _cast_data => array(0) protected _errors_filename => string(5) "human" }{ protected _has_many => array(2) ( "tasks" => array(4) ( ... ) "tops" => array(4) ( ... ) ) protected prefix_url => string(9) "/subject/" protected _reload_on_wakeup => bool FALSE protected _has_one => array(0) protected _belongs_to => array(0) protected _load_with => array(0) protected _validation => NULL protected _object => array(4) ( "id" => string(1) "7" "name" => string(10) "Химия" "url" => string(9) "chemistry" "count" => string(6) "799022" ) protected _changed => array(0) protected _original_values => array(4) ( "id" => string(1) "7" "name" => string(10) "Химия" "url" => string(9) "chemistry" "count" => string(6) "799022" ) protected _related => array(0) protected _valid => bool TRUE protected _loaded => bool TRUE protected _saved => bool FALSE protected _sorting => NULL protected _foreign_key_suffix => string(3) "_id" protected _object_name => string(8) "category" protected _object_plural => string(10) "categories" protected _table_name => string(10) "categories" protected _table_columns => array(4) ( "id" => array(13) ( ... ) "name" => array(12) ( ... ) "url" => array(12) ( ... ) "count" => array(13) ( ... ) ) protected _updated_column => NULL protected _created_column => NULL protected _serialize_columns => array(0) protected _primary_key => string(2) "id" protected _primary_key_value => string(1) "7" protected _table_names_plural => bool TRUE protected _db => object Database_MySQLi(6)) protected _valid => bool TRUE protected _loaded => bool TRUE protected _saved => bool FALSE protected _sorting => NULL protected _foreign_key_suffix => string(3) "_id" protected _object_name => string(4) "task" protected _object_plural => string(5) "tasks" protected _table_name => string(5) "tasks" protected _table_columns => array(16) ( "id" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(2) "id" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 1 "display" => string(2) "11" "comment" => string(0) "" "extra" => string(14) "auto_increment" "key" => string(3) "PRI" "privileges" => string(31) "select,insert,update,references" ) "category_id" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(11) "category_id" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 2 "display" => string(2) "11" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "text" => array(12) ( "type" => string(6) "string" "character_maximum_length" => string(5) "65535" "column_name" => string(4) "text" "column_default" => NULL "data_type" => string(4) "text" "is_nullable" => bool FALSE "ordinal_position" => integer 3 "collation_name" => string(18) "utf8mb3_unicode_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "zn_id" => array(13) ( "type" => string(3) "int" "min" => string(20) "-9223372036854775808" "max" => string(19) "9223372036854775807" "column_name" => string(5) "zn_id" "column_default" => string(1) "0" "data_type" => string(6) "bigint" "is_nullable" => bool FALSE "ordinal_position" => integer 4 "display" => string(2) "20" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "date_time" => array(10) ( "type" => string(6) "string" "column_name" => string(9) "date_time" "column_default" => string(19) "current_timestamp()" "data_type" => string(8) "datetime" "is_nullable" => bool FALSE "ordinal_position" => integer 5 "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "views" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(5) "views" "column_default" => string(1) "0" "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 6 "display" => string(2) "11" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "human_id" => array(13) ( "type" => string(3) "int" "min" => string(20) "-9223372036854775808" "max" => string(19) "9223372036854775807" "column_name" => string(8) "human_id" "column_default" => NULL "data_type" => string(6) "bigint" "is_nullable" => bool TRUE "ordinal_position" => integer 7 "display" => string(2) "20" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "ya_spell" => array(12) ( "type" => string(6) "string" "column_name" => string(8) "ya_spell" "column_default" => string(1) "0" "data_type" => string(4) "enum" "is_nullable" => bool FALSE "ordinal_position" => integer 8 "collation_name" => string(18) "utf8mb3_unicode_ci" "options" => array(2) ( 0 => string(1) "0" 1 => string(1) "1" ) "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "category_key" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(12) "category_key" "column_default" => string(1) "0" "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 9 "display" => string(2) "11" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "has_gpt" => array(12) ( "type" => string(6) "string" "column_name" => string(7) "has_gpt" "column_default" => NULL "data_type" => string(4) "enum" "is_nullable" => bool TRUE "ordinal_position" => integer 10 "collation_name" => string(18) "utf8mb3_unicode_ci" "options" => array(4) ( 0 => string(1) "0" 1 => string(1) "1" 2 => string(12) "has_attaches" 3 => string(4) "skip" ) "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "source" => array(12) ( "type" => string(6) "string" "column_name" => string(6) "source" "column_default" => NULL "data_type" => string(4) "enum" "is_nullable" => bool TRUE "ordinal_position" => integer 11 "collation_name" => string(18) "utf8mb3_unicode_ci" "options" => array(1) ( 0 => string(12) "vashurok.com" ) "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "source_id" => array(13) ( "type" => string(3) "int" "min" => string(20) "-9223372036854775808" "max" => string(19) "9223372036854775807" "column_name" => string(9) "source_id" "column_default" => NULL "data_type" => string(6) "bigint" "is_nullable" => bool TRUE "ordinal_position" => integer 12 "display" => string(2) "20" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "text_for_search" => array(12) ( "type" => string(6) "string" "character_maximum_length" => string(5) "65535" "column_name" => string(15) "text_for_search" "column_default" => NULL "data_type" => string(4) "text" "is_nullable" => bool TRUE "ordinal_position" => integer 13 "collation_name" => string(18) "utf8mb3_unicode_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "related" => array(12) ( "type" => string(6) "string" "column_name" => string(7) "related" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 14 "character_maximum_length" => string(4) "1023" "collation_name" => string(18) "utf8mb3_unicode_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "good" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(4) "good" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool TRUE "ordinal_position" => integer 15 "display" => string(2) "11" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "bad" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(3) "bad" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool TRUE "ordinal_position" => integer 16 "display" => string(2) "11" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) ) protected _updated_column => NULL protected _created_column => NULL protected _serialize_columns => array(0) protected _primary_key => string(2) "id" protected _primary_key_value => string(8) "11327053" protected _table_names_plural => bool TRUE protected _db => object Database_MySQLi(6){ protected _connection_id => string(40) "9fdecc117b583662f3b3d15c4c4ac71fc778e18d" protected _identifier => string(1) "`" public last_query => string(185) "SELECT `category`.`id` AS `id`, `category`.`name` AS `name`, `category`.`url` AS `url`, `category`.`count` AS `count` FROM `cate …" protected _instance => string(7) "default" protected _connection => object mysqli(19) { ... } protected _config => array(6) ( ... ) }protected _db_group => NULL protected _db_applied => array(0) protected _db_pending => array(0) protected _db_reset => bool TRUE protected _db_builder => NULL protected _with_applied => array(0) protected _cast_data => array(0) protected _errors_filename => string(8) "category" }{ protected _connection_id => string(40) "9fdecc117b583662f3b3d15c4c4ac71fc778e18d" protected _identifier => string(1) "`" public last_query => string(185) "SELECT `category`.`id` AS `id`, `category`.`name` AS `name`, `category`.`url` AS `url`, `category`.`count` AS `count` FROM `cate …" protected _instance => string(7) "default" protected _connection => object mysqli(19)protected _db_group => NULL protected _db_applied => array(0) protected _db_pending => array(0) protected _db_reset => bool TRUE protected _db_builder => NULL protected _with_applied => array(0) protected _cast_data => array(0) protected _errors_filename => string(4) "task" }{ public affected_rows => NULL public client_info => NULL public client_version => NULL public connect_errno => NULL public connect_error => NULL public errno => NULL public error => NULL public error_list => NULL public field_count => NULL public host_info => NULL public info => NULL public insert_id => NULL public server_info => NULL public server_version => NULL public stat => NULL public sqlstate => NULL public protocol_version => NULL public thread_id => NULL public warning_count => NULL }protected _config => array(6) ( "type" => string(6) "MySQLi" "connection" => array(3) ( "hostname" => string(9) "localhost" "database" => string(9) "uznavalka" "persistent" => bool FALSE ) "table_prefix" => string(0) "" "charset" => string(7) "utf8mb4" "caching" => bool FALSE "profiling" => bool FALSE ) }{ protected _belongs_to => array(2) ( "category" => array(2) ( "model" => string(8) "Category" "foreign_key" => string(11) "category_id" ) "human" => array(2) ( "model" => string(5) "Human" "foreign_key" => string(8) "human_id" ) ) protected _has_many => array(4) ( "answers" => array(4) ( "model" => string(6) "Answer" "foreign_key" => string(7) "task_id" "through" => NULL "far_key" => string(9) "answer_id" ) "tattaches" => array(4) ( "model" => string(7) "Tattach" "foreign_key" => string(7) "task_id" "through" => NULL "far_key" => string(10) "tattach_id" ) "tops" => array(4) ( "model" => string(3) "Top" "foreign_key" => string(7) "task_id" "through" => NULL "far_key" => string(6) "top_id" ) "ipsviews" => array(4) ( "model" => string(7) "Ipsview" "foreign_key" => string(7) "task_id" "through" => NULL "far_key" => string(10) "ipsview_id" ) ) protected _reload_on_wakeup => bool FALSE protected _has_one => array(0) protected _load_with => array(0) protected _validation => NULL protected _object => array(16) ( "id" => string(8) "16675451" "category_id" => string(1) "7" "text" => string(3964) "<span class="sg-text sg-text--large sg-text--bold sg-text--break-words brn-qpage-next-question-box-content__primary"> Опыт №1: О …" "zn_id" => string(8) "52411110" "date_time" => string(19) "2023-11-26 18:05:02" "views" => string(1) "4" "human_id" => string(8) "15663595" "ya_spell" => string(1) "0" "category_key" => string(6) "803176" "has_gpt" => string(1) "1" "source" => NULL "source_id" => NULL "text_for_search" => string(3561) "Опыт №1: Определение прозрачности воды Необходимое оборудование и вещества: стеклянный мерный цилиндр с плоским дном, печатный т …" "related" => string(107) "["11464428","2582542","15085328","11169084","8952576","13810661","6452450","3182316","14560936","13076381"]" "good" => NULL "bad" => NULL ) protected _changed => array(0) protected _original_values => array(16) ( "id" => string(8) "16675451" "category_id" => string(1) "7" "text" => string(3964) "<span class="sg-text sg-text--large sg-text--bold sg-text--break-words brn-qpage-next-question-box-content__primary"> Опыт №1: О …" "zn_id" => string(8) "52411110" "date_time" => string(19) "2023-11-26 18:05:02" "views" => string(1) "4" "human_id" => string(8) "15663595" "ya_spell" => string(1) "0" "category_key" => string(6) "803176" "has_gpt" => string(1) "1" "source" => NULL "source_id" => NULL "text_for_search" => string(3561) "Опыт №1: Определение прозрачности воды Необходимое оборудование и вещества: стеклянный мерный цилиндр с плоским дном, печатный т …" "related" => string(107) "["11464428","2582542","15085328","11169084","8952576","13810661","6452450","3182316","14560936","13076381"]" "good" => NULL "bad" => NULL ) protected _related => array(2) ( "human" => object Model_Human(34)4 => object Model_Task(34){ protected _db_group => string(5) "looka" protected _has_many => array(4) ( "universities" => array(5) ( ... ) "humans_universities" => array(4) ( ... ) "schools" => array(5) ( ... ) "humans_schools" => array(4) ( ... ) ) protected _belongs_to => array(4) ( "lastname" => array(2) ( ... ) "firstname" => array(2) ( ... ) "country" => array(2) ( ... ) "city" => array(2) ( ... ) ) protected _reload_on_wakeup => bool FALSE protected _has_one => array(0) protected _load_with => array(0) protected _validation => NULL protected _object => array(21) ( "id" => string(8) "15663595" "lastname_id" => string(5) "76595" "firstname_id" => string(4) "1764" "nickname" => string(0) "" "vk_id" => string(9) "283442602" "bdate" => string(10) "2004-05-20" "info" => NULL "photo" => string(67) "https://sun9-1.userapi.com/c824500/v824500136/c93df/S53bPSQXfGk.jpg" "city_id" => NULL "country_id" => string(3) "121" "home_town" => NULL "home_phone" => string(0) "" "skype" => NULL "facebook" => string(16) "+376763392684942" "twitter" => NULL "livejournal" => NULL "instagram" => NULL "occupation_type" => NULL "occupation_name" => NULL "rate" => string(2) "12" "count_firstnames_lastnames" => NULL ) protected _changed => array(0) protected _original_values => array(21) ( "id" => string(8) "15663595" "lastname_id" => string(5) "76595" "firstname_id" => string(4) "1764" "nickname" => string(0) "" "vk_id" => string(9) "283442602" "bdate" => string(10) "2004-05-20" "info" => NULL "photo" => string(67) "https://sun9-1.userapi.com/c824500/v824500136/c93df/S53bPSQXfGk.jpg" "city_id" => NULL "country_id" => string(3) "121" "home_town" => NULL "home_phone" => string(0) "" "skype" => NULL "facebook" => string(16) "+376763392684942" "twitter" => NULL "livejournal" => NULL "instagram" => NULL "occupation_type" => NULL "occupation_name" => NULL "rate" => string(2) "12" "count_firstnames_lastnames" => NULL ) protected _related => array(2) ( "lastname" => object Model_Lastname(34) { ... } "firstname" => object Model_Firstname(34) { ... } ) protected _valid => bool TRUE protected _loaded => bool TRUE protected _saved => bool FALSE protected _sorting => NULL protected _foreign_key_suffix => string(3) "_id" protected _object_name => string(5) "human" protected _object_plural => string(6) "humans" protected _table_name => string(6) "humans" protected _table_columns => array(21) ( "id" => array(13) ( ... ) "lastname_id" => array(13) ( ... ) "firstname_id" => array(13) ( ... ) "nickname" => array(12) ( ... ) "vk_id" => array(13) ( ... ) "bdate" => array(10) ( ... ) "info" => array(12) ( ... ) "photo" => array(12) ( ... ) "city_id" => array(13) ( ... ) "country_id" => array(13) ( ... ) "home_town" => array(12) ( ... ) "home_phone" => array(12) ( ... ) "skype" => array(12) ( ... ) "facebook" => array(12) ( ... ) "twitter" => array(12) ( ... ) "livejournal" => array(12) ( ... ) "instagram" => array(12) ( ... ) "occupation_type" => array(12) ( ... ) "occupation_name" => array(12) ( ... ) "rate" => array(13) ( ... ) "count_firstnames_lastnames" => array(13) ( ... ) ) protected _updated_column => NULL protected _created_column => NULL protected _serialize_columns => array(0) protected _primary_key => string(2) "id" protected _primary_key_value => string(8) "15663595" protected _table_names_plural => bool TRUE protected _db => object Database_MySQLi(6)"category" => object Model_Category(35){ protected _connection_id => string(40) "d012da34ee02fd2c23a3776760afb1e9d4e5c681" protected _identifier => string(1) "`" public last_query => string(166) "SELECT `finder_lastname`.`id` AS `id`, `finder_lastname`.`title` AS `title` FROM `finder_lastnames` AS `finder_lastname` WHERE ` …" protected _instance => string(5) "looka" protected _connection => object mysqli(19) { ... } protected _config => array(5) ( ... ) }protected _db_applied => array(0) protected _db_pending => array(0) protected _db_reset => bool TRUE protected _db_builder => NULL protected _with_applied => array(0) protected _cast_data => array(0) protected _errors_filename => string(5) "human" }{ protected _has_many => array(2) ( "tasks" => array(4) ( ... ) "tops" => array(4) ( ... ) ) protected prefix_url => string(9) "/subject/" protected _reload_on_wakeup => bool FALSE protected _has_one => array(0) protected _belongs_to => array(0) protected _load_with => array(0) protected _validation => NULL protected _object => array(4) ( "id" => string(1) "7" "name" => string(10) "Химия" "url" => string(9) "chemistry" "count" => string(6) "799022" ) protected _changed => array(0) protected _original_values => array(4) ( "id" => string(1) "7" "name" => string(10) "Химия" "url" => string(9) "chemistry" "count" => string(6) "799022" ) protected _related => array(0) protected _valid => bool TRUE protected _loaded => bool TRUE protected _saved => bool FALSE protected _sorting => NULL protected _foreign_key_suffix => string(3) "_id" protected _object_name => string(8) "category" protected _object_plural => string(10) "categories" protected _table_name => string(10) "categories" protected _table_columns => array(4) ( "id" => array(13) ( ... ) "name" => array(12) ( ... ) "url" => array(12) ( ... ) "count" => array(13) ( ... ) ) protected _updated_column => NULL protected _created_column => NULL protected _serialize_columns => array(0) protected _primary_key => string(2) "id" protected _primary_key_value => string(1) "7" protected _table_names_plural => bool TRUE protected _db => object Database_MySQLi(6)) protected _valid => bool TRUE protected _loaded => bool TRUE protected _saved => bool FALSE protected _sorting => NULL protected _foreign_key_suffix => string(3) "_id" protected _object_name => string(4) "task" protected _object_plural => string(5) "tasks" protected _table_name => string(5) "tasks" protected _table_columns => array(16) ( "id" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(2) "id" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 1 "display" => string(2) "11" "comment" => string(0) "" "extra" => string(14) "auto_increment" "key" => string(3) "PRI" "privileges" => string(31) "select,insert,update,references" ) "category_id" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(11) "category_id" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 2 "display" => string(2) "11" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "text" => array(12) ( "type" => string(6) "string" "character_maximum_length" => string(5) "65535" "column_name" => string(4) "text" "column_default" => NULL "data_type" => string(4) "text" "is_nullable" => bool FALSE "ordinal_position" => integer 3 "collation_name" => string(18) "utf8mb3_unicode_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "zn_id" => array(13) ( "type" => string(3) "int" "min" => string(20) "-9223372036854775808" "max" => string(19) "9223372036854775807" "column_name" => string(5) "zn_id" "column_default" => string(1) "0" "data_type" => string(6) "bigint" "is_nullable" => bool FALSE "ordinal_position" => integer 4 "display" => string(2) "20" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "date_time" => array(10) ( "type" => string(6) "string" "column_name" => string(9) "date_time" "column_default" => string(19) "current_timestamp()" "data_type" => string(8) "datetime" "is_nullable" => bool FALSE "ordinal_position" => integer 5 "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "views" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(5) "views" "column_default" => string(1) "0" "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 6 "display" => string(2) "11" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "human_id" => array(13) ( "type" => string(3) "int" "min" => string(20) "-9223372036854775808" "max" => string(19) "9223372036854775807" "column_name" => string(8) "human_id" "column_default" => NULL "data_type" => string(6) "bigint" "is_nullable" => bool TRUE "ordinal_position" => integer 7 "display" => string(2) "20" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "ya_spell" => array(12) ( "type" => string(6) "string" "column_name" => string(8) "ya_spell" "column_default" => string(1) "0" "data_type" => string(4) "enum" "is_nullable" => bool FALSE "ordinal_position" => integer 8 "collation_name" => string(18) "utf8mb3_unicode_ci" "options" => array(2) ( 0 => string(1) "0" 1 => string(1) "1" ) "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "category_key" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(12) "category_key" "column_default" => string(1) "0" "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 9 "display" => string(2) "11" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "has_gpt" => array(12) ( "type" => string(6) "string" "column_name" => string(7) "has_gpt" "column_default" => NULL "data_type" => string(4) "enum" "is_nullable" => bool TRUE "ordinal_position" => integer 10 "collation_name" => string(18) "utf8mb3_unicode_ci" "options" => array(4) ( 0 => string(1) "0" 1 => string(1) "1" 2 => string(12) "has_attaches" 3 => string(4) "skip" ) "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "source" => array(12) ( "type" => string(6) "string" "column_name" => string(6) "source" "column_default" => NULL "data_type" => string(4) "enum" "is_nullable" => bool TRUE "ordinal_position" => integer 11 "collation_name" => string(18) "utf8mb3_unicode_ci" "options" => array(1) ( 0 => string(12) "vashurok.com" ) "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "source_id" => array(13) ( "type" => string(3) "int" "min" => string(20) "-9223372036854775808" "max" => string(19) "9223372036854775807" "column_name" => string(9) "source_id" "column_default" => NULL "data_type" => string(6) "bigint" "is_nullable" => bool TRUE "ordinal_position" => integer 12 "display" => string(2) "20" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "text_for_search" => array(12) ( "type" => string(6) "string" "character_maximum_length" => string(5) "65535" "column_name" => string(15) "text_for_search" "column_default" => NULL "data_type" => string(4) "text" "is_nullable" => bool TRUE "ordinal_position" => integer 13 "collation_name" => string(18) "utf8mb3_unicode_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "related" => array(12) ( "type" => string(6) "string" "column_name" => string(7) "related" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 14 "character_maximum_length" => string(4) "1023" "collation_name" => string(18) "utf8mb3_unicode_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "good" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(4) "good" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool TRUE "ordinal_position" => integer 15 "display" => string(2) "11" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "bad" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(3) "bad" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool TRUE "ordinal_position" => integer 16 "display" => string(2) "11" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) ) protected _updated_column => NULL protected _created_column => NULL protected _serialize_columns => array(0) protected _primary_key => string(2) "id" protected _primary_key_value => string(8) "16675451" protected _table_names_plural => bool TRUE protected _db => object Database_MySQLi(6){ protected _connection_id => string(40) "9fdecc117b583662f3b3d15c4c4ac71fc778e18d" protected _identifier => string(1) "`" public last_query => string(185) "SELECT `category`.`id` AS `id`, `category`.`name` AS `name`, `category`.`url` AS `url`, `category`.`count` AS `count` FROM `cate …" protected _instance => string(7) "default" protected _connection => object mysqli(19) { ... } protected _config => array(6) ( ... ) }protected _db_group => NULL protected _db_applied => array(0) protected _db_pending => array(0) protected _db_reset => bool TRUE protected _db_builder => NULL protected _with_applied => array(0) protected _cast_data => array(0) protected _errors_filename => string(8) "category" }{ protected _connection_id => string(40) "9fdecc117b583662f3b3d15c4c4ac71fc778e18d" protected _identifier => string(1) "`" public last_query => string(185) "SELECT `category`.`id` AS `id`, `category`.`name` AS `name`, `category`.`url` AS `url`, `category`.`count` AS `count` FROM `cate …" protected _instance => string(7) "default" protected _connection => object mysqli(19)protected _db_group => NULL protected _db_applied => array(0) protected _db_pending => array(0) protected _db_reset => bool TRUE protected _db_builder => NULL protected _with_applied => array(0) protected _cast_data => array(0) protected _errors_filename => string(4) "task" }{ public affected_rows => NULL public client_info => NULL public client_version => NULL public connect_errno => NULL public connect_error => NULL public errno => NULL public error => NULL public error_list => NULL public field_count => NULL public host_info => NULL public info => NULL public insert_id => NULL public server_info => NULL public server_version => NULL public stat => NULL public sqlstate => NULL public protocol_version => NULL public thread_id => NULL public warning_count => NULL }protected _config => array(6) ( "type" => string(6) "MySQLi" "connection" => array(3) ( "hostname" => string(9) "localhost" "database" => string(9) "uznavalka" "persistent" => bool FALSE ) "table_prefix" => string(0) "" "charset" => string(7) "utf8mb4" "caching" => bool FALSE "profiling" => bool FALSE ) }{ protected _belongs_to => array(2) ( "category" => array(2) ( "model" => string(8) "Category" "foreign_key" => string(11) "category_id" ) "human" => array(2) ( "model" => string(5) "Human" "foreign_key" => string(8) "human_id" ) ) protected _has_many => array(4) ( "answers" => array(4) ( "model" => string(6) "Answer" "foreign_key" => string(7) "task_id" "through" => NULL "far_key" => string(9) "answer_id" ) "tattaches" => array(4) ( "model" => string(7) "Tattach" "foreign_key" => string(7) "task_id" "through" => NULL "far_key" => string(10) "tattach_id" ) "tops" => array(4) ( "model" => string(3) "Top" "foreign_key" => string(7) "task_id" "through" => NULL "far_key" => string(6) "top_id" ) "ipsviews" => array(4) ( "model" => string(7) "Ipsview" "foreign_key" => string(7) "task_id" "through" => NULL "far_key" => string(10) "ipsview_id" ) ) protected _reload_on_wakeup => bool FALSE protected _has_one => array(0) protected _load_with => array(0) protected _validation => NULL protected _object => array(16) ( "id" => string(8) "13655758" "category_id" => string(1) "7" "text" => string(300) "<span class="sg-text sg-text--break-words brn-qpage-next-question-box-content__secondary"> скільки грамів натрію карбонату та во …" "zn_id" => string(8) "40262910" "date_time" => string(19) "2023-07-01 01:22:38" "views" => string(1) "2" "human_id" => string(8) "19740870" "ya_spell" => string(1) "0" "category_key" => string(6) "643914" "has_gpt" => string(1) "1" "source" => NULL "source_id" => NULL "text_for_search" => string(201) "скільки грамів натрію карбонату та води потрібно взяти, щоб виготовити 300 г розчину з масовою часткою солі 25%" "related" => string(121) "["11304668","12053800","11420828","11399677","12715641","11321139","11850519","9623947","11684177","11961224","12953770"]" "good" => NULL "bad" => NULL ) protected _changed => array(0) protected _original_values => array(16) ( "id" => string(8) "13655758" "category_id" => string(1) "7" "text" => string(300) "<span class="sg-text sg-text--break-words brn-qpage-next-question-box-content__secondary"> скільки грамів натрію карбонату та во …" "zn_id" => string(8) "40262910" "date_time" => string(19) "2023-07-01 01:22:38" "views" => string(1) "2" "human_id" => string(8) "19740870" "ya_spell" => string(1) "0" "category_key" => string(6) "643914" "has_gpt" => string(1) "1" "source" => NULL "source_id" => NULL "text_for_search" => string(201) "скільки грамів натрію карбонату та води потрібно взяти, щоб виготовити 300 г розчину з масовою часткою солі 25%" "related" => string(121) "["11304668","12053800","11420828","11399677","12715641","11321139","11850519","9623947","11684177","11961224","12953770"]" "good" => NULL "bad" => NULL ) protected _related => array(2) ( "human" => object Model_Human(34)5 => object Model_Task(34){ protected _db_group => string(5) "looka" protected _has_many => array(4) ( "universities" => array(5) ( ... ) "humans_universities" => array(4) ( ... ) "schools" => array(5) ( ... ) "humans_schools" => array(4) ( ... ) ) protected _belongs_to => array(4) ( "lastname" => array(2) ( ... ) "firstname" => array(2) ( ... ) "country" => array(2) ( ... ) "city" => array(2) ( ... ) ) protected _reload_on_wakeup => bool FALSE protected _has_one => array(0) protected _load_with => array(0) protected _validation => NULL protected _object => array(21) ( "id" => string(8) "19740870" "lastname_id" => string(5) "62469" "firstname_id" => string(3) "441" "nickname" => string(0) "" "vk_id" => string(9) "278370020" "bdate" => string(10) "2004-11-21" "info" => NULL "photo" => string(67) "https://sun9-6.userapi.com/c840720/v840720834/631a8/TRFu3CVfgGo.jpg" "city_id" => string(3) "147" "country_id" => string(1) "1" "home_town" => NULL "home_phone" => string(20) "Надо скажу!" "skype" => NULL "facebook" => NULL "twitter" => NULL "livejournal" => NULL "instagram" => NULL "occupation_type" => string(6) "school" "occupation_name" => string(48) "Половинская средняя школа" "rate" => string(2) "13" "count_firstnames_lastnames" => NULL ) protected _changed => array(0) protected _original_values => array(21) ( "id" => string(8) "19740870" "lastname_id" => string(5) "62469" "firstname_id" => string(3) "441" "nickname" => string(0) "" "vk_id" => string(9) "278370020" "bdate" => string(10) "2004-11-21" "info" => NULL "photo" => string(67) "https://sun9-6.userapi.com/c840720/v840720834/631a8/TRFu3CVfgGo.jpg" "city_id" => string(3) "147" "country_id" => string(1) "1" "home_town" => NULL "home_phone" => string(20) "Надо скажу!" "skype" => NULL "facebook" => NULL "twitter" => NULL "livejournal" => NULL "instagram" => NULL "occupation_type" => string(6) "school" "occupation_name" => string(48) "Половинская средняя школа" "rate" => string(2) "13" "count_firstnames_lastnames" => NULL ) protected _related => array(2) ( "lastname" => object Model_Lastname(34) { ... } "firstname" => object Model_Firstname(34) { ... } ) protected _valid => bool TRUE protected _loaded => bool TRUE protected _saved => bool FALSE protected _sorting => NULL protected _foreign_key_suffix => string(3) "_id" protected _object_name => string(5) "human" protected _object_plural => string(6) "humans" protected _table_name => string(6) "humans" protected _table_columns => array(21) ( "id" => array(13) ( ... ) "lastname_id" => array(13) ( ... ) "firstname_id" => array(13) ( ... ) "nickname" => array(12) ( ... ) "vk_id" => array(13) ( ... ) "bdate" => array(10) ( ... ) "info" => array(12) ( ... ) "photo" => array(12) ( ... ) "city_id" => array(13) ( ... ) "country_id" => array(13) ( ... ) "home_town" => array(12) ( ... ) "home_phone" => array(12) ( ... ) "skype" => array(12) ( ... ) "facebook" => array(12) ( ... ) "twitter" => array(12) ( ... ) "livejournal" => array(12) ( ... ) "instagram" => array(12) ( ... ) "occupation_type" => array(12) ( ... ) "occupation_name" => array(12) ( ... ) "rate" => array(13) ( ... ) "count_firstnames_lastnames" => array(13) ( ... ) ) protected _updated_column => NULL protected _created_column => NULL protected _serialize_columns => array(0) protected _primary_key => string(2) "id" protected _primary_key_value => string(8) "19740870" protected _table_names_plural => bool TRUE protected _db => object Database_MySQLi(6)"category" => object Model_Category(35){ protected _connection_id => string(40) "d012da34ee02fd2c23a3776760afb1e9d4e5c681" protected _identifier => string(1) "`" public last_query => string(166) "SELECT `finder_lastname`.`id` AS `id`, `finder_lastname`.`title` AS `title` FROM `finder_lastnames` AS `finder_lastname` WHERE ` …" protected _instance => string(5) "looka" protected _connection => object mysqli(19) { ... } protected _config => array(5) ( ... ) }protected _db_applied => array(0) protected _db_pending => array(0) protected _db_reset => bool TRUE protected _db_builder => NULL protected _with_applied => array(0) protected _cast_data => array(0) protected _errors_filename => string(5) "human" }{ protected _has_many => array(2) ( "tasks" => array(4) ( ... ) "tops" => array(4) ( ... ) ) protected prefix_url => string(9) "/subject/" protected _reload_on_wakeup => bool FALSE protected _has_one => array(0) protected _belongs_to => array(0) protected _load_with => array(0) protected _validation => NULL protected _object => array(4) ( "id" => string(1) "7" "name" => string(10) "Химия" "url" => string(9) "chemistry" "count" => string(6) "799022" ) protected _changed => array(0) protected _original_values => array(4) ( "id" => string(1) "7" "name" => string(10) "Химия" "url" => string(9) "chemistry" "count" => string(6) "799022" ) protected _related => array(0) protected _valid => bool TRUE protected _loaded => bool TRUE protected _saved => bool FALSE protected _sorting => NULL protected _foreign_key_suffix => string(3) "_id" protected _object_name => string(8) "category" protected _object_plural => string(10) "categories" protected _table_name => string(10) "categories" protected _table_columns => array(4) ( "id" => array(13) ( ... ) "name" => array(12) ( ... ) "url" => array(12) ( ... ) "count" => array(13) ( ... ) ) protected _updated_column => NULL protected _created_column => NULL protected _serialize_columns => array(0) protected _primary_key => string(2) "id" protected _primary_key_value => string(1) "7" protected _table_names_plural => bool TRUE protected _db => object Database_MySQLi(6)) protected _valid => bool TRUE protected _loaded => bool TRUE protected _saved => bool FALSE protected _sorting => NULL protected _foreign_key_suffix => string(3) "_id" protected _object_name => string(4) "task" protected _object_plural => string(5) "tasks" protected _table_name => string(5) "tasks" protected _table_columns => array(16) ( "id" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(2) "id" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 1 "display" => string(2) "11" "comment" => string(0) "" "extra" => string(14) "auto_increment" "key" => string(3) "PRI" "privileges" => string(31) "select,insert,update,references" ) "category_id" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(11) "category_id" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 2 "display" => string(2) "11" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "text" => array(12) ( "type" => string(6) "string" "character_maximum_length" => string(5) "65535" "column_name" => string(4) "text" "column_default" => NULL "data_type" => string(4) "text" "is_nullable" => bool FALSE "ordinal_position" => integer 3 "collation_name" => string(18) "utf8mb3_unicode_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "zn_id" => array(13) ( "type" => string(3) "int" "min" => string(20) "-9223372036854775808" "max" => string(19) "9223372036854775807" "column_name" => string(5) "zn_id" "column_default" => string(1) "0" "data_type" => string(6) "bigint" "is_nullable" => bool FALSE "ordinal_position" => integer 4 "display" => string(2) "20" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "date_time" => array(10) ( "type" => string(6) "string" "column_name" => string(9) "date_time" "column_default" => string(19) "current_timestamp()" "data_type" => string(8) "datetime" "is_nullable" => bool FALSE "ordinal_position" => integer 5 "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "views" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(5) "views" "column_default" => string(1) "0" "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 6 "display" => string(2) "11" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "human_id" => array(13) ( "type" => string(3) "int" "min" => string(20) "-9223372036854775808" "max" => string(19) "9223372036854775807" "column_name" => string(8) "human_id" "column_default" => NULL "data_type" => string(6) "bigint" "is_nullable" => bool TRUE "ordinal_position" => integer 7 "display" => string(2) "20" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "ya_spell" => array(12) ( "type" => string(6) "string" "column_name" => string(8) "ya_spell" "column_default" => string(1) "0" "data_type" => string(4) "enum" "is_nullable" => bool FALSE "ordinal_position" => integer 8 "collation_name" => string(18) "utf8mb3_unicode_ci" "options" => array(2) ( 0 => string(1) "0" 1 => string(1) "1" ) "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "category_key" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(12) "category_key" "column_default" => string(1) "0" "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 9 "display" => string(2) "11" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "has_gpt" => array(12) ( "type" => string(6) "string" "column_name" => string(7) "has_gpt" "column_default" => NULL "data_type" => string(4) "enum" "is_nullable" => bool TRUE "ordinal_position" => integer 10 "collation_name" => string(18) "utf8mb3_unicode_ci" "options" => array(4) ( 0 => string(1) "0" 1 => string(1) "1" 2 => string(12) "has_attaches" 3 => string(4) "skip" ) "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "source" => array(12) ( "type" => string(6) "string" "column_name" => string(6) "source" "column_default" => NULL "data_type" => string(4) "enum" "is_nullable" => bool TRUE "ordinal_position" => integer 11 "collation_name" => string(18) "utf8mb3_unicode_ci" "options" => array(1) ( 0 => string(12) "vashurok.com" ) "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "source_id" => array(13) ( "type" => string(3) "int" "min" => string(20) "-9223372036854775808" "max" => string(19) "9223372036854775807" "column_name" => string(9) "source_id" "column_default" => NULL "data_type" => string(6) "bigint" "is_nullable" => bool TRUE "ordinal_position" => integer 12 "display" => string(2) "20" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "text_for_search" => array(12) ( "type" => string(6) "string" "character_maximum_length" => string(5) "65535" "column_name" => string(15) "text_for_search" "column_default" => NULL "data_type" => string(4) "text" "is_nullable" => bool TRUE "ordinal_position" => integer 13 "collation_name" => string(18) "utf8mb3_unicode_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "related" => array(12) ( "type" => string(6) "string" "column_name" => string(7) "related" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 14 "character_maximum_length" => string(4) "1023" "collation_name" => string(18) "utf8mb3_unicode_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "good" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(4) "good" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool TRUE "ordinal_position" => integer 15 "display" => string(2) "11" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "bad" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(3) "bad" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool TRUE "ordinal_position" => integer 16 "display" => string(2) "11" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) ) protected _updated_column => NULL protected _created_column => NULL protected _serialize_columns => array(0) protected _primary_key => string(2) "id" protected _primary_key_value => string(8) "13655758" protected _table_names_plural => bool TRUE protected _db => object Database_MySQLi(6){ protected _connection_id => string(40) "9fdecc117b583662f3b3d15c4c4ac71fc778e18d" protected _identifier => string(1) "`" public last_query => string(185) "SELECT `category`.`id` AS `id`, `category`.`name` AS `name`, `category`.`url` AS `url`, `category`.`count` AS `count` FROM `cate …" protected _instance => string(7) "default" protected _connection => object mysqli(19) { ... } protected _config => array(6) ( ... ) }protected _db_group => NULL protected _db_applied => array(0) protected _db_pending => array(0) protected _db_reset => bool TRUE protected _db_builder => NULL protected _with_applied => array(0) protected _cast_data => array(0) protected _errors_filename => string(8) "category" }{ protected _connection_id => string(40) "9fdecc117b583662f3b3d15c4c4ac71fc778e18d" protected _identifier => string(1) "`" public last_query => string(185) "SELECT `category`.`id` AS `id`, `category`.`name` AS `name`, `category`.`url` AS `url`, `category`.`count` AS `count` FROM `cate …" protected _instance => string(7) "default" protected _connection => object mysqli(19)protected _db_group => NULL protected _db_applied => array(0) protected _db_pending => array(0) protected _db_reset => bool TRUE protected _db_builder => NULL protected _with_applied => array(0) protected _cast_data => array(0) protected _errors_filename => string(4) "task" }{ public affected_rows => NULL public client_info => NULL public client_version => NULL public connect_errno => NULL public connect_error => NULL public errno => NULL public error => NULL public error_list => NULL public field_count => NULL public host_info => NULL public info => NULL public insert_id => NULL public server_info => NULL public server_version => NULL public stat => NULL public sqlstate => NULL public protocol_version => NULL public thread_id => NULL public warning_count => NULL }protected _config => array(6) ( "type" => string(6) "MySQLi" "connection" => array(3) ( "hostname" => string(9) "localhost" "database" => string(9) "uznavalka" "persistent" => bool FALSE ) "table_prefix" => string(0) "" "charset" => string(7) "utf8mb4" "caching" => bool FALSE "profiling" => bool FALSE ) }{ protected _belongs_to => array(2) ( "category" => array(2) ( "model" => string(8) "Category" "foreign_key" => string(11) "category_id" ) "human" => array(2) ( "model" => string(5) "Human" "foreign_key" => string(8) "human_id" ) ) protected _has_many => array(4) ( "answers" => array(4) ( "model" => string(6) "Answer" "foreign_key" => string(7) "task_id" "through" => NULL "far_key" => string(9) "answer_id" ) "tattaches" => array(4) ( "model" => string(7) "Tattach" "foreign_key" => string(7) "task_id" "through" => NULL "far_key" => string(10) "tattach_id" ) "tops" => array(4) ( "model" => string(3) "Top" "foreign_key" => string(7) "task_id" "through" => NULL "far_key" => string(6) "top_id" ) "ipsviews" => array(4) ( "model" => string(7) "Ipsview" "foreign_key" => string(7) "task_id" "through" => NULL "far_key" => string(10) "ipsview_id" ) ) protected _reload_on_wakeup => bool FALSE protected _has_one => array(0) protected _load_with => array(0) protected _validation => NULL protected _object => array(16) ( "id" => string(8) "16768629" "category_id" => string(1) "7" "text" => string(279) "<span class="sg-text sg-text--large sg-text--bold sg-text--break-words brn-qpage-next-question-box-content__primary"> Плотность …" "zn_id" => string(8) "53905835" "date_time" => string(19) "2023-12-11 15:54:01" "views" => string(1) "5" "human_id" => string(8) "45430008" "ya_spell" => string(1) "0" "category_key" => string(6) "807968" "has_gpt" => string(1) "1" "source" => NULL "source_id" => NULL "text_for_search" => string(153) "Плотность газа (н. у) равна 1,964 г/дм3. Чему равна его относительная плотность по гелию?" "related" => string(115) "["5627434","9760947","15767002","8373576","8169876","13578701","3690788","13495168","4803913","16381419","9069156"]" "good" => NULL "bad" => NULL ) protected _changed => array(0) protected _original_values => array(16) ( "id" => string(8) "16768629" "category_id" => string(1) "7" "text" => string(279) "<span class="sg-text sg-text--large sg-text--bold sg-text--break-words brn-qpage-next-question-box-content__primary"> Плотность …" "zn_id" => string(8) "53905835" "date_time" => string(19) "2023-12-11 15:54:01" "views" => string(1) "5" "human_id" => string(8) "45430008" "ya_spell" => string(1) "0" "category_key" => string(6) "807968" "has_gpt" => string(1) "1" "source" => NULL "source_id" => NULL "text_for_search" => string(153) "Плотность газа (н. у) равна 1,964 г/дм3. Чему равна его относительная плотность по гелию?" "related" => string(115) "["5627434","9760947","15767002","8373576","8169876","13578701","3690788","13495168","4803913","16381419","9069156"]" "good" => NULL "bad" => NULL ) protected _related => array(2) ( "human" => object Model_Human(34)6 => object Model_Task(34){ protected _db_group => string(5) "looka" protected _has_many => array(4) ( "universities" => array(5) ( ... ) "humans_universities" => array(4) ( ... ) "schools" => array(5) ( ... ) "humans_schools" => array(4) ( ... ) ) protected _belongs_to => array(4) ( "lastname" => array(2) ( ... ) "firstname" => array(2) ( ... ) "country" => array(2) ( ... ) "city" => array(2) ( ... ) ) protected _reload_on_wakeup => bool FALSE protected _has_one => array(0) protected _load_with => array(0) protected _validation => NULL protected _object => array(21) ( "id" => string(8) "45430008" "lastname_id" => string(5) "27069" "firstname_id" => string(5) "11435" "nickname" => string(0) "" "vk_id" => string(9) "246081689" "bdate" => string(10) "2004-10-09" "info" => NULL "photo" => string(63) "https://pp.userapi.com/c629313/v629313689/31cf6/dWs1Z4nnAYU.jpg" "city_id" => string(4) "3214" "country_id" => string(1) "1" "home_town" => string(0) "" "home_phone" => string(0) "" "skype" => NULL "facebook" => NULL "twitter" => NULL "livejournal" => NULL "instagram" => NULL "occupation_type" => NULL "occupation_name" => NULL "rate" => string(2) "13" "count_firstnames_lastnames" => NULL ) protected _changed => array(0) protected _original_values => array(21) ( "id" => string(8) "45430008" "lastname_id" => string(5) "27069" "firstname_id" => string(5) "11435" "nickname" => string(0) "" "vk_id" => string(9) "246081689" "bdate" => string(10) "2004-10-09" "info" => NULL "photo" => string(63) "https://pp.userapi.com/c629313/v629313689/31cf6/dWs1Z4nnAYU.jpg" "city_id" => string(4) "3214" "country_id" => string(1) "1" "home_town" => string(0) "" "home_phone" => string(0) "" "skype" => NULL "facebook" => NULL "twitter" => NULL "livejournal" => NULL "instagram" => NULL "occupation_type" => NULL "occupation_name" => NULL "rate" => string(2) "13" "count_firstnames_lastnames" => NULL ) protected _related => array(2) ( "lastname" => object Model_Lastname(34) { ... } "firstname" => object Model_Firstname(34) { ... } ) protected _valid => bool TRUE protected _loaded => bool TRUE protected _saved => bool FALSE protected _sorting => NULL protected _foreign_key_suffix => string(3) "_id" protected _object_name => string(5) "human" protected _object_plural => string(6) "humans" protected _table_name => string(6) "humans" protected _table_columns => array(21) ( "id" => array(13) ( ... ) "lastname_id" => array(13) ( ... ) "firstname_id" => array(13) ( ... ) "nickname" => array(12) ( ... ) "vk_id" => array(13) ( ... ) "bdate" => array(10) ( ... ) "info" => array(12) ( ... ) "photo" => array(12) ( ... ) "city_id" => array(13) ( ... ) "country_id" => array(13) ( ... ) "home_town" => array(12) ( ... ) "home_phone" => array(12) ( ... ) "skype" => array(12) ( ... ) "facebook" => array(12) ( ... ) "twitter" => array(12) ( ... ) "livejournal" => array(12) ( ... ) "instagram" => array(12) ( ... ) "occupation_type" => array(12) ( ... ) "occupation_name" => array(12) ( ... ) "rate" => array(13) ( ... ) "count_firstnames_lastnames" => array(13) ( ... ) ) protected _updated_column => NULL protected _created_column => NULL protected _serialize_columns => array(0) protected _primary_key => string(2) "id" protected _primary_key_value => string(8) "45430008" protected _table_names_plural => bool TRUE protected _db => object Database_MySQLi(6)"category" => object Model_Category(35){ protected _connection_id => string(40) "d012da34ee02fd2c23a3776760afb1e9d4e5c681" protected _identifier => string(1) "`" public last_query => string(166) "SELECT `finder_lastname`.`id` AS `id`, `finder_lastname`.`title` AS `title` FROM `finder_lastnames` AS `finder_lastname` WHERE ` …" protected _instance => string(5) "looka" protected _connection => object mysqli(19) { ... } protected _config => array(5) ( ... ) }protected _db_applied => array(0) protected _db_pending => array(0) protected _db_reset => bool TRUE protected _db_builder => NULL protected _with_applied => array(0) protected _cast_data => array(0) protected _errors_filename => string(5) "human" }{ protected _has_many => array(2) ( "tasks" => array(4) ( ... ) "tops" => array(4) ( ... ) ) protected prefix_url => string(9) "/subject/" protected _reload_on_wakeup => bool FALSE protected _has_one => array(0) protected _belongs_to => array(0) protected _load_with => array(0) protected _validation => NULL protected _object => array(4) ( "id" => string(1) "7" "name" => string(10) "Химия" "url" => string(9) "chemistry" "count" => string(6) "799022" ) protected _changed => array(0) protected _original_values => array(4) ( "id" => string(1) "7" "name" => string(10) "Химия" "url" => string(9) "chemistry" "count" => string(6) "799022" ) protected _related => array(0) protected _valid => bool TRUE protected _loaded => bool TRUE protected _saved => bool FALSE protected _sorting => NULL protected _foreign_key_suffix => string(3) "_id" protected _object_name => string(8) "category" protected _object_plural => string(10) "categories" protected _table_name => string(10) "categories" protected _table_columns => array(4) ( "id" => array(13) ( ... ) "name" => array(12) ( ... ) "url" => array(12) ( ... ) "count" => array(13) ( ... ) ) protected _updated_column => NULL protected _created_column => NULL protected _serialize_columns => array(0) protected _primary_key => string(2) "id" protected _primary_key_value => string(1) "7" protected _table_names_plural => bool TRUE protected _db => object Database_MySQLi(6)) protected _valid => bool TRUE protected _loaded => bool TRUE protected _saved => bool FALSE protected _sorting => NULL protected _foreign_key_suffix => string(3) "_id" protected _object_name => string(4) "task" protected _object_plural => string(5) "tasks" protected _table_name => string(5) "tasks" protected _table_columns => array(16) ( "id" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(2) "id" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 1 "display" => string(2) "11" "comment" => string(0) "" "extra" => string(14) "auto_increment" "key" => string(3) "PRI" "privileges" => string(31) "select,insert,update,references" ) "category_id" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(11) "category_id" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 2 "display" => string(2) "11" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "text" => array(12) ( "type" => string(6) "string" "character_maximum_length" => string(5) "65535" "column_name" => string(4) "text" "column_default" => NULL "data_type" => string(4) "text" "is_nullable" => bool FALSE "ordinal_position" => integer 3 "collation_name" => string(18) "utf8mb3_unicode_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "zn_id" => array(13) ( "type" => string(3) "int" "min" => string(20) "-9223372036854775808" "max" => string(19) "9223372036854775807" "column_name" => string(5) "zn_id" "column_default" => string(1) "0" "data_type" => string(6) "bigint" "is_nullable" => bool FALSE "ordinal_position" => integer 4 "display" => string(2) "20" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "date_time" => array(10) ( "type" => string(6) "string" "column_name" => string(9) "date_time" "column_default" => string(19) "current_timestamp()" "data_type" => string(8) "datetime" "is_nullable" => bool FALSE "ordinal_position" => integer 5 "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "views" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(5) "views" "column_default" => string(1) "0" "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 6 "display" => string(2) "11" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "human_id" => array(13) ( "type" => string(3) "int" "min" => string(20) "-9223372036854775808" "max" => string(19) "9223372036854775807" "column_name" => string(8) "human_id" "column_default" => NULL "data_type" => string(6) "bigint" "is_nullable" => bool TRUE "ordinal_position" => integer 7 "display" => string(2) "20" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "ya_spell" => array(12) ( "type" => string(6) "string" "column_name" => string(8) "ya_spell" "column_default" => string(1) "0" "data_type" => string(4) "enum" "is_nullable" => bool FALSE "ordinal_position" => integer 8 "collation_name" => string(18) "utf8mb3_unicode_ci" "options" => array(2) ( 0 => string(1) "0" 1 => string(1) "1" ) "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "category_key" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(12) "category_key" "column_default" => string(1) "0" "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 9 "display" => string(2) "11" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "has_gpt" => array(12) ( "type" => string(6) "string" "column_name" => string(7) "has_gpt" "column_default" => NULL "data_type" => string(4) "enum" "is_nullable" => bool TRUE "ordinal_position" => integer 10 "collation_name" => string(18) "utf8mb3_unicode_ci" "options" => array(4) ( 0 => string(1) "0" 1 => string(1) "1" 2 => string(12) "has_attaches" 3 => string(4) "skip" ) "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "source" => array(12) ( "type" => string(6) "string" "column_name" => string(6) "source" "column_default" => NULL "data_type" => string(4) "enum" "is_nullable" => bool TRUE "ordinal_position" => integer 11 "collation_name" => string(18) "utf8mb3_unicode_ci" "options" => array(1) ( 0 => string(12) "vashurok.com" ) "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "source_id" => array(13) ( "type" => string(3) "int" "min" => string(20) "-9223372036854775808" "max" => string(19) "9223372036854775807" "column_name" => string(9) "source_id" "column_default" => NULL "data_type" => string(6) "bigint" "is_nullable" => bool TRUE "ordinal_position" => integer 12 "display" => string(2) "20" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "text_for_search" => array(12) ( "type" => string(6) "string" "character_maximum_length" => string(5) "65535" "column_name" => string(15) "text_for_search" "column_default" => NULL "data_type" => string(4) "text" "is_nullable" => bool TRUE "ordinal_position" => integer 13 "collation_name" => string(18) "utf8mb3_unicode_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "related" => array(12) ( "type" => string(6) "string" "column_name" => string(7) "related" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 14 "character_maximum_length" => string(4) "1023" "collation_name" => string(18) "utf8mb3_unicode_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "good" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(4) "good" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool TRUE "ordinal_position" => integer 15 "display" => string(2) "11" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "bad" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(3) "bad" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool TRUE "ordinal_position" => integer 16 "display" => string(2) "11" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) ) protected _updated_column => NULL protected _created_column => NULL protected _serialize_columns => array(0) protected _primary_key => string(2) "id" protected _primary_key_value => string(8) "16768629" protected _table_names_plural => bool TRUE protected _db => object Database_MySQLi(6){ protected _connection_id => string(40) "9fdecc117b583662f3b3d15c4c4ac71fc778e18d" protected _identifier => string(1) "`" public last_query => string(185) "SELECT `category`.`id` AS `id`, `category`.`name` AS `name`, `category`.`url` AS `url`, `category`.`count` AS `count` FROM `cate …" protected _instance => string(7) "default" protected _connection => object mysqli(19) { ... } protected _config => array(6) ( ... ) }protected _db_group => NULL protected _db_applied => array(0) protected _db_pending => array(0) protected _db_reset => bool TRUE protected _db_builder => NULL protected _with_applied => array(0) protected _cast_data => array(0) protected _errors_filename => string(8) "category" }{ protected _connection_id => string(40) "9fdecc117b583662f3b3d15c4c4ac71fc778e18d" protected _identifier => string(1) "`" public last_query => string(185) "SELECT `category`.`id` AS `id`, `category`.`name` AS `name`, `category`.`url` AS `url`, `category`.`count` AS `count` FROM `cate …" protected _instance => string(7) "default" protected _connection => object mysqli(19)protected _db_group => NULL protected _db_applied => array(0) protected _db_pending => array(0) protected _db_reset => bool TRUE protected _db_builder => NULL protected _with_applied => array(0) protected _cast_data => array(0) protected _errors_filename => string(4) "task" }{ public affected_rows => NULL public client_info => NULL public client_version => NULL public connect_errno => NULL public connect_error => NULL public errno => NULL public error => NULL public error_list => NULL public field_count => NULL public host_info => NULL public info => NULL public insert_id => NULL public server_info => NULL public server_version => NULL public stat => NULL public sqlstate => NULL public protocol_version => NULL public thread_id => NULL public warning_count => NULL }protected _config => array(6) ( "type" => string(6) "MySQLi" "connection" => array(3) ( "hostname" => string(9) "localhost" "database" => string(9) "uznavalka" "persistent" => bool FALSE ) "table_prefix" => string(0) "" "charset" => string(7) "utf8mb4" "caching" => bool FALSE "profiling" => bool FALSE ) }{ protected _belongs_to => array(2) ( "category" => array(2) ( "model" => string(8) "Category" "foreign_key" => string(11) "category_id" ) "human" => array(2) ( "model" => string(5) "Human" "foreign_key" => string(8) "human_id" ) ) protected _has_many => array(4) ( "answers" => array(4) ( "model" => string(6) "Answer" "foreign_key" => string(7) "task_id" "through" => NULL "far_key" => string(9) "answer_id" ) "tattaches" => array(4) ( "model" => string(7) "Tattach" "foreign_key" => string(7) "task_id" "through" => NULL "far_key" => string(10) "tattach_id" ) "tops" => array(4) ( "model" => string(3) "Top" "foreign_key" => string(7) "task_id" "through" => NULL "far_key" => string(6) "top_id" ) "ipsviews" => array(4) ( "model" => string(7) "Ipsview" "foreign_key" => string(7) "task_id" "through" => NULL "far_key" => string(10) "ipsview_id" ) ) protected _reload_on_wakeup => bool FALSE protected _has_one => array(0) protected _load_with => array(0) protected _validation => NULL protected _object => array(16) ( "id" => string(8) "11100414" "category_id" => string(1) "7" "text" => string(238) "<span class="sg-text sg-text--large sg-text--bold sg-text--break-words brn-qpage-next-question-box-content__primary"> Написать п …" "zn_id" => string(8) "40448283" "date_time" => string(19) "2023-05-16 13:21:41" "views" => string(2) "90" "human_id" => string(8) "65153551" "ya_spell" => string(1) "0" "category_key" => string(6) "507145" "has_gpt" => string(1) "1" "source" => NULL "source_id" => NULL "text_for_search" => string(112) "Написать полное и сокращённое ионное уравнение KOH + HCL = KCL + H2O" "related" => NULL "good" => NULL "bad" => NULL ) protected _changed => array(0) protected _original_values => array(16) ( "id" => string(8) "11100414" "category_id" => string(1) "7" "text" => string(238) "<span class="sg-text sg-text--large sg-text--bold sg-text--break-words brn-qpage-next-question-box-content__primary"> Написать п …" "zn_id" => string(8) "40448283" "date_time" => string(19) "2023-05-16 13:21:41" "views" => string(2) "90" "human_id" => string(8) "65153551" "ya_spell" => string(1) "0" "category_key" => string(6) "507145" "has_gpt" => string(1) "1" "source" => NULL "source_id" => NULL "text_for_search" => string(112) "Написать полное и сокращённое ионное уравнение KOH + HCL = KCL + H2O" "related" => NULL "good" => NULL "bad" => NULL ) protected _related => array(2) ( "human" => object Model_Human(34)7 => object Model_Task(34){ protected _db_group => string(5) "looka" protected _has_many => array(4) ( "universities" => array(5) ( ... ) "humans_universities" => array(4) ( ... ) "schools" => array(5) ( ... ) "humans_schools" => array(4) ( ... ) ) protected _belongs_to => array(4) ( "lastname" => array(2) ( ... ) "firstname" => array(2) ( ... ) "country" => array(2) ( ... ) "city" => array(2) ( ... ) ) protected _reload_on_wakeup => bool FALSE protected _has_one => array(0) protected _load_with => array(0) protected _validation => NULL protected _object => array(21) ( "id" => string(8) "65153551" "lastname_id" => string(5) "14830" "firstname_id" => string(3) "149" "nickname" => string(0) "" "vk_id" => string(9) "221232596" "bdate" => string(10) "2004-02-28" "info" => NULL "photo" => string(63) "https://pp.userapi.com/c840336/v840336825/413f1/xXzVytFWIC8.jpg" "city_id" => string(5) "21855" "country_id" => string(1) "1" "home_town" => string(18) "Мичуринск" "home_phone" => string(0) "" "skype" => NULL "facebook" => NULL "twitter" => NULL "livejournal" => NULL "instagram" => NULL "occupation_type" => string(6) "school" "occupation_name" => string(48) "Борщевская основная школа" "rate" => string(2) "15" "count_firstnames_lastnames" => NULL ) protected _changed => array(0) protected _original_values => array(21) ( "id" => string(8) "65153551" "lastname_id" => string(5) "14830" "firstname_id" => string(3) "149" "nickname" => string(0) "" "vk_id" => string(9) "221232596" "bdate" => string(10) "2004-02-28" "info" => NULL "photo" => string(63) "https://pp.userapi.com/c840336/v840336825/413f1/xXzVytFWIC8.jpg" "city_id" => string(5) "21855" "country_id" => string(1) "1" "home_town" => string(18) "Мичуринск" "home_phone" => string(0) "" "skype" => NULL "facebook" => NULL "twitter" => NULL "livejournal" => NULL "instagram" => NULL "occupation_type" => string(6) "school" "occupation_name" => string(48) "Борщевская основная школа" "rate" => string(2) "15" "count_firstnames_lastnames" => NULL ) protected _related => array(2) ( "lastname" => object Model_Lastname(34) { ... } "firstname" => object Model_Firstname(34) { ... } ) protected _valid => bool TRUE protected _loaded => bool TRUE protected _saved => bool FALSE protected _sorting => NULL protected _foreign_key_suffix => string(3) "_id" protected _object_name => string(5) "human" protected _object_plural => string(6) "humans" protected _table_name => string(6) "humans" protected _table_columns => array(21) ( "id" => array(13) ( ... ) "lastname_id" => array(13) ( ... ) "firstname_id" => array(13) ( ... ) "nickname" => array(12) ( ... ) "vk_id" => array(13) ( ... ) "bdate" => array(10) ( ... ) "info" => array(12) ( ... ) "photo" => array(12) ( ... ) "city_id" => array(13) ( ... ) "country_id" => array(13) ( ... ) "home_town" => array(12) ( ... ) "home_phone" => array(12) ( ... ) "skype" => array(12) ( ... ) "facebook" => array(12) ( ... ) "twitter" => array(12) ( ... ) "livejournal" => array(12) ( ... ) "instagram" => array(12) ( ... ) "occupation_type" => array(12) ( ... ) "occupation_name" => array(12) ( ... ) "rate" => array(13) ( ... ) "count_firstnames_lastnames" => array(13) ( ... ) ) protected _updated_column => NULL protected _created_column => NULL protected _serialize_columns => array(0) protected _primary_key => string(2) "id" protected _primary_key_value => string(8) "65153551" protected _table_names_plural => bool TRUE protected _db => object Database_MySQLi(6)"category" => object Model_Category(35){ protected _connection_id => string(40) "d012da34ee02fd2c23a3776760afb1e9d4e5c681" protected _identifier => string(1) "`" public last_query => string(166) "SELECT `finder_lastname`.`id` AS `id`, `finder_lastname`.`title` AS `title` FROM `finder_lastnames` AS `finder_lastname` WHERE ` …" protected _instance => string(5) "looka" protected _connection => object mysqli(19) { ... } protected _config => array(5) ( ... ) }protected _db_applied => array(0) protected _db_pending => array(0) protected _db_reset => bool TRUE protected _db_builder => NULL protected _with_applied => array(0) protected _cast_data => array(0) protected _errors_filename => string(5) "human" }{ protected _has_many => array(2) ( "tasks" => array(4) ( ... ) "tops" => array(4) ( ... ) ) protected prefix_url => string(9) "/subject/" protected _reload_on_wakeup => bool FALSE protected _has_one => array(0) protected _belongs_to => array(0) protected _load_with => array(0) protected _validation => NULL protected _object => array(4) ( "id" => string(1) "7" "name" => string(10) "Химия" "url" => string(9) "chemistry" "count" => string(6) "799022" ) protected _changed => array(0) protected _original_values => array(4) ( "id" => string(1) "7" "name" => string(10) "Химия" "url" => string(9) "chemistry" "count" => string(6) "799022" ) protected _related => array(0) protected _valid => bool TRUE protected _loaded => bool TRUE protected _saved => bool FALSE protected _sorting => NULL protected _foreign_key_suffix => string(3) "_id" protected _object_name => string(8) "category" protected _object_plural => string(10) "categories" protected _table_name => string(10) "categories" protected _table_columns => array(4) ( "id" => array(13) ( ... ) "name" => array(12) ( ... ) "url" => array(12) ( ... ) "count" => array(13) ( ... ) ) protected _updated_column => NULL protected _created_column => NULL protected _serialize_columns => array(0) protected _primary_key => string(2) "id" protected _primary_key_value => string(1) "7" protected _table_names_plural => bool TRUE protected _db => object Database_MySQLi(6)) protected _valid => bool TRUE protected _loaded => bool TRUE protected _saved => bool FALSE protected _sorting => NULL protected _foreign_key_suffix => string(3) "_id" protected _object_name => string(4) "task" protected _object_plural => string(5) "tasks" protected _table_name => string(5) "tasks" protected _table_columns => array(16) ( "id" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(2) "id" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 1 "display" => string(2) "11" "comment" => string(0) "" "extra" => string(14) "auto_increment" "key" => string(3) "PRI" "privileges" => string(31) "select,insert,update,references" ) "category_id" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(11) "category_id" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 2 "display" => string(2) "11" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "text" => array(12) ( "type" => string(6) "string" "character_maximum_length" => string(5) "65535" "column_name" => string(4) "text" "column_default" => NULL "data_type" => string(4) "text" "is_nullable" => bool FALSE "ordinal_position" => integer 3 "collation_name" => string(18) "utf8mb3_unicode_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "zn_id" => array(13) ( "type" => string(3) "int" "min" => string(20) "-9223372036854775808" "max" => string(19) "9223372036854775807" "column_name" => string(5) "zn_id" "column_default" => string(1) "0" "data_type" => string(6) "bigint" "is_nullable" => bool FALSE "ordinal_position" => integer 4 "display" => string(2) "20" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "date_time" => array(10) ( "type" => string(6) "string" "column_name" => string(9) "date_time" "column_default" => string(19) "current_timestamp()" "data_type" => string(8) "datetime" "is_nullable" => bool FALSE "ordinal_position" => integer 5 "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "views" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(5) "views" "column_default" => string(1) "0" "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 6 "display" => string(2) "11" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "human_id" => array(13) ( "type" => string(3) "int" "min" => string(20) "-9223372036854775808" "max" => string(19) "9223372036854775807" "column_name" => string(8) "human_id" "column_default" => NULL "data_type" => string(6) "bigint" "is_nullable" => bool TRUE "ordinal_position" => integer 7 "display" => string(2) "20" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "ya_spell" => array(12) ( "type" => string(6) "string" "column_name" => string(8) "ya_spell" "column_default" => string(1) "0" "data_type" => string(4) "enum" "is_nullable" => bool FALSE "ordinal_position" => integer 8 "collation_name" => string(18) "utf8mb3_unicode_ci" "options" => array(2) ( 0 => string(1) "0" 1 => string(1) "1" ) "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "category_key" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(12) "category_key" "column_default" => string(1) "0" "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 9 "display" => string(2) "11" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "has_gpt" => array(12) ( "type" => string(6) "string" "column_name" => string(7) "has_gpt" "column_default" => NULL "data_type" => string(4) "enum" "is_nullable" => bool TRUE "ordinal_position" => integer 10 "collation_name" => string(18) "utf8mb3_unicode_ci" "options" => array(4) ( 0 => string(1) "0" 1 => string(1) "1" 2 => string(12) "has_attaches" 3 => string(4) "skip" ) "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "source" => array(12) ( "type" => string(6) "string" "column_name" => string(6) "source" "column_default" => NULL "data_type" => string(4) "enum" "is_nullable" => bool TRUE "ordinal_position" => integer 11 "collation_name" => string(18) "utf8mb3_unicode_ci" "options" => array(1) ( 0 => string(12) "vashurok.com" ) "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "source_id" => array(13) ( "type" => string(3) "int" "min" => string(20) "-9223372036854775808" "max" => string(19) "9223372036854775807" "column_name" => string(9) "source_id" "column_default" => NULL "data_type" => string(6) "bigint" "is_nullable" => bool TRUE "ordinal_position" => integer 12 "display" => string(2) "20" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "text_for_search" => array(12) ( "type" => string(6) "string" "character_maximum_length" => string(5) "65535" "column_name" => string(15) "text_for_search" "column_default" => NULL "data_type" => string(4) "text" "is_nullable" => bool TRUE "ordinal_position" => integer 13 "collation_name" => string(18) "utf8mb3_unicode_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "related" => array(12) ( "type" => string(6) "string" "column_name" => string(7) "related" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 14 "character_maximum_length" => string(4) "1023" "collation_name" => string(18) "utf8mb3_unicode_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "good" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(4) "good" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool TRUE "ordinal_position" => integer 15 "display" => string(2) "11" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "bad" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(3) "bad" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool TRUE "ordinal_position" => integer 16 "display" => string(2) "11" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) ) protected _updated_column => NULL protected _created_column => NULL protected _serialize_columns => array(0) protected _primary_key => string(2) "id" protected _primary_key_value => string(8) "11100414" protected _table_names_plural => bool TRUE protected _db => object Database_MySQLi(6){ protected _connection_id => string(40) "9fdecc117b583662f3b3d15c4c4ac71fc778e18d" protected _identifier => string(1) "`" public last_query => string(185) "SELECT `category`.`id` AS `id`, `category`.`name` AS `name`, `category`.`url` AS `url`, `category`.`count` AS `count` FROM `cate …" protected _instance => string(7) "default" protected _connection => object mysqli(19) { ... } protected _config => array(6) ( ... ) }protected _db_group => NULL protected _db_applied => array(0) protected _db_pending => array(0) protected _db_reset => bool TRUE protected _db_builder => NULL protected _with_applied => array(0) protected _cast_data => array(0) protected _errors_filename => string(8) "category" }{ protected _connection_id => string(40) "9fdecc117b583662f3b3d15c4c4ac71fc778e18d" protected _identifier => string(1) "`" public last_query => string(185) "SELECT `category`.`id` AS `id`, `category`.`name` AS `name`, `category`.`url` AS `url`, `category`.`count` AS `count` FROM `cate …" protected _instance => string(7) "default" protected _connection => object mysqli(19)protected _db_group => NULL protected _db_applied => array(0) protected _db_pending => array(0) protected _db_reset => bool TRUE protected _db_builder => NULL protected _with_applied => array(0) protected _cast_data => array(0) protected _errors_filename => string(4) "task" }{ public affected_rows => NULL public client_info => NULL public client_version => NULL public connect_errno => NULL public connect_error => NULL public errno => NULL public error => NULL public error_list => NULL public field_count => NULL public host_info => NULL public info => NULL public insert_id => NULL public server_info => NULL public server_version => NULL public stat => NULL public sqlstate => NULL public protocol_version => NULL public thread_id => NULL public warning_count => NULL }protected _config => array(6) ( "type" => string(6) "MySQLi" "connection" => array(3) ( "hostname" => string(9) "localhost" "database" => string(9) "uznavalka" "persistent" => bool FALSE ) "table_prefix" => string(0) "" "charset" => string(7) "utf8mb4" "caching" => bool FALSE "profiling" => bool FALSE ) }{ protected _belongs_to => array(2) ( "category" => array(2) ( "model" => string(8) "Category" "foreign_key" => string(11) "category_id" ) "human" => array(2) ( "model" => string(5) "Human" "foreign_key" => string(8) "human_id" ) ) protected _has_many => array(4) ( "answers" => array(4) ( "model" => string(6) "Answer" "foreign_key" => string(7) "task_id" "through" => NULL "far_key" => string(9) "answer_id" ) "tattaches" => array(4) ( "model" => string(7) "Tattach" "foreign_key" => string(7) "task_id" "through" => NULL "far_key" => string(10) "tattach_id" ) "tops" => array(4) ( "model" => string(3) "Top" "foreign_key" => string(7) "task_id" "through" => NULL "far_key" => string(6) "top_id" ) "ipsviews" => array(4) ( "model" => string(7) "Ipsview" "foreign_key" => string(7) "task_id" "through" => NULL "far_key" => string(10) "ipsview_id" ) ) protected _reload_on_wakeup => bool FALSE protected _has_one => array(0) protected _load_with => array(0) protected _validation => NULL protected _object => array(16) ( "id" => string(8) "11761506" "category_id" => string(1) "7" "text" => string(435) "<span class="sg-text sg-text--break-words brn-qpage-next-question-box-content__secondary"> 1. Завдання Які маси солі і води потр …" "zn_id" => string(8) "52323833" "date_time" => string(19) "2023-06-10 14:47:28" "views" => string(1) "5" "human_id" => string(8) "20776821" "ya_spell" => string(1) "0" "category_key" => string(6) "550584" "has_gpt" => string(1) "1" "source" => NULL "source_id" => NULL "text_for_search" => string(336) "1. Завдання Які маси солі і води потрібно взяти, щоб одержати 2 кг розчину з масовою часткою 10 %? 2. Які маси солі та води потр …" "related" => NULL "good" => NULL "bad" => NULL ) protected _changed => array(0) protected _original_values => array(16) ( "id" => string(8) "11761506" "category_id" => string(1) "7" "text" => string(435) "<span class="sg-text sg-text--break-words brn-qpage-next-question-box-content__secondary"> 1. Завдання Які маси солі і води потр …" "zn_id" => string(8) "52323833" "date_time" => string(19) "2023-06-10 14:47:28" "views" => string(1) "5" "human_id" => string(8) "20776821" "ya_spell" => string(1) "0" "category_key" => string(6) "550584" "has_gpt" => string(1) "1" "source" => NULL "source_id" => NULL "text_for_search" => string(336) "1. Завдання Які маси солі і води потрібно взяти, щоб одержати 2 кг розчину з масовою часткою 10 %? 2. Які маси солі та води потр …" "related" => NULL "good" => NULL "bad" => NULL ) protected _related => array(2) ( "human" => object Model_Human(34)8 => object Model_Task(34){ protected _db_group => string(5) "looka" protected _has_many => array(4) ( "universities" => array(5) ( ... ) "humans_universities" => array(4) ( ... ) "schools" => array(5) ( ... ) "humans_schools" => array(4) ( ... ) ) protected _belongs_to => array(4) ( "lastname" => array(2) ( ... ) "firstname" => array(2) ( ... ) "country" => array(2) ( ... ) "city" => array(2) ( ... ) ) protected _reload_on_wakeup => bool FALSE protected _has_one => array(0) protected _load_with => array(0) protected _validation => NULL protected _object => array(21) ( "id" => string(8) "20776821" "lastname_id" => string(6) "120086" "firstname_id" => string(3) "108" "nickname" => string(0) "" "vk_id" => string(9) "277063149" "bdate" => string(10) "2004-10-30" "info" => NULL "photo" => string(63) "https://pp.userapi.com/c639725/v639725666/49c94/wXdZnA_Aebw.jpg" "city_id" => NULL "country_id" => string(1) "1" "home_town" => NULL "home_phone" => string(0) "" "skype" => NULL "facebook" => NULL "twitter" => NULL "livejournal" => NULL "instagram" => NULL "occupation_type" => NULL "occupation_name" => NULL "rate" => string(2) "11" "count_firstnames_lastnames" => NULL ) protected _changed => array(0) protected _original_values => array(21) ( "id" => string(8) "20776821" "lastname_id" => string(6) "120086" "firstname_id" => string(3) "108" "nickname" => string(0) "" "vk_id" => string(9) "277063149" "bdate" => string(10) "2004-10-30" "info" => NULL "photo" => string(63) "https://pp.userapi.com/c639725/v639725666/49c94/wXdZnA_Aebw.jpg" "city_id" => NULL "country_id" => string(1) "1" "home_town" => NULL "home_phone" => string(0) "" "skype" => NULL "facebook" => NULL "twitter" => NULL "livejournal" => NULL "instagram" => NULL "occupation_type" => NULL "occupation_name" => NULL "rate" => string(2) "11" "count_firstnames_lastnames" => NULL ) protected _related => array(2) ( "lastname" => object Model_Lastname(34) { ... } "firstname" => object Model_Firstname(34) { ... } ) protected _valid => bool TRUE protected _loaded => bool TRUE protected _saved => bool FALSE protected _sorting => NULL protected _foreign_key_suffix => string(3) "_id" protected _object_name => string(5) "human" protected _object_plural => string(6) "humans" protected _table_name => string(6) "humans" protected _table_columns => array(21) ( "id" => array(13) ( ... ) "lastname_id" => array(13) ( ... ) "firstname_id" => array(13) ( ... ) "nickname" => array(12) ( ... ) "vk_id" => array(13) ( ... ) "bdate" => array(10) ( ... ) "info" => array(12) ( ... ) "photo" => array(12) ( ... ) "city_id" => array(13) ( ... ) "country_id" => array(13) ( ... ) "home_town" => array(12) ( ... ) "home_phone" => array(12) ( ... ) "skype" => array(12) ( ... ) "facebook" => array(12) ( ... ) "twitter" => array(12) ( ... ) "livejournal" => array(12) ( ... ) "instagram" => array(12) ( ... ) "occupation_type" => array(12) ( ... ) "occupation_name" => array(12) ( ... ) "rate" => array(13) ( ... ) "count_firstnames_lastnames" => array(13) ( ... ) ) protected _updated_column => NULL protected _created_column => NULL protected _serialize_columns => array(0) protected _primary_key => string(2) "id" protected _primary_key_value => string(8) "20776821" protected _table_names_plural => bool TRUE protected _db => object Database_MySQLi(6)"category" => object Model_Category(35){ protected _connection_id => string(40) "d012da34ee02fd2c23a3776760afb1e9d4e5c681" protected _identifier => string(1) "`" public last_query => string(166) "SELECT `finder_lastname`.`id` AS `id`, `finder_lastname`.`title` AS `title` FROM `finder_lastnames` AS `finder_lastname` WHERE ` …" protected _instance => string(5) "looka" protected _connection => object mysqli(19) { ... } protected _config => array(5) ( ... ) }protected _db_applied => array(0) protected _db_pending => array(0) protected _db_reset => bool TRUE protected _db_builder => NULL protected _with_applied => array(0) protected _cast_data => array(0) protected _errors_filename => string(5) "human" }{ protected _has_many => array(2) ( "tasks" => array(4) ( ... ) "tops" => array(4) ( ... ) ) protected prefix_url => string(9) "/subject/" protected _reload_on_wakeup => bool FALSE protected _has_one => array(0) protected _belongs_to => array(0) protected _load_with => array(0) protected _validation => NULL protected _object => array(4) ( "id" => string(1) "7" "name" => string(10) "Химия" "url" => string(9) "chemistry" "count" => string(6) "799022" ) protected _changed => array(0) protected _original_values => array(4) ( "id" => string(1) "7" "name" => string(10) "Химия" "url" => string(9) "chemistry" "count" => string(6) "799022" ) protected _related => array(0) protected _valid => bool TRUE protected _loaded => bool TRUE protected _saved => bool FALSE protected _sorting => NULL protected _foreign_key_suffix => string(3) "_id" protected _object_name => string(8) "category" protected _object_plural => string(10) "categories" protected _table_name => string(10) "categories" protected _table_columns => array(4) ( "id" => array(13) ( ... ) "name" => array(12) ( ... ) "url" => array(12) ( ... ) "count" => array(13) ( ... ) ) protected _updated_column => NULL protected _created_column => NULL protected _serialize_columns => array(0) protected _primary_key => string(2) "id" protected _primary_key_value => string(1) "7" protected _table_names_plural => bool TRUE protected _db => object Database_MySQLi(6)) protected _valid => bool TRUE protected _loaded => bool TRUE protected _saved => bool FALSE protected _sorting => NULL protected _foreign_key_suffix => string(3) "_id" protected _object_name => string(4) "task" protected _object_plural => string(5) "tasks" protected _table_name => string(5) "tasks" protected _table_columns => array(16) ( "id" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(2) "id" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 1 "display" => string(2) "11" "comment" => string(0) "" "extra" => string(14) "auto_increment" "key" => string(3) "PRI" "privileges" => string(31) "select,insert,update,references" ) "category_id" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(11) "category_id" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 2 "display" => string(2) "11" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "text" => array(12) ( "type" => string(6) "string" "character_maximum_length" => string(5) "65535" "column_name" => string(4) "text" "column_default" => NULL "data_type" => string(4) "text" "is_nullable" => bool FALSE "ordinal_position" => integer 3 "collation_name" => string(18) "utf8mb3_unicode_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "zn_id" => array(13) ( "type" => string(3) "int" "min" => string(20) "-9223372036854775808" "max" => string(19) "9223372036854775807" "column_name" => string(5) "zn_id" "column_default" => string(1) "0" "data_type" => string(6) "bigint" "is_nullable" => bool FALSE "ordinal_position" => integer 4 "display" => string(2) "20" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "date_time" => array(10) ( "type" => string(6) "string" "column_name" => string(9) "date_time" "column_default" => string(19) "current_timestamp()" "data_type" => string(8) "datetime" "is_nullable" => bool FALSE "ordinal_position" => integer 5 "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "views" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(5) "views" "column_default" => string(1) "0" "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 6 "display" => string(2) "11" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "human_id" => array(13) ( "type" => string(3) "int" "min" => string(20) "-9223372036854775808" "max" => string(19) "9223372036854775807" "column_name" => string(8) "human_id" "column_default" => NULL "data_type" => string(6) "bigint" "is_nullable" => bool TRUE "ordinal_position" => integer 7 "display" => string(2) "20" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "ya_spell" => array(12) ( "type" => string(6) "string" "column_name" => string(8) "ya_spell" "column_default" => string(1) "0" "data_type" => string(4) "enum" "is_nullable" => bool FALSE "ordinal_position" => integer 8 "collation_name" => string(18) "utf8mb3_unicode_ci" "options" => array(2) ( 0 => string(1) "0" 1 => string(1) "1" ) "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "category_key" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(12) "category_key" "column_default" => string(1) "0" "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 9 "display" => string(2) "11" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "has_gpt" => array(12) ( "type" => string(6) "string" "column_name" => string(7) "has_gpt" "column_default" => NULL "data_type" => string(4) "enum" "is_nullable" => bool TRUE "ordinal_position" => integer 10 "collation_name" => string(18) "utf8mb3_unicode_ci" "options" => array(4) ( 0 => string(1) "0" 1 => string(1) "1" 2 => string(12) "has_attaches" 3 => string(4) "skip" ) "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "source" => array(12) ( "type" => string(6) "string" "column_name" => string(6) "source" "column_default" => NULL "data_type" => string(4) "enum" "is_nullable" => bool TRUE "ordinal_position" => integer 11 "collation_name" => string(18) "utf8mb3_unicode_ci" "options" => array(1) ( 0 => string(12) "vashurok.com" ) "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "source_id" => array(13) ( "type" => string(3) "int" "min" => string(20) "-9223372036854775808" "max" => string(19) "9223372036854775807" "column_name" => string(9) "source_id" "column_default" => NULL "data_type" => string(6) "bigint" "is_nullable" => bool TRUE "ordinal_position" => integer 12 "display" => string(2) "20" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "text_for_search" => array(12) ( "type" => string(6) "string" "character_maximum_length" => string(5) "65535" "column_name" => string(15) "text_for_search" "column_default" => NULL "data_type" => string(4) "text" "is_nullable" => bool TRUE "ordinal_position" => integer 13 "collation_name" => string(18) "utf8mb3_unicode_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "related" => array(12) ( "type" => string(6) "string" "column_name" => string(7) "related" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 14 "character_maximum_length" => string(4) "1023" "collation_name" => string(18) "utf8mb3_unicode_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "good" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(4) "good" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool TRUE "ordinal_position" => integer 15 "display" => string(2) "11" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "bad" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(3) "bad" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool TRUE "ordinal_position" => integer 16 "display" => string(2) "11" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) ) protected _updated_column => NULL protected _created_column => NULL protected _serialize_columns => array(0) protected _primary_key => string(2) "id" protected _primary_key_value => string(8) "11761506" protected _table_names_plural => bool TRUE protected _db => object Database_MySQLi(6){ protected _connection_id => string(40) "9fdecc117b583662f3b3d15c4c4ac71fc778e18d" protected _identifier => string(1) "`" public last_query => string(185) "SELECT `category`.`id` AS `id`, `category`.`name` AS `name`, `category`.`url` AS `url`, `category`.`count` AS `count` FROM `cate …" protected _instance => string(7) "default" protected _connection => object mysqli(19) { ... } protected _config => array(6) ( ... ) }protected _db_group => NULL protected _db_applied => array(0) protected _db_pending => array(0) protected _db_reset => bool TRUE protected _db_builder => NULL protected _with_applied => array(0) protected _cast_data => array(0) protected _errors_filename => string(8) "category" }{ protected _connection_id => string(40) "9fdecc117b583662f3b3d15c4c4ac71fc778e18d" protected _identifier => string(1) "`" public last_query => string(185) "SELECT `category`.`id` AS `id`, `category`.`name` AS `name`, `category`.`url` AS `url`, `category`.`count` AS `count` FROM `cate …" protected _instance => string(7) "default" protected _connection => object mysqli(19)protected _db_group => NULL protected _db_applied => array(0) protected _db_pending => array(0) protected _db_reset => bool TRUE protected _db_builder => NULL protected _with_applied => array(0) protected _cast_data => array(0) protected _errors_filename => string(4) "task" }{ public affected_rows => NULL public client_info => NULL public client_version => NULL public connect_errno => NULL public connect_error => NULL public errno => NULL public error => NULL public error_list => NULL public field_count => NULL public host_info => NULL public info => NULL public insert_id => NULL public server_info => NULL public server_version => NULL public stat => NULL public sqlstate => NULL public protocol_version => NULL public thread_id => NULL public warning_count => NULL }protected _config => array(6) ( "type" => string(6) "MySQLi" "connection" => array(3) ( "hostname" => string(9) "localhost" "database" => string(9) "uznavalka" "persistent" => bool FALSE ) "table_prefix" => string(0) "" "charset" => string(7) "utf8mb4" "caching" => bool FALSE "profiling" => bool FALSE ) }{ protected _belongs_to => array(2) ( "category" => array(2) ( "model" => string(8) "Category" "foreign_key" => string(11) "category_id" ) "human" => array(2) ( "model" => string(5) "Human" "foreign_key" => string(8) "human_id" ) ) protected _has_many => array(4) ( "answers" => array(4) ( "model" => string(6) "Answer" "foreign_key" => string(7) "task_id" "through" => NULL "far_key" => string(9) "answer_id" ) "tattaches" => array(4) ( "model" => string(7) "Tattach" "foreign_key" => string(7) "task_id" "through" => NULL "far_key" => string(10) "tattach_id" ) "tops" => array(4) ( "model" => string(3) "Top" "foreign_key" => string(7) "task_id" "through" => NULL "far_key" => string(6) "top_id" ) "ipsviews" => array(4) ( "model" => string(7) "Ipsview" "foreign_key" => string(7) "task_id" "through" => NULL "far_key" => string(10) "ipsview_id" ) ) protected _reload_on_wakeup => bool FALSE protected _has_one => array(0) protected _load_with => array(0) protected _validation => NULL protected _object => array(16) ( "id" => string(8) "14103798" "category_id" => string(1) "7" "text" => string(191) "<span class="sg-text sg-text--large sg-text--bold sg-text--break-words brn-qpage-next-question-box-content__primary"> До складу …" "zn_id" => string(8) "37500115" "date_time" => string(19) "2023-07-07 01:03:02" "views" => string(1) "3" "human_id" => string(7) "1186243" "ya_spell" => string(1) "0" "category_key" => string(6) "666218" "has_gpt" => string(1) "1" "source" => NULL "source_id" => NULL "text_for_search" => string(65) "До складу оксидів завжди входять? " "related" => string(120) "["7108902","14050961","11347733","13025802","11399709","11342486","5548477","11254901","11292172","12151480","11270209"]" "good" => NULL "bad" => NULL ) protected _changed => array(0) protected _original_values => array(16) ( "id" => string(8) "14103798" "category_id" => string(1) "7" "text" => string(191) "<span class="sg-text sg-text--large sg-text--bold sg-text--break-words brn-qpage-next-question-box-content__primary"> До складу …" "zn_id" => string(8) "37500115" "date_time" => string(19) "2023-07-07 01:03:02" "views" => string(1) "3" "human_id" => string(7) "1186243" "ya_spell" => string(1) "0" "category_key" => string(6) "666218" "has_gpt" => string(1) "1" "source" => NULL "source_id" => NULL "text_for_search" => string(65) "До складу оксидів завжди входять? " "related" => string(120) "["7108902","14050961","11347733","13025802","11399709","11342486","5548477","11254901","11292172","12151480","11270209"]" "good" => NULL "bad" => NULL ) protected _related => array(2) ( "human" => object Model_Human(34)9 => object Model_Task(34){ protected _db_group => string(5) "looka" protected _has_many => array(4) ( "universities" => array(5) ( ... ) "humans_universities" => array(4) ( ... ) "schools" => array(5) ( ... ) "humans_schools" => array(4) ( ... ) ) protected _belongs_to => array(4) ( "lastname" => array(2) ( ... ) "firstname" => array(2) ( ... ) "country" => array(2) ( ... ) "city" => array(2) ( ... ) ) protected _reload_on_wakeup => bool FALSE protected _has_one => array(0) protected _load_with => array(0) protected _validation => NULL protected _object => array(21) ( "id" => string(7) "1186243" "lastname_id" => string(6) "276626" "firstname_id" => string(2) "88" "nickname" => string(0) "" "vk_id" => string(7) "1275961" "bdate" => string(10) "2004-02-04" "info" => NULL "photo" => string(63) "https://pp.userapi.com/c636329/v636329961/549a0/7gb03U4fzkU.jpg" "city_id" => string(7) "1710182" "country_id" => string(2) "43" "home_town" => NULL "home_phone" => NULL "skype" => NULL "facebook" => NULL "twitter" => NULL "livejournal" => NULL "instagram" => NULL "occupation_type" => string(4) "work" "occupation_name" => string(15) "Bank of Nikolai" "rate" => string(2) "12" "count_firstnames_lastnames" => NULL ) protected _changed => array(0) protected _original_values => array(21) ( "id" => string(7) "1186243" "lastname_id" => string(6) "276626" "firstname_id" => string(2) "88" "nickname" => string(0) "" "vk_id" => string(7) "1275961" "bdate" => string(10) "2004-02-04" "info" => NULL "photo" => string(63) "https://pp.userapi.com/c636329/v636329961/549a0/7gb03U4fzkU.jpg" "city_id" => string(7) "1710182" "country_id" => string(2) "43" "home_town" => NULL "home_phone" => NULL "skype" => NULL "facebook" => NULL "twitter" => NULL "livejournal" => NULL "instagram" => NULL "occupation_type" => string(4) "work" "occupation_name" => string(15) "Bank of Nikolai" "rate" => string(2) "12" "count_firstnames_lastnames" => NULL ) protected _related => array(2) ( "lastname" => object Model_Lastname(34) { ... } "firstname" => object Model_Firstname(34) { ... } ) protected _valid => bool TRUE protected _loaded => bool TRUE protected _saved => bool FALSE protected _sorting => NULL protected _foreign_key_suffix => string(3) "_id" protected _object_name => string(5) "human" protected _object_plural => string(6) "humans" protected _table_name => string(6) "humans" protected _table_columns => array(21) ( "id" => array(13) ( ... ) "lastname_id" => array(13) ( ... ) "firstname_id" => array(13) ( ... ) "nickname" => array(12) ( ... ) "vk_id" => array(13) ( ... ) "bdate" => array(10) ( ... ) "info" => array(12) ( ... ) "photo" => array(12) ( ... ) "city_id" => array(13) ( ... ) "country_id" => array(13) ( ... ) "home_town" => array(12) ( ... ) "home_phone" => array(12) ( ... ) "skype" => array(12) ( ... ) "facebook" => array(12) ( ... ) "twitter" => array(12) ( ... ) "livejournal" => array(12) ( ... ) "instagram" => array(12) ( ... ) "occupation_type" => array(12) ( ... ) "occupation_name" => array(12) ( ... ) "rate" => array(13) ( ... ) "count_firstnames_lastnames" => array(13) ( ... ) ) protected _updated_column => NULL protected _created_column => NULL protected _serialize_columns => array(0) protected _primary_key => string(2) "id" protected _primary_key_value => string(7) "1186243" protected _table_names_plural => bool TRUE protected _db => object Database_MySQLi(6)"category" => object Model_Category(35){ protected _connection_id => string(40) "d012da34ee02fd2c23a3776760afb1e9d4e5c681" protected _identifier => string(1) "`" public last_query => string(166) "SELECT `finder_lastname`.`id` AS `id`, `finder_lastname`.`title` AS `title` FROM `finder_lastnames` AS `finder_lastname` WHERE ` …" protected _instance => string(5) "looka" protected _connection => object mysqli(19) { ... } protected _config => array(5) ( ... ) }protected _db_applied => array(0) protected _db_pending => array(0) protected _db_reset => bool TRUE protected _db_builder => NULL protected _with_applied => array(0) protected _cast_data => array(0) protected _errors_filename => string(5) "human" }{ protected _has_many => array(2) ( "tasks" => array(4) ( ... ) "tops" => array(4) ( ... ) ) protected prefix_url => string(9) "/subject/" protected _reload_on_wakeup => bool FALSE protected _has_one => array(0) protected _belongs_to => array(0) protected _load_with => array(0) protected _validation => NULL protected _object => array(4) ( "id" => string(1) "7" "name" => string(10) "Химия" "url" => string(9) "chemistry" "count" => string(6) "799022" ) protected _changed => array(0) protected _original_values => array(4) ( "id" => string(1) "7" "name" => string(10) "Химия" "url" => string(9) "chemistry" "count" => string(6) "799022" ) protected _related => array(0) protected _valid => bool TRUE protected _loaded => bool TRUE protected _saved => bool FALSE protected _sorting => NULL protected _foreign_key_suffix => string(3) "_id" protected _object_name => string(8) "category" protected _object_plural => string(10) "categories" protected _table_name => string(10) "categories" protected _table_columns => array(4) ( "id" => array(13) ( ... ) "name" => array(12) ( ... ) "url" => array(12) ( ... ) "count" => array(13) ( ... ) ) protected _updated_column => NULL protected _created_column => NULL protected _serialize_columns => array(0) protected _primary_key => string(2) "id" protected _primary_key_value => string(1) "7" protected _table_names_plural => bool TRUE protected _db => object Database_MySQLi(6)) protected _valid => bool TRUE protected _loaded => bool TRUE protected _saved => bool FALSE protected _sorting => NULL protected _foreign_key_suffix => string(3) "_id" protected _object_name => string(4) "task" protected _object_plural => string(5) "tasks" protected _table_name => string(5) "tasks" protected _table_columns => array(16) ( "id" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(2) "id" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 1 "display" => string(2) "11" "comment" => string(0) "" "extra" => string(14) "auto_increment" "key" => string(3) "PRI" "privileges" => string(31) "select,insert,update,references" ) "category_id" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(11) "category_id" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 2 "display" => string(2) "11" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "text" => array(12) ( "type" => string(6) "string" "character_maximum_length" => string(5) "65535" "column_name" => string(4) "text" "column_default" => NULL "data_type" => string(4) "text" "is_nullable" => bool FALSE "ordinal_position" => integer 3 "collation_name" => string(18) "utf8mb3_unicode_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "zn_id" => array(13) ( "type" => string(3) "int" "min" => string(20) "-9223372036854775808" "max" => string(19) "9223372036854775807" "column_name" => string(5) "zn_id" "column_default" => string(1) "0" "data_type" => string(6) "bigint" "is_nullable" => bool FALSE "ordinal_position" => integer 4 "display" => string(2) "20" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "date_time" => array(10) ( "type" => string(6) "string" "column_name" => string(9) "date_time" "column_default" => string(19) "current_timestamp()" "data_type" => string(8) "datetime" "is_nullable" => bool FALSE "ordinal_position" => integer 5 "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "views" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(5) "views" "column_default" => string(1) "0" "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 6 "display" => string(2) "11" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "human_id" => array(13) ( "type" => string(3) "int" "min" => string(20) "-9223372036854775808" "max" => string(19) "9223372036854775807" "column_name" => string(8) "human_id" "column_default" => NULL "data_type" => string(6) "bigint" "is_nullable" => bool TRUE "ordinal_position" => integer 7 "display" => string(2) "20" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "ya_spell" => array(12) ( "type" => string(6) "string" "column_name" => string(8) "ya_spell" "column_default" => string(1) "0" "data_type" => string(4) "enum" "is_nullable" => bool FALSE "ordinal_position" => integer 8 "collation_name" => string(18) "utf8mb3_unicode_ci" "options" => array(2) ( 0 => string(1) "0" 1 => string(1) "1" ) "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "category_key" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(12) "category_key" "column_default" => string(1) "0" "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 9 "display" => string(2) "11" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "has_gpt" => array(12) ( "type" => string(6) "string" "column_name" => string(7) "has_gpt" "column_default" => NULL "data_type" => string(4) "enum" "is_nullable" => bool TRUE "ordinal_position" => integer 10 "collation_name" => string(18) "utf8mb3_unicode_ci" "options" => array(4) ( 0 => string(1) "0" 1 => string(1) "1" 2 => string(12) "has_attaches" 3 => string(4) "skip" ) "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "source" => array(12) ( "type" => string(6) "string" "column_name" => string(6) "source" "column_default" => NULL "data_type" => string(4) "enum" "is_nullable" => bool TRUE "ordinal_position" => integer 11 "collation_name" => string(18) "utf8mb3_unicode_ci" "options" => array(1) ( 0 => string(12) "vashurok.com" ) "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "source_id" => array(13) ( "type" => string(3) "int" "min" => string(20) "-9223372036854775808" "max" => string(19) "9223372036854775807" "column_name" => string(9) "source_id" "column_default" => NULL "data_type" => string(6) "bigint" "is_nullable" => bool TRUE "ordinal_position" => integer 12 "display" => string(2) "20" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "text_for_search" => array(12) ( "type" => string(6) "string" "character_maximum_length" => string(5) "65535" "column_name" => string(15) "text_for_search" "column_default" => NULL "data_type" => string(4) "text" "is_nullable" => bool TRUE "ordinal_position" => integer 13 "collation_name" => string(18) "utf8mb3_unicode_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "related" => array(12) ( "type" => string(6) "string" "column_name" => string(7) "related" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 14 "character_maximum_length" => string(4) "1023" "collation_name" => string(18) "utf8mb3_unicode_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "good" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(4) "good" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool TRUE "ordinal_position" => integer 15 "display" => string(2) "11" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "bad" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(3) "bad" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool TRUE "ordinal_position" => integer 16 "display" => string(2) "11" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) ) protected _updated_column => NULL protected _created_column => NULL protected _serialize_columns => array(0) protected _primary_key => string(2) "id" protected _primary_key_value => string(8) "14103798" protected _table_names_plural => bool TRUE protected _db => object Database_MySQLi(6){ protected _connection_id => string(40) "9fdecc117b583662f3b3d15c4c4ac71fc778e18d" protected _identifier => string(1) "`" public last_query => string(185) "SELECT `category`.`id` AS `id`, `category`.`name` AS `name`, `category`.`url` AS `url`, `category`.`count` AS `count` FROM `cate …" protected _instance => string(7) "default" protected _connection => object mysqli(19) { ... } protected _config => array(6) ( ... ) }protected _db_group => NULL protected _db_applied => array(0) protected _db_pending => array(0) protected _db_reset => bool TRUE protected _db_builder => NULL protected _with_applied => array(0) protected _cast_data => array(0) protected _errors_filename => string(8) "category" }{ protected _connection_id => string(40) "9fdecc117b583662f3b3d15c4c4ac71fc778e18d" protected _identifier => string(1) "`" public last_query => string(185) "SELECT `category`.`id` AS `id`, `category`.`name` AS `name`, `category`.`url` AS `url`, `category`.`count` AS `count` FROM `cate …" protected _instance => string(7) "default" protected _connection => object mysqli(19)protected _db_group => NULL protected _db_applied => array(0) protected _db_pending => array(0) protected _db_reset => bool TRUE protected _db_builder => NULL protected _with_applied => array(0) protected _cast_data => array(0) protected _errors_filename => string(4) "task" }{ public affected_rows => NULL public client_info => NULL public client_version => NULL public connect_errno => NULL public connect_error => NULL public errno => NULL public error => NULL public error_list => NULL public field_count => NULL public host_info => NULL public info => NULL public insert_id => NULL public server_info => NULL public server_version => NULL public stat => NULL public sqlstate => NULL public protocol_version => NULL public thread_id => NULL public warning_count => NULL }protected _config => array(6) ( "type" => string(6) "MySQLi" "connection" => array(3) ( "hostname" => string(9) "localhost" "database" => string(9) "uznavalka" "persistent" => bool FALSE ) "table_prefix" => string(0) "" "charset" => string(7) "utf8mb4" "caching" => bool FALSE "profiling" => bool FALSE ) }{ protected _belongs_to => array(2) ( "category" => array(2) ( "model" => string(8) "Category" "foreign_key" => string(11) "category_id" ) "human" => array(2) ( "model" => string(5) "Human" "foreign_key" => string(8) "human_id" ) ) protected _has_many => array(4) ( "answers" => array(4) ( "model" => string(6) "Answer" "foreign_key" => string(7) "task_id" "through" => NULL "far_key" => string(9) "answer_id" ) "tattaches" => array(4) ( "model" => string(7) "Tattach" "foreign_key" => string(7) "task_id" "through" => NULL "far_key" => string(10) "tattach_id" ) "tops" => array(4) ( "model" => string(3) "Top" "foreign_key" => string(7) "task_id" "through" => NULL "far_key" => string(6) "top_id" ) "ipsviews" => array(4) ( "model" => string(7) "Ipsview" "foreign_key" => string(7) "task_id" "through" => NULL "far_key" => string(10) "ipsview_id" ) ) protected _reload_on_wakeup => bool FALSE protected _has_one => array(0) protected _load_with => array(0) protected _validation => NULL protected _object => array(16) ( "id" => string(7) "1972445" "category_id" => string(1) "7" "text" => string(170) "Составьте уравнения реакции окисления бутаналя. Определите молярную массу продукта реакции" "zn_id" => string(7) "5517167" "date_time" => string(19) "2018-11-02 03:30:29" "views" => string(2) "17" "human_id" => string(7) "9897776" "ya_spell" => string(1) "0" "category_key" => string(5) "88488" "has_gpt" => string(1) "1" "source" => NULL "source_id" => NULL "text_for_search" => string(170) "Составьте уравнения реакции окисления бутаналя. Определите молярную массу продукта реакции" "related" => NULL "good" => NULL "bad" => NULL ) protected _changed => array(0) protected _original_values => array(16) ( "id" => string(7) "1972445" "category_id" => string(1) "7" "text" => string(170) "Составьте уравнения реакции окисления бутаналя. Определите молярную массу продукта реакции" "zn_id" => string(7) "5517167" "date_time" => string(19) "2018-11-02 03:30:29" "views" => string(2) "17" "human_id" => string(7) "9897776" "ya_spell" => string(1) "0" "category_key" => string(5) "88488" "has_gpt" => string(1) "1" "source" => NULL "source_id" => NULL "text_for_search" => string(170) "Составьте уравнения реакции окисления бутаналя. Определите молярную массу продукта реакции" "related" => NULL "good" => NULL "bad" => NULL ) protected _related => array(2) ( "human" => object Model_Human(34)) ) }{ protected _db_group => string(5) "looka" protected _has_many => array(4) ( "universities" => array(5) ( ... ) "humans_universities" => array(4) ( ... ) "schools" => array(5) ( ... ) "humans_schools" => array(4) ( ... ) ) protected _belongs_to => array(4) ( "lastname" => array(2) ( ... ) "firstname" => array(2) ( ... ) "country" => array(2) ( ... ) "city" => array(2) ( ... ) ) protected _reload_on_wakeup => bool FALSE protected _has_one => array(0) protected _load_with => array(0) protected _validation => NULL protected _object => array(21) ( "id" => string(7) "9897776" "lastname_id" => string(3) "191" "firstname_id" => string(3) "122" "nickname" => string(0) "" "vk_id" => string(9) "290447056" "bdate" => string(10) "2004-02-07" "info" => NULL "photo" => string(63) "https://pp.userapi.com/c841227/v841227747/697b6/VrQAaLpcGNE.jpg" "city_id" => string(3) "589" "country_id" => string(1) "1" "home_town" => NULL "home_phone" => NULL "skype" => NULL "facebook" => NULL "twitter" => NULL "livejournal" => NULL "instagram" => NULL "occupation_type" => string(6) "school" "occupation_name" => string(15) "Школа №9" "rate" => string(2) "12" "count_firstnames_lastnames" => NULL ) protected _changed => array(0) protected _original_values => array(21) ( "id" => string(7) "9897776" "lastname_id" => string(3) "191" "firstname_id" => string(3) "122" "nickname" => string(0) "" "vk_id" => string(9) "290447056" "bdate" => string(10) "2004-02-07" "info" => NULL "photo" => string(63) "https://pp.userapi.com/c841227/v841227747/697b6/VrQAaLpcGNE.jpg" "city_id" => string(3) "589" "country_id" => string(1) "1" "home_town" => NULL "home_phone" => NULL "skype" => NULL "facebook" => NULL "twitter" => NULL "livejournal" => NULL "instagram" => NULL "occupation_type" => string(6) "school" "occupation_name" => string(15) "Школа №9" "rate" => string(2) "12" "count_firstnames_lastnames" => NULL ) protected _related => array(2) ( "lastname" => object Model_Lastname(34) { ... } "firstname" => object Model_Firstname(34) { ... } ) protected _valid => bool TRUE protected _loaded => bool TRUE protected _saved => bool FALSE protected _sorting => NULL protected _foreign_key_suffix => string(3) "_id" protected _object_name => string(5) "human" protected _object_plural => string(6) "humans" protected _table_name => string(6) "humans" protected _table_columns => array(21) ( "id" => array(13) ( ... ) "lastname_id" => array(13) ( ... ) "firstname_id" => array(13) ( ... ) "nickname" => array(12) ( ... ) "vk_id" => array(13) ( ... ) "bdate" => array(10) ( ... ) "info" => array(12) ( ... ) "photo" => array(12) ( ... ) "city_id" => array(13) ( ... ) "country_id" => array(13) ( ... ) "home_town" => array(12) ( ... ) "home_phone" => array(12) ( ... ) "skype" => array(12) ( ... ) "facebook" => array(12) ( ... ) "twitter" => array(12) ( ... ) "livejournal" => array(12) ( ... ) "instagram" => array(12) ( ... ) "occupation_type" => array(12) ( ... ) "occupation_name" => array(12) ( ... ) "rate" => array(13) ( ... ) "count_firstnames_lastnames" => array(13) ( ... ) ) protected _updated_column => NULL protected _created_column => NULL protected _serialize_columns => array(0) protected _primary_key => string(2) "id" protected _primary_key_value => string(7) "9897776" protected _table_names_plural => bool TRUE protected _db => object Database_MySQLi(6)"category" => object Model_Category(35){ protected _connection_id => string(40) "d012da34ee02fd2c23a3776760afb1e9d4e5c681" protected _identifier => string(1) "`" public last_query => string(166) "SELECT `finder_lastname`.`id` AS `id`, `finder_lastname`.`title` AS `title` FROM `finder_lastnames` AS `finder_lastname` WHERE ` …" protected _instance => string(5) "looka" protected _connection => object mysqli(19) { ... } protected _config => array(5) ( ... ) }protected _db_applied => array(0) protected _db_pending => array(0) protected _db_reset => bool TRUE protected _db_builder => NULL protected _with_applied => array(0) protected _cast_data => array(0) protected _errors_filename => string(5) "human" }{ protected _has_many => array(2) ( "tasks" => array(4) ( ... ) "tops" => array(4) ( ... ) ) protected prefix_url => string(9) "/subject/" protected _reload_on_wakeup => bool FALSE protected _has_one => array(0) protected _belongs_to => array(0) protected _load_with => array(0) protected _validation => NULL protected _object => array(4) ( "id" => string(1) "7" "name" => string(10) "Химия" "url" => string(9) "chemistry" "count" => string(6) "799022" ) protected _changed => array(0) protected _original_values => array(4) ( "id" => string(1) "7" "name" => string(10) "Химия" "url" => string(9) "chemistry" "count" => string(6) "799022" ) protected _related => array(0) protected _valid => bool TRUE protected _loaded => bool TRUE protected _saved => bool FALSE protected _sorting => NULL protected _foreign_key_suffix => string(3) "_id" protected _object_name => string(8) "category" protected _object_plural => string(10) "categories" protected _table_name => string(10) "categories" protected _table_columns => array(4) ( "id" => array(13) ( ... ) "name" => array(12) ( ... ) "url" => array(12) ( ... ) "count" => array(13) ( ... ) ) protected _updated_column => NULL protected _created_column => NULL protected _serialize_columns => array(0) protected _primary_key => string(2) "id" protected _primary_key_value => string(1) "7" protected _table_names_plural => bool TRUE protected _db => object Database_MySQLi(6)) protected _valid => bool TRUE protected _loaded => bool TRUE protected _saved => bool FALSE protected _sorting => NULL protected _foreign_key_suffix => string(3) "_id" protected _object_name => string(4) "task" protected _object_plural => string(5) "tasks" protected _table_name => string(5) "tasks" protected _table_columns => array(16) ( "id" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(2) "id" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 1 "display" => string(2) "11" "comment" => string(0) "" "extra" => string(14) "auto_increment" "key" => string(3) "PRI" "privileges" => string(31) "select,insert,update,references" ) "category_id" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(11) "category_id" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 2 "display" => string(2) "11" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "text" => array(12) ( "type" => string(6) "string" "character_maximum_length" => string(5) "65535" "column_name" => string(4) "text" "column_default" => NULL "data_type" => string(4) "text" "is_nullable" => bool FALSE "ordinal_position" => integer 3 "collation_name" => string(18) "utf8mb3_unicode_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "zn_id" => array(13) ( "type" => string(3) "int" "min" => string(20) "-9223372036854775808" "max" => string(19) "9223372036854775807" "column_name" => string(5) "zn_id" "column_default" => string(1) "0" "data_type" => string(6) "bigint" "is_nullable" => bool FALSE "ordinal_position" => integer 4 "display" => string(2) "20" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "date_time" => array(10) ( "type" => string(6) "string" "column_name" => string(9) "date_time" "column_default" => string(19) "current_timestamp()" "data_type" => string(8) "datetime" "is_nullable" => bool FALSE "ordinal_position" => integer 5 "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "views" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(5) "views" "column_default" => string(1) "0" "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 6 "display" => string(2) "11" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "human_id" => array(13) ( "type" => string(3) "int" "min" => string(20) "-9223372036854775808" "max" => string(19) "9223372036854775807" "column_name" => string(8) "human_id" "column_default" => NULL "data_type" => string(6) "bigint" "is_nullable" => bool TRUE "ordinal_position" => integer 7 "display" => string(2) "20" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "ya_spell" => array(12) ( "type" => string(6) "string" "column_name" => string(8) "ya_spell" "column_default" => string(1) "0" "data_type" => string(4) "enum" "is_nullable" => bool FALSE "ordinal_position" => integer 8 "collation_name" => string(18) "utf8mb3_unicode_ci" "options" => array(2) ( 0 => string(1) "0" 1 => string(1) "1" ) "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "category_key" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(12) "category_key" "column_default" => string(1) "0" "data_type" => string(3) "int" "is_nullable" => bool FALSE "ordinal_position" => integer 9 "display" => string(2) "11" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "has_gpt" => array(12) ( "type" => string(6) "string" "column_name" => string(7) "has_gpt" "column_default" => NULL "data_type" => string(4) "enum" "is_nullable" => bool TRUE "ordinal_position" => integer 10 "collation_name" => string(18) "utf8mb3_unicode_ci" "options" => array(4) ( 0 => string(1) "0" 1 => string(1) "1" 2 => string(12) "has_attaches" 3 => string(4) "skip" ) "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "source" => array(12) ( "type" => string(6) "string" "column_name" => string(6) "source" "column_default" => NULL "data_type" => string(4) "enum" "is_nullable" => bool TRUE "ordinal_position" => integer 11 "collation_name" => string(18) "utf8mb3_unicode_ci" "options" => array(1) ( 0 => string(12) "vashurok.com" ) "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "source_id" => array(13) ( "type" => string(3) "int" "min" => string(20) "-9223372036854775808" "max" => string(19) "9223372036854775807" "column_name" => string(9) "source_id" "column_default" => NULL "data_type" => string(6) "bigint" "is_nullable" => bool TRUE "ordinal_position" => integer 12 "display" => string(2) "20" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "text_for_search" => array(12) ( "type" => string(6) "string" "character_maximum_length" => string(5) "65535" "column_name" => string(15) "text_for_search" "column_default" => NULL "data_type" => string(4) "text" "is_nullable" => bool TRUE "ordinal_position" => integer 13 "collation_name" => string(18) "utf8mb3_unicode_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "related" => array(12) ( "type" => string(6) "string" "column_name" => string(7) "related" "column_default" => NULL "data_type" => string(7) "varchar" "is_nullable" => bool TRUE "ordinal_position" => integer 14 "character_maximum_length" => string(4) "1023" "collation_name" => string(18) "utf8mb3_unicode_ci" "comment" => string(0) "" "extra" => string(0) "" "key" => string(3) "MUL" "privileges" => string(31) "select,insert,update,references" ) "good" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(4) "good" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool TRUE "ordinal_position" => integer 15 "display" => string(2) "11" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) "bad" => array(13) ( "type" => string(3) "int" "min" => string(11) "-2147483648" "max" => string(10) "2147483647" "column_name" => string(3) "bad" "column_default" => NULL "data_type" => string(3) "int" "is_nullable" => bool TRUE "ordinal_position" => integer 16 "display" => string(2) "11" "comment" => string(0) "" "extra" => string(0) "" "key" => string(0) "" "privileges" => string(31) "select,insert,update,references" ) ) protected _updated_column => NULL protected _created_column => NULL protected _serialize_columns => array(0) protected _primary_key => string(2) "id" protected _primary_key_value => string(7) "1972445" protected _table_names_plural => bool TRUE protected _db => object Database_MySQLi(6){ protected _connection_id => string(40) "9fdecc117b583662f3b3d15c4c4ac71fc778e18d" protected _identifier => string(1) "`" public last_query => string(185) "SELECT `category`.`id` AS `id`, `category`.`name` AS `name`, `category`.`url` AS `url`, `category`.`count` AS `count` FROM `cate …" protected _instance => string(7) "default" protected _connection => object mysqli(19) { ... } protected _config => array(6) ( ... ) }protected _db_group => NULL protected _db_applied => array(0) protected _db_pending => array(0) protected _db_reset => bool TRUE protected _db_builder => NULL protected _with_applied => array(0) protected _cast_data => array(0) protected _errors_filename => string(8) "category" }{ protected _connection_id => string(40) "9fdecc117b583662f3b3d15c4c4ac71fc778e18d" protected _identifier => string(1) "`" public last_query => string(185) "SELECT `category`.`id` AS `id`, `category`.`name` AS `name`, `category`.`url` AS `url`, `category`.`count` AS `count` FROM `cate …" protected _instance => string(7) "default" protected _connection => object mysqli(19)protected _db_group => NULL protected _db_applied => array(0) protected _db_pending => array(0) protected _db_reset => bool TRUE protected _db_builder => NULL protected _with_applied => array(0) protected _cast_data => array(0) protected _errors_filename => string(4) "task" }{ public affected_rows => NULL public client_info => NULL public client_version => NULL public connect_errno => NULL public connect_error => NULL public errno => NULL public error => NULL public error_list => NULL public field_count => NULL public host_info => NULL public info => NULL public insert_id => NULL public server_info => NULL public server_version => NULL public stat => NULL public sqlstate => NULL public protocol_version => NULL public thread_id => NULL public warning_count => NULL }protected _config => array(6) ( "type" => string(6) "MySQLi" "connection" => array(3) ( "hostname" => string(9) "localhost" "database" => string(9) "uznavalka" "persistent" => bool FALSE ) "table_prefix" => string(0) "" "charset" => string(7) "utf8mb4" "caching" => bool FALSE "profiling" => bool FALSE ) }{ protected _requested_with => NULL protected _method => string(3) "GET" protected _protocol => string(8) "HTTP/2.0" protected _secure => bool TRUE protected _referrer => NULL protected _route => object Route(5)public response => object Response(5){ protected _filters => array(0) protected _uri => string(50) "subject/<category_url>/q/<task_id>/<task_url>.html" protected _regex => array(2) ( "task_id" => string(3) "\d+" "task_url" => string(2) ".*" ) protected _defaults => array(3) ( "directory" => string(5) "Index" "controller" => string(4) "Task" "action" => string(5) "index" ) protected _route_regex => string(86) "#^subject/(?P<category_url>[^/.,;?\n]++)/q/(?P<task_id>\d+)/(?P<task_url>.*)\.html$#uD" }protected _routes => array(0) protected _header => object HTTP_Header(0){ }protected _body => NULL protected _directory => string(5) "Index" protected _controller => string(4) "Task" protected _action => string(5) "index" protected _uri => string(84) "subject/chemistry/q/5872829/Pri-nagrevanii-20g-gidrokarbonata-natriya-vydelilos.html" protected _external => bool FALSE protected _params => array(3) ( "category_url" => string(9) "chemistry" "task_id" => string(7) "5872829" "task_url" => string(51) "Pri-nagrevanii-20g-gidrokarbonata-natriya-vydelilos" ) protected _get => array(0) protected _post => array(0) protected _cookies => array(1) ( "last_url" => string(104) "https://uznavalka.pro/subject/geometry/q/16687539/Tsentr-kola-vpisanogo-v-rivnobedreniy-trikutnik-d.html" ) protected _client => object Request_Client_Internal(9){ protected _previous_environment => NULL protected _cache => NULL protected _follow => bool FALSE protected _follow_headers => array(1) ( 0 => string(13) "Authorization" ) protected _strict_redirect => bool TRUE protected _header_callbacks => array(1) ( "Location" => string(34) "Request_Client::on_header_location" ) protected _max_callback_depth => integer 5 protected _callback_depth => integer 1 protected _callback_params => array(0) }}{ protected _status => integer 200 protected _header => object HTTP_Header(0)}{ }protected _body => string(0) "" protected _cookies => array(0) protected _protocol => string(8) "HTTP/2.0" }92 93 // Create a new instance of the controller 94 $controller = $class->newInstance($request, $response); 95 96 // Run the controller's execute() method 97 $response = $class->getMethod('execute')->invoke($controller); 98 99 if ( ! $response instanceof Response) 100 { 101 // Controller failed to return a Response. 102 throw new Kohana_Exception('Controller failed to return a Response'); -
SYSPATH/classes/Kohana/Request/Client.php [ 114 ] » Kohana_Request_Client_Internal->execute_request(arguments)
0object Request(19)
{ protected _requested_with => NULL protected _method => string(3) "GET" protected _protocol => string(8) "HTTP/2.0" protected _secure => bool TRUE protected _referrer => NULL protected _route => object Route(5){ protected _filters => array(0) protected _uri => string(50) "subject/<category_url>/q/<task_id>/<task_url>.html" protected _regex => array(2) ( "task_id" => string(3) "\d+" "task_url" => string(2) ".*" ) protected _defaults => array(3) ( "directory" => string(5) "Index" "controller" => string(4) "Task" "action" => string(5) "index" ) protected _route_regex => string(86) "#^subject/(?P<category_url>[^/.,;?\n]++)/q/(?P<task_id>\d+)/(?P<task_url>.*)\.html$#uD" }protected _routes => array(0) protected _header => object HTTP_Header(0){ }protected _body => NULL protected _directory => string(5) "Index" protected _controller => string(4) "Task" protected _action => string(5) "index" protected _uri => string(84) "subject/chemistry/q/5872829/Pri-nagrevanii-20g-gidrokarbonata-natriya-vydelilos.html" protected _external => bool FALSE protected _params => array(3) ( "category_url" => string(9) "chemistry" "task_id" => string(7) "5872829" "task_url" => string(51) "Pri-nagrevanii-20g-gidrokarbonata-natriya-vydelilos" ) protected _get => array(0) protected _post => array(0) protected _cookies => array(1) ( "last_url" => string(104) "https://uznavalka.pro/subject/geometry/q/16687539/Tsentr-kola-vpisanogo-v-rivnobedreniy-trikutnik-d.html" ) protected _client => object Request_Client_Internal(9){ protected _previous_environment => NULL protected _cache => NULL protected _follow => bool FALSE protected _follow_headers => array(1) ( 0 => string(13) "Authorization" ) protected _strict_redirect => bool TRUE protected _header_callbacks => array(1) ( "Location" => string(34) "Request_Client::on_header_location" ) protected _max_callback_depth => integer 5 protected _callback_depth => integer 1 protected _callback_params => array(0) }}1object Response(5)
{ protected _status => integer 200 protected _header => object HTTP_Header(0){ }protected _body => string(0) "" protected _cookies => array(0) protected _protocol => string(8) "HTTP/2.0" }109 $orig_response = $response = Response::factory(array('_protocol' => $request->protocol())); 110 111 if (($cache = $this->cache()) instanceof HTTP_Cache) 112 return $cache->execute($this, $request, $response); 113 114 $response = $this->execute_request($request, $response); 115 116 // Execute response callbacks 117 foreach ($this->header_callbacks() as $header => $callback) 118 { 119 if ($response->headers($header)) -
SYSPATH/classes/Kohana/Request.php [ 986 ] » Kohana_Request_Client->execute(arguments)
0object Request(19)
{ protected _requested_with => NULL protected _method => string(3) "GET" protected _protocol => string(8) "HTTP/2.0" protected _secure => bool TRUE protected _referrer => NULL protected _route => object Route(5){ protected _filters => array(0) protected _uri => string(50) "subject/<category_url>/q/<task_id>/<task_url>.html" protected _regex => array(2) ( "task_id" => string(3) "\d+" "task_url" => string(2) ".*" ) protected _defaults => array(3) ( "directory" => string(5) "Index" "controller" => string(4) "Task" "action" => string(5) "index" ) protected _route_regex => string(86) "#^subject/(?P<category_url>[^/.,;?\n]++)/q/(?P<task_id>\d+)/(?P<task_url>.*)\.html$#uD" }protected _routes => array(0) protected _header => object HTTP_Header(0){ }protected _body => NULL protected _directory => string(5) "Index" protected _controller => string(4) "Task" protected _action => string(5) "index" protected _uri => string(84) "subject/chemistry/q/5872829/Pri-nagrevanii-20g-gidrokarbonata-natriya-vydelilos.html" protected _external => bool FALSE protected _params => array(3) ( "category_url" => string(9) "chemistry" "task_id" => string(7) "5872829" "task_url" => string(51) "Pri-nagrevanii-20g-gidrokarbonata-natriya-vydelilos" ) protected _get => array(0) protected _post => array(0) protected _cookies => array(1) ( "last_url" => string(104) "https://uznavalka.pro/subject/geometry/q/16687539/Tsentr-kola-vpisanogo-v-rivnobedreniy-trikutnik-d.html" ) protected _client => object Request_Client_Internal(9){ protected _previous_environment => NULL protected _cache => NULL protected _follow => bool FALSE protected _follow_headers => array(1) ( 0 => string(13) "Authorization" ) protected _strict_redirect => bool TRUE protected _header_callbacks => array(1) ( "Location" => string(34) "Request_Client::on_header_location" ) protected _max_callback_depth => integer 5 protected _callback_depth => integer 1 protected _callback_params => array(0) }}981 throw new Request_Exception('Unable to execute :uri without a Kohana_Request_Client', array( 982 ':uri' => $this->_uri, 983 )); 984 } 985 986 return $this->_client->execute($this); 987 } 988 989 /** 990 * Returns whether this request is the initial request Kohana received. 991 * Can be used to test for sub requests. -
DOCROOT/index.php [ 137 ] » Kohana_Request->execute()
132 /** 133 * Execute the main request. A source of the URI can be passed, eg: $_SERVER['PATH_INFO']. 134 * If no source is specified, the URI will be automatically detected. 135 */ 136 echo Request::factory(TRUE, array(), FALSE) 137 ->execute() 138 ->send_headers(TRUE) 139 ->body(); 140 }
Environment
Included files (128)
DOCROOT/index.php |
APPPATH/bootstrap.php |
SYSPATH/classes/Kohana/Core.php |
SYSPATH/classes/Kohana.php |
SYSPATH/classes/I18n.php |
SYSPATH/classes/Kohana/I18n.php |
SYSPATH/classes/HTTP.php |
SYSPATH/classes/Kohana/HTTP.php |
APPPATH/classes/Mystring.php |
SYSPATH/classes/Arr.php |
SYSPATH/classes/Kohana/Arr.php |
SYSPATH/classes/Log.php |
SYSPATH/classes/Kohana/Log.php |
SYSPATH/classes/Config.php |
SYSPATH/classes/Kohana/Config.php |
SYSPATH/classes/Log/File.php |
SYSPATH/classes/Kohana/Log/File.php |
SYSPATH/classes/Log/Writer.php |
SYSPATH/classes/Kohana/Log/Writer.php |
SYSPATH/classes/Config/File.php |
SYSPATH/classes/Kohana/Config/File.php |
SYSPATH/classes/Kohana/Config/File/Reader.php |
SYSPATH/classes/Kohana/Config/Reader.php |
SYSPATH/classes/Kohana/Config/Source.php |
MODPATH/simplehtmldom/init.php |
APPPATH/classes/Cache.php |
MODPATH/cache/classes/Kohana/Cache.php |
SYSPATH/classes/Cookie.php |
SYSPATH/classes/Kohana/Cookie.php |
APPPATH/classes/Date.php |
SYSPATH/classes/Kohana/Date.php |
APPPATH/route.php |
SYSPATH/classes/Route.php |
SYSPATH/classes/Kohana/Route.php |
SYSPATH/classes/Request.php |
SYSPATH/classes/Kohana/Request.php |
SYSPATH/classes/HTTP/Request.php |
SYSPATH/classes/Kohana/HTTP/Request.php |
SYSPATH/classes/HTTP/Message.php |
SYSPATH/classes/Kohana/HTTP/Message.php |
SYSPATH/classes/HTTP/Header.php |
SYSPATH/classes/Kohana/HTTP/Header.php |
SYSPATH/classes/Request/Client/Internal.php |
SYSPATH/classes/Kohana/Request/Client/Internal.php |
SYSPATH/classes/Request/Client.php |
SYSPATH/classes/Kohana/Request/Client.php |
SYSPATH/classes/Response.php |
SYSPATH/classes/Kohana/Response.php |
SYSPATH/classes/HTTP/Response.php |
SYSPATH/classes/Kohana/HTTP/Response.php |
SYSPATH/classes/Profiler.php |
SYSPATH/classes/Kohana/Profiler.php |
APPPATH/classes/Controller/Index/Task.php |
APPPATH/classes/Controller/Index.php |
APPPATH/classes/Controller/Base.php |
SYSPATH/classes/Controller/Template.php |
SYSPATH/classes/Kohana/Controller/Template.php |
SYSPATH/classes/Controller.php |
SYSPATH/classes/Kohana/Controller.php |
SYSPATH/classes/View.php |
SYSPATH/classes/Kohana/View.php |
APPPATH/classes/ORM.php |
MODPATH/orm/classes/Kohana/ORM.php |
SYSPATH/classes/Model.php |
SYSPATH/classes/Kohana/Model.php |
APPPATH/classes/Model/Category.php |
SYSPATH/classes/Inflector.php |
SYSPATH/classes/Kohana/Inflector.php |
SYSPATH/config/inflector.php |
SYSPATH/classes/Config/Group.php |
SYSPATH/classes/Kohana/Config/Group.php |
MODPATH/database/classes/Database.php |
MODPATH/database/classes/Kohana/Database.php |
MODPATH/database/config/database.php |
APPPATH/config/database.php |
MODPATH/database/classes/Database/MySQLi.php |
MODPATH/cache/config/cache.php |
APPPATH/config/cache.php |
MODPATH/cache/classes/Cache/Sqlite.php |
MODPATH/cache/classes/Kohana/Cache/Sqlite.php |
MODPATH/cache/classes/Cache/Tagging.php |
MODPATH/cache/classes/Kohana/Cache/Tagging.php |
MODPATH/cache/classes/Cache/GarbageCollect.php |
MODPATH/cache/classes/Kohana/Cache/GarbageCollect.php |
MODPATH/database/classes/Database/MySQLi/Result.php |
MODPATH/database/classes/Database/Result.php |
MODPATH/database/classes/Kohana/Database/Result.php |
MODPATH/database/classes/DB.php |
MODPATH/database/classes/Kohana/DB.php |
APPPATH/classes/Database/Query/Builder/Select.php |
MODPATH/database/classes/Kohana/Database/Query/Builder/Select.php |
MODPATH/database/classes/Database/Query/Builder/Where.php |
MODPATH/database/classes/Kohana/Database/Query/Builder/Where.php |
MODPATH/database/classes/Database/Query/Builder.php |
MODPATH/database/classes/Kohana/Database/Query/Builder.php |
MODPATH/database/classes/Database/Query.php |
MODPATH/database/classes/Kohana/Database/Query.php |
APPPATH/classes/Model/User.php |
MODPATH/socauth/config/socauth.php |
MODPATH/socauth/classes/SocialAuther/Adapter/Vk.php |
MODPATH/socauth/classes/SocialAuther/Adapter/AbstractAdapter.php |
MODPATH/socauth/classes/SocialAuther/Adapter/AdapterInterface.php |
MODPATH/socauth/classes/SocialAuther/Adapter/Odnoklassniki.php |
MODPATH/socauth/classes/SocialAuther/Adapter/Mailru.php |
MODPATH/socauth/classes/SocialAuther/Adapter/Facebook.php |
APPPATH/classes/Model/Task.php |
APPPATH/classes/Model/Answer.php |
APPPATH/classes/Model/Top.php |
APPPATH/views/v_base.php |
APPPATH/views/block/v_favicons.php |
APPPATH/views/index/v_task.php |
APPPATH/classes/Model/Human.php |
APPPATH/classes/Model/Lastname.php |
APPPATH/classes/Model/Firstname.php |
APPPATH/classes/Model/Tattach.php |
APPPATH/classes/Model/Aattach.php |
APPPATH/views/block/v_tasks_urls.php |
MODPATH/database/classes/Database/Expression.php |
MODPATH/database/classes/Kohana/Database/Expression.php |
MODPATH/database/classes/Database/Exception.php |
MODPATH/database/classes/Kohana/Database/Exception.php |
SYSPATH/classes/Kohana/Exception.php |
SYSPATH/classes/Kohana/Kohana/Exception.php |
SYSPATH/classes/Debug.php |
SYSPATH/classes/Kohana/Debug.php |
SYSPATH/views/kohana/error.php |
SYSPATH/classes/UTF8.php |
SYSPATH/classes/Kohana/UTF8.php |
Loaded extensions (57)
Core |
date |
libxml |
openssl |
pcre |
zlib |
filter |
hash |
Reflection |
SPL |
sodium |
session |
standard |
cgi-fcgi |
mysqlnd |
PDO |
xml |
bcmath |
bz2 |
calendar |
ctype |
curl |
dom |
mbstring |
fileinfo |
ftp |
gd |
gettext |
iconv |
imagick |
imap |
intl |
json |
ldap |
exif |
mysqli |
pdo_mysql |
pdo_sqlite |
Phar |
posix |
pspell |
readline |
shmop |
SimpleXML |
soap |
sockets |
sqlite3 |
sysvmsg |
sysvsem |
sysvshm |
tokenizer |
wddx |
xmlreader |
xmlwriter |
xsl |
zip |
Zend OPcache |
$_COOKIE
$_SERVER
TEMP |
string(19) "/home/uznavalka/tmp" |
TMPDIR |
string(19) "/home/uznavalka/tmp" |
TMP |
string(19) "/home/uznavalka/tmp" |
PATH |
string(28) "/usr/local/bin:/usr/bin:/bin" |
USER |
string(9) "uznavalka" |
HOME |
string(15) "/home/uznavalka" |
HTTP_COOKIE |
string(172) "last_url=ba77a5248f93702a1a85698ffcb4b18810ab29c2%7Ehttps%3A%2F%2Fuznavalka.pro%2Fsubject%2Fgeometry%2Fq%2F16687539%2FTsentr-kol …" |
HTTP_ACCEPT_ENCODING |
string(23) "gzip, br, zstd, deflate" |
HTTP_USER_AGENT |
string(103) "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" |
HTTP_ACCEPT |
string(3) "*/*" |
HTTP_HOST |
string(13) "uznavalka.pro" |
REDIRECT_STATUS |
string(3) "200" |
SERVER_NAME |
string(13) "uznavalka.pro" |
SERVER_PORT |
string(3) "443" |
SERVER_ADDR |
string(14) "65.108.110.111" |
REMOTE_PORT |
string(5) "10096" |
REMOTE_ADDR |
string(14) "216.73.216.223" |
SERVER_SOFTWARE |
string(12) "nginx/1.23.1" |
GATEWAY_INTERFACE |
string(7) "CGI/1.1" |
HTTPS |
string(2) "on" |
REQUEST_SCHEME |
string(5) "https" |
SERVER_PROTOCOL |
string(8) "HTTP/2.0" |
DOCUMENT_ROOT |
string(45) "/home/uznavalka/web/uznavalka.pro/public_html" |
DOCUMENT_URI |
string(85) "/subject/chemistry/q/5872829/Pri-nagrevanii-20g-gidrokarbonata-natriya-vydelilos.html" |
REQUEST_URI |
string(85) "/subject/chemistry/q/5872829/Pri-nagrevanii-20g-gidrokarbonata-natriya-vydelilos.html" |
SCRIPT_NAME |
string(85) "/subject/chemistry/q/5872829/Pri-nagrevanii-20g-gidrokarbonata-natriya-vydelilos.html" |
CONTENT_LENGTH |
string(0) "" |
CONTENT_TYPE |
string(0) "" |
REQUEST_METHOD |
string(3) "GET" |
QUERY_STRING |
string(0) "" |
SCRIPT_FILENAME |
string(55) "/home/uznavalka/web/uznavalka.pro/public_html/index.php" |
FCGI_ROLE |
string(9) "RESPONDER" |
PHP_SELF |
string(85) "/subject/chemistry/q/5872829/Pri-nagrevanii-20g-gidrokarbonata-natriya-vydelilos.html" |
REQUEST_TIME_FLOAT |
float 1778710052,4563 |
REQUEST_TIME |
integer 1778710052 |
-
Математика
-
Литература
-
Алгебра
-
Русский язык
-
Геометрия
-
Английский язык
-
Химия
-
Физика
-
Биология
-
Другие предметы
-
История
-
Обществознание
-
Окружающий мир
-
География
-
Українська мова
-
Информатика
-
Українська література
-
Қазақ тiлi
-
Экономика
-
Музыка
-
Право
-
Беларуская мова
-
Французский язык
-
Немецкий язык
-
МХК
-
ОБЖ
-
Психология
-
Физкультура и спорт
-
Астрономия
-
Кыргыз тили
-
Оʻzbek tili
