You are about to finish your registration. Please check your mailbox (including spam folder). There should be a letter with a confirmation link. Check setting to make sure that your e-mail address is correct.
Send letter againMongoDB\Driver\Exception\ConnectionTimeoutException [ 4 ]:
/www/coin-brothers.com/vendor/mongodb/mongodb/src/Operation/Find.php [ 337 ]
332 $inTransaction = isset($this->options['session']) && $this->options['session']->isInTransaction();
333 if ($inTransaction && isset($this->options['readConcern'])) {
334 throw UnsupportedException::readConcernNotSupportedInTransaction();
335 }
336
337 $cursor = $server->executeQuery($this->databaseName . '.' . $this->collectionName, new Query($this->filter, $this->createQueryOptions()), $this->createExecuteOptions());
338
339 if (isset($this->options['typeMap'])) {
340 $cursor->setTypeMap($this->options['typeMap']);
341 }
342
-
/www/coin-brothers.com/vendor/mongodb/mongodb/src/Operation/Find.php [ 337 ] » MongoDB\Driver\Server->executeQuery(arguments)
0
string(23) "coinbrothers.coin_shape"
1
object MongoDB\Driver\Query(0)
{ }
2
array(1) ( "readPreference" => object MongoDB\Driver\ReadPreference(1)
{ public mode => string(7) "primary" }
)332 $inTransaction = isset($this->options['session']) && $this->options['session']->isInTransaction(); 333 if ($inTransaction && isset($this->options['readConcern'])) { 334 throw UnsupportedException::readConcernNotSupportedInTransaction(); 335 } 336 337 $cursor = $server->executeQuery($this->databaseName . '.' . $this->collectionName, new Query($this->filter, $this->createQueryOptions()), $this->createExecuteOptions()); 338 339 if (isset($this->options['typeMap'])) { 340 $cursor->setTypeMap($this->options['typeMap']); 341 } 342
-
/www/coin-brothers.com/vendor/mongodb/mongodb/src/Operation/FindOne.php [ 128 ] » MongoDB\Operation\Find->execute(arguments)
0
object MongoDB\Driver\Server(0)
{ }
123 * @throws UnsupportedException if collation or read concern is used and unsupported 124 * @throws DriverRuntimeException for other driver errors (e.g. connection errors) 125 */ 126 public function execute(Server $server) 127 { 128 $cursor = $this->find->execute($server); 129 $document = current($cursor->toArray()); 130 131 return $document === false ? null : $document; 132 } 133
-
/www/coin-brothers.com/vendor/mongodb/mongodb/src/Collection.php [ 696 ] » MongoDB\Operation\FindOne->execute(arguments)
0
object MongoDB\Driver\Server(0)
{ }
691 $options['typeMap'] = $this->typeMap; 692 } 693 694 $operation = new FindOne($this->databaseName, $this->collectionName, $filter, $options); 695 696 return $operation->execute($server); 697 } 698 699 /** 700 * Finds a single document and deletes it, returning the original. 701 *
-
APPPATH/classes/Backend/Mongo/CCoinShape.php [ 96 ] » MongoDB\Collection->findOne(arguments)
0
array(1) ( "_id" => object MongoDB\BSON\ObjectId(1)
{ public oid => string(24) "5310767cb3569e5c608b4980" }
)91 * @return Model_CoinShape object 92 */ 93 public function get_by_dbref($dbref) 94 { 95 $collection = self::$mongo->selectCollection('coin_shape'); 96 $shape = $collection->findOne(['_id' => $dbref['$id']]); 97 98 return new Model_CoinShape($shape->getArrayCopy()); 99 } 100 101 /**
-
APPPATH/classes/Backend/Base.php [ 30 ] » Backend_Mongo_CCoinShape->get_by_dbref(arguments)
0
object MongoDB\Model\BSONDocument(2)
{ public $ref => string(10) "coin_shape" public $id => object MongoDB\BSON\ObjectId(1)
{ public oid => string(24) "5310767cb3569e5c608b4980" }
}25 //{ // если данные запроса уже закэшированы 26 // $data = Helper_DBCache::get_cache_data($cache); 27 //} 28 //else 29 //{ // если не закэшированы, то кэшируем 30 $data = call_user_func_array(array($class_name::factory(), $name), $arguments); 31 // Helper_DBCache::set_cache_data($cache, $data); 32 //} 33 34 return $data; 35 }
-
APPPATH/classes/Model/CCoinShape.php [ 68 ] » Backend_Base->__call(arguments)
0
string(12) "get_by_dbref"
1
array(1) ( 0 => object MongoDB\Model\BSONDocument(2)
{ public $ref => string(10) "coin_shape" public $id => object MongoDB\BSON\ObjectId(1)
){ public oid => string(24) "5310767cb3569e5c608b4980" }
}63 * @param $dbref DBRef 64 * @return Model_CoinShape object 65 */ 66 public function get_by_dbref($dbref) 67 { 68 return $this->c_coin_shape->get_by_dbref($dbref); 69 } 70 71 /** 72 * Сохранение 73 * @param $info array
-
APPPATH/classes/Model/Coin.php [ 1218 ] » Model_CCoinShape->get_by_dbref(arguments)
0
object MongoDB\Model\BSONDocument(2)
{ public $ref => string(10) "coin_shape" public $id => object MongoDB\BSON\ObjectId(1)
{ public oid => string(24) "5310767cb3569e5c608b4980" }
}1213 { 1214 if ( ! isset($this->info['shape']) || !$this->info['shape']) 1215 return FALSE; 1216 1217 $ccoin_shape = new Model_CCoinShape; 1218 $shape = $ccoin_shape->get_by_dbref($this->info['shape']); 1219 1220 return $shape; 1221 } 1222 1223 /**
-
APPPATH/views/coin/index.php [ 22 ] » Model_Coin->get_shape()
17 18 $rulers = $coin->get_rulers(); 19 20 $metal = $coin->get_metal(); 21 22 $shape = $coin->get_shape(); 23 $currency = $coin->get_currency(); 24 $country = $coin->get_country(); 25 26 $mintages = array(); 27 if($coin->get_mintages())
-
SYSPATH/classes/Kohana/View.php [ 61 ] » include(arguments)
0
string(62) "/www/coin-brothers.com/kohana/application/views/coin/index.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)
0
string(63) "/www/coin-brothers.com/kohana/application/views//coin/index.php"
1
array(13) ( "curr_user" => object Model_User(3)
{ private db => object MongoDB\Database(6)
"user" => object Model_User(3){ private databaseName => string(12) "coinbrothers" private manager => object MongoDB\Driver\Manager(0)
private empty_collection_stat => array(9) ( "doubles" => integer 0 "collection" => integer 0 "wishlist" => integer 0 "doubles_country" => integer 0 "collection_country" => integer 0 "wishlist_country" => integer 0 "feedback" => integer 0 "store" => integer 0 "cart" => integer 0 ) protected info => array(0) }{ }
private readConcern => object MongoDB\Driver\ReadConcern(0){ }
private readPreference => object MongoDB\Driver\ReadPreference(1){ public mode => string(7) "primary" }
private typeMap => array(3) ( "array" => string(23) "MongoDB\Model\BSONArray" "document" => string(26) "MongoDB\Model\BSONDocument" "root" => string(26) "MongoDB\Model\BSONDocument" ) private writeConcern => object MongoDB\Driver\WriteConcern(0){ }
}{ private db => object MongoDB\Database(6)
"can_edit" => bool TRUE "coin" => object Model_Coin(1){ private databaseName => string(12) "coinbrothers" private manager => object MongoDB\Driver\Manager(0)
private empty_collection_stat => array(9) ( "doubles" => integer 0 "collection" => integer 0 "wishlist" => integer 0 "doubles_country" => integer 0 "collection_country" => integer 0 "wishlist_country" => integer 0 "feedback" => integer 0 "store" => integer 0 "cart" => integer 0 ) protected info => array(0) }{ }
private readConcern => object MongoDB\Driver\ReadConcern(0){ }
private readPreference => object MongoDB\Driver\ReadPreference(1){ public mode => string(7) "primary" }
private typeMap => array(3) ( "array" => string(23) "MongoDB\Model\BSONArray" "document" => string(26) "MongoDB\Model\BSONDocument" "root" => string(26) "MongoDB\Model\BSONDocument" ) private writeConcern => object MongoDB\Driver\WriteConcern(0){ }
}{ protected info => array(57) ( "_id" => object MongoDB\BSON\ObjectId(1)
"years" => array(1) ( 0 => string(4) "2021" ) "years_str" => string(7) "2021 AD" "price" => bool FALSE "market_coins" => array(0) "buyurl" => string(218) "face_value=100¤cy=Pounds&country=United+Kingdom+%28Great+Britain%29&province=&material=gold&year_from=2021&year_to=2021&se …" "swap" => array(0) "similar_coins" => array(3) ( 0 => array(11) ( "title" => string(58) "1 Pound 2021, United Kingdom (Great Britain), Elizabeth II" "info" => string(48) "5th portrait, Half-Ounce Silver Proof, Mr. Happy" "info1" => string(118) "<a href="/catalog/series/50th_anniversary_of_the_mr_men_little_miss">50th Anniversary of the Mr. Men & Little Miss</a>" "info2" => string(26) "Silver, 15.71 g, ⌀ 27 mm" "coin" => array(49) ( "type" => string(37) "Commemorative issue (Non-circulating)" "typtye" => string(42) "Commemorative issue (Non-circulating) coin" "code" => string(8) "coin6581" "face_value" => string(1) "1" "shop_url" => string(206) "face_value=1¤cy=Pound&country=United+Kingdom+%28Great+Britain%29&province=&material=silver&year_from=2021&year_to=2021&ser …" "sellers_count" => integer 0 "currency" => string(5) "Pound" "c_ountry_p_rovince" => string(30) "United Kingdom (Great Britain)" "country" => string(30) "United Kingdom (Great Britain)" "country_code" => string(14) "united_kingdom" "country_name" => string(30) "United Kingdom (Great Britain)" "province" => string(0) "" "year" => string(4) "2021" "km" => string(0) "" "kpm" => string(0) "" "kkk" => string(0) "" "ruler" => string(12) "Elizabeth II" "variation" => string(37) "5th portrait, Half-Ounce Silver Proof" "topic" => string(9) "Mr. Happy" "series" => string(45) "50th Anniversary of the Mr. Men & Little Miss" "s_er_ie_s" => string(143) "<a href="https://coin-brothers.com/catalog/series/50th_anniversary_of_the_mr_men_little_miss">50th Anniversary of the Mr. Men & …" "material" => string(6) "Silver" "weight" => string(7) "15.71 g" "diametr" => string(9) "⌀ 27 mm" "width" => string(0) "" "size" => string(13) "⌀ 27 mm" "obverse" => string(86) "/photos/United_Kingdom_(Great_Britain)_Pound_1/Mr._Happy_2021_19.02.2021_01.34-125.jpg" "reverse" => string(89) "/photos/United_Kingdom_(Great_Britain)_Pound_1/Mr._Happy_2021_19.02.2021_01.34_01-125.jpg" "obverse_m" => string(86) "/photos/United_Kingdom_(Great_Britain)_Pound_1/Mr._Happy_2021_19.02.2021_01.34-125.jpg" "reverse_m" => string(89) "/photos/United_Kingdom_(Great_Britain)_Pound_1/Mr._Happy_2021_19.02.2021_01.34_01-125.jpg" "obverse_b" => string(82) "/photos/United_Kingdom_(Great_Britain)_Pound_1/Mr._Happy_2021_19.02.2021_01.34.jpg" "reverse_b" => string(85) "/photos/United_Kingdom_(Great_Britain)_Pound_1/Mr._Happy_2021_19.02.2021_01.34_01.jpg" "obverse_c" => string(0) "" "reverse_c" => string(0) "" "statistic" => array(5) ( "doubles" => integer 0 "collection" => integer 0 "count" => integer 0 "swap" => bool FALSE "likes" => integer 0 ) "talias" => string(0) "" "user_like" => integer 0 "mi_nts" => string(10) "Royal Mint" "face_value_for_path" => string(1) "1" "topiscer" => string(9) "Mr. Happy" "metaser" => string(53) "series: 50th Anniversary of the Mr. Men & Little Miss" "metatop" => string(16) "topic: Mr. Happy" "date" => integer 1613687671 "alt" => string(116) "1 Pound 2021, United Kingdom (Great Britain), Elizabeth II, 50th Anniversary of the Mr. Men & Little Miss, Mr. Happy" "obverse_alt" => string(116) "1 Pound 2021, United Kingdom (Great Britain), Elizabeth II, 50th Anniversary of the Mr. Men & Little Miss, Mr. Happy" "reverse_alt" => string(116) "1 Pound 2021, United Kingdom (Great Britain), Elizabeth II, 50th Anniversary of the Mr. Men & Little Miss, Mr. Happy" "photo" => string(88) "/photos/United_Kingdom_(Great_Britain)_Pound_1/Mr._Happy_2021_19.02.2021_01.34_01-60.jpg" "photo_m" => string(89) "/photos/United_Kingdom_(Great_Britain)_Pound_1/Mr._Happy_2021_19.02.2021_01.34_01-125.jpg" "photo_b" => string(85) "/photos/United_Kingdom_(Great_Britain)_Pound_1/Mr._Happy_2021_19.02.2021_01.34_01.jpg" ) "alt" => string(116) "1 Pound 2021, United Kingdom (Great Britain), Elizabeth II, 50th Anniversary of the Mr. Men & Little Miss, Mr. Happy" "statistic" => array(5) ( "doubles" => integer 0 "collection" => integer 0 "count" => integer 0 "swap" => bool FALSE "likes" => integer 0 ) "year" => string(4) "2021" "in_wishlist" => integer 0 "in_exchange" => integer 0 "in_collection" => integer 0 ) 1 => array(11) ( "title" => string(59) "2 Pounds 2021, United Kingdom (Great Britain), Elizabeth II" "info" => string(78) "5th portrait, One Ounce Silver Proof Coin, Little Miss Giggles with Mr. Strong" "info1" => string(118) "<a href="/catalog/series/50th_anniversary_of_the_mr_men_little_miss">50th Anniversary of the Mr. Men & Little Miss</a>" "info2" => string(29) "Silver, 31.21 g, ⌀ 38.61 mm" "coin" => array(49) ( "type" => string(37) "Commemorative issue (Non-circulating)" "typtye" => string(42) "Commemorative issue (Non-circulating) coin" "code" => string(8) "coin6584" "face_value" => string(1) "2" "shop_url" => string(233) "face_value=2¤cy=Pounds&country=United+Kingdom+%28Great+Britain%29&province=&material=silver&year_from=2021&year_to=2021&se …" "sellers_count" => integer 0 "currency" => string(6) "Pounds" "c_ountry_p_rovince" => string(30) "United Kingdom (Great Britain)" "country" => string(30) "United Kingdom (Great Britain)" "country_code" => string(14) "united_kingdom" "country_name" => string(30) "United Kingdom (Great Britain)" "province" => string(0) "" "year" => string(4) "2021" "km" => string(0) "" "kpm" => string(0) "" "kkk" => string(0) "" "ruler" => string(12) "Elizabeth II" "variation" => string(41) "5th portrait, One Ounce Silver Proof Coin" "topic" => string(35) "Little Miss Giggles with Mr. Strong" "series" => string(45) "50th Anniversary of the Mr. Men & Little Miss" "s_er_ie_s" => string(143) "<a href="https://coin-brothers.com/catalog/series/50th_anniversary_of_the_mr_men_little_miss">50th Anniversary of the Mr. Men & …" "material" => string(6) "Silver" "weight" => string(7) "31.21 g" "diametr" => string(12) "⌀ 38.61 mm" "width" => string(0) "" "size" => string(16) "⌀ 38.61 mm" "obverse" => string(113) "/photos/United_Kingdom_(Great_Britain)_Pounds_2/Little_Miss_Giggles_with_Mr._Strong_2021_19.02.2021_01.58-125.jpg" "reverse" => string(116) "/photos/United_Kingdom_(Great_Britain)_Pounds_2/Little_Miss_Giggles_with_Mr._Strong_2021_19.02.2021_01.58_01-125.jpg" "obverse_m" => string(113) "/photos/United_Kingdom_(Great_Britain)_Pounds_2/Little_Miss_Giggles_with_Mr._Strong_2021_19.02.2021_01.58-125.jpg" "reverse_m" => string(116) "/photos/United_Kingdom_(Great_Britain)_Pounds_2/Little_Miss_Giggles_with_Mr._Strong_2021_19.02.2021_01.58_01-125.jpg" "obverse_b" => string(109) "/photos/United_Kingdom_(Great_Britain)_Pounds_2/Little_Miss_Giggles_with_Mr._Strong_2021_19.02.2021_01.58.jpg" "reverse_b" => string(112) "/photos/United_Kingdom_(Great_Britain)_Pounds_2/Little_Miss_Giggles_with_Mr._Strong_2021_19.02.2021_01.58_01.jpg" "obverse_c" => string(0) "" "reverse_c" => string(0) "" "statistic" => array(5) ( "doubles" => integer 0 "collection" => integer 0 "count" => integer 0 "swap" => bool FALSE "likes" => integer 0 ) "talias" => string(0) "" "user_like" => integer 0 "mi_nts" => string(10) "Royal Mint" "face_value_for_path" => string(1) "2" "topiscer" => string(35) "Little Miss Giggles with Mr. Strong" "metaser" => string(53) "series: 50th Anniversary of the Mr. Men & Little Miss" "metatop" => string(42) "topic: Little Miss Giggles with Mr. Strong" "date" => integer 1613689134 "alt" => string(143) "2 Pounds 2021, United Kingdom (Great Britain), Elizabeth II, 50th Anniversary of the Mr. Men & Little Miss, Little Miss Giggles …" "obverse_alt" => string(143) "2 Pounds 2021, United Kingdom (Great Britain), Elizabeth II, 50th Anniversary of the Mr. Men & Little Miss, Little Miss Giggles …" "reverse_alt" => string(143) "2 Pounds 2021, United Kingdom (Great Britain), Elizabeth II, 50th Anniversary of the Mr. Men & Little Miss, Little Miss Giggles …" "photo" => string(115) "/photos/United_Kingdom_(Great_Britain)_Pounds_2/Little_Miss_Giggles_with_Mr._Strong_2021_19.02.2021_01.58_01-60.jpg" "photo_m" => string(116) "/photos/United_Kingdom_(Great_Britain)_Pounds_2/Little_Miss_Giggles_with_Mr._Strong_2021_19.02.2021_01.58_01-125.jpg" "photo_b" => string(112) "/photos/United_Kingdom_(Great_Britain)_Pounds_2/Little_Miss_Giggles_with_Mr._Strong_2021_19.02.2021_01.58_01.jpg" ) "alt" => string(143) "2 Pounds 2021, United Kingdom (Great Britain), Elizabeth II, 50th Anniversary of the Mr. Men & Little Miss, Little Miss Giggles …" "statistic" => array(5) ( "doubles" => integer 0 "collection" => integer 0 "count" => integer 0 "swap" => bool FALSE "likes" => integer 0 ) "year" => string(4) "2021" "in_wishlist" => integer 0 "in_exchange" => integer 0 "in_collection" => integer 0 ) 2 => array(11) ( "title" => string(59) "2 Pounds 2021, United Kingdom (Great Britain), Elizabeth II" "info" => string(63) "5th portrait, One Ounce Silver Proof Coin, Little Miss Sunshine" "info1" => string(118) "<a href="/catalog/series/50th_anniversary_of_the_mr_men_little_miss">50th Anniversary of the Mr. Men & Little Miss</a>" "info2" => string(29) "Silver, 31.21 g, ⌀ 38.61 mm" "coin" => array(49) ( "type" => string(37) "Commemorative issue (Non-circulating)" "typtye" => string(42) "Commemorative issue (Non-circulating) coin" "code" => string(8) "coin6583" "face_value" => string(1) "2" "shop_url" => string(218) "face_value=2¤cy=Pounds&country=United+Kingdom+%28Great+Britain%29&province=&material=silver&year_from=2021&year_to=2021&se …" "sellers_count" => integer 0 "currency" => string(6) "Pounds" "c_ountry_p_rovince" => string(30) "United Kingdom (Great Britain)" "country" => string(30) "United Kingdom (Great Britain)" "country_code" => string(14) "united_kingdom" "country_name" => string(30) "United Kingdom (Great Britain)" "province" => string(0) "" "year" => string(4) "2021" "km" => string(0) "" "kpm" => string(0) "" "kkk" => string(0) "" "ruler" => string(12) "Elizabeth II" "variation" => string(41) "5th portrait, One Ounce Silver Proof Coin" "topic" => string(20) "Little Miss Sunshine" "series" => string(45) "50th Anniversary of the Mr. Men & Little Miss" "s_er_ie_s" => string(143) "<a href="https://coin-brothers.com/catalog/series/50th_anniversary_of_the_mr_men_little_miss">50th Anniversary of the Mr. Men & …" "material" => string(6) "Silver" "weight" => string(7) "31.21 g" "diametr" => string(12) "⌀ 38.61 mm" "width" => string(0) "" "size" => string(16) "⌀ 38.61 mm" "obverse" => string(98) "/photos/United_Kingdom_(Great_Britain)_Pounds_2/Little_Miss_Sunshine_2021_19.02.2021_01.56-125.jpg" "reverse" => string(101) "/photos/United_Kingdom_(Great_Britain)_Pounds_2/Little_Miss_Sunshine_2021_19.02.2021_01.56_01-125.jpg" "obverse_m" => string(98) "/photos/United_Kingdom_(Great_Britain)_Pounds_2/Little_Miss_Sunshine_2021_19.02.2021_01.56-125.jpg" "reverse_m" => string(101) "/photos/United_Kingdom_(Great_Britain)_Pounds_2/Little_Miss_Sunshine_2021_19.02.2021_01.56_01-125.jpg" "obverse_b" => string(94) "/photos/United_Kingdom_(Great_Britain)_Pounds_2/Little_Miss_Sunshine_2021_19.02.2021_01.56.jpg" "reverse_b" => string(97) "/photos/United_Kingdom_(Great_Britain)_Pounds_2/Little_Miss_Sunshine_2021_19.02.2021_01.56_01.jpg" "obverse_c" => string(0) "" "reverse_c" => string(0) "" "statistic" => array(5) ( "doubles" => integer 0 "collection" => integer 0 "count" => integer 0 "swap" => bool FALSE "likes" => integer 0 ) "talias" => string(0) "" "user_like" => integer 0 "mi_nts" => string(10) "Royal Mint" "face_value_for_path" => string(1) "2" "topiscer" => string(20) "Little Miss Sunshine" "metaser" => string(53) "series: 50th Anniversary of the Mr. Men & Little Miss" "metatop" => string(27) "topic: Little Miss Sunshine" "date" => integer 1613689009 "alt" => string(128) "2 Pounds 2021, United Kingdom (Great Britain), Elizabeth II, 50th Anniversary of the Mr. Men & Little Miss, Little Miss Sunshine" "obverse_alt" => string(128) "2 Pounds 2021, United Kingdom (Great Britain), Elizabeth II, 50th Anniversary of the Mr. Men & Little Miss, Little Miss Sunshine" "reverse_alt" => string(128) "2 Pounds 2021, United Kingdom (Great Britain), Elizabeth II, 50th Anniversary of the Mr. Men & Little Miss, Little Miss Sunshine" "photo" => string(100) "/photos/United_Kingdom_(Great_Britain)_Pounds_2/Little_Miss_Sunshine_2021_19.02.2021_01.56_01-60.jpg" "photo_m" => string(101) "/photos/United_Kingdom_(Great_Britain)_Pounds_2/Little_Miss_Sunshine_2021_19.02.2021_01.56_01-125.jpg" "photo_b" => string(97) "/photos/United_Kingdom_(Great_Britain)_Pounds_2/Little_Miss_Sunshine_2021_19.02.2021_01.56_01.jpg" ) "alt" => string(128) "2 Pounds 2021, United Kingdom (Great Britain), Elizabeth II, 50th Anniversary of the Mr. Men & Little Miss, Little Miss Sunshine" "statistic" => array(5) ( "doubles" => integer 0 "collection" => integer 0 "count" => integer 0 "swap" => bool FALSE "likes" => integer 0 ) "year" => string(4) "2021" "in_wishlist" => integer 0 "in_exchange" => integer 0 "in_collection" => integer 0 ) ) "similar_more" => array(2) ( "title" => string(8) "Show all" "link" => string(58) "/catalog/series/50th_anniversary_of_the_mr_men_little_miss" ) "acoin" => array(8) ( "title" => string(46) "100 Pounds United Kingdom (Great Britain) 2021" "description" => string(194) "Full details about the coin United Kingdom (Great Britain), 100 Pounds 2021, 50th Anniversary of the Mr. Men & Little Miss, Litt …" "ogdescription" => string(160) "Coin Details: Elizabeth II, 5th portrait, One Ounce Gold Proof, Little Miss Sunshine, 50th Anniversary of the Mr. Men & Little M …" "keywords" => string(206) "Commemorative issue (Non-circulating) coin, Gold coin, 100 Pounds 2021 United Kingdom (Great Britain), 5th portrait, One Ounce G …" "coin" => array(49) ( "type" => string(37) "Commemorative issue (Non-circulating)" "typtye" => string(42) "Commemorative issue (Non-circulating) coin" "code" => string(8) "coin6589" "face_value" => string(3) "100" "shop_url" => string(218) "face_value=100¤cy=Pounds&country=United+Kingdom+%28Great+Britain%29&province=&material=gold&year_from=2021&year_to=2021&se …" "sellers_count" => integer 0 "currency" => string(6) "Pounds" "c_ountry_p_rovince" => string(30) "United Kingdom (Great Britain)" "country" => string(30) "United Kingdom (Great Britain)" "country_code" => string(14) "united_kingdom" "country_name" => string(30) "United Kingdom (Great Britain)" "province" => string(0) "" "year" => string(4) "2021" "km" => string(0) "" "kpm" => string(0) "" "kkk" => string(0) "" "ruler" => string(12) "Elizabeth II" "variation" => string(34) "5th portrait, One Ounce Gold Proof" "topic" => string(20) "Little Miss Sunshine" "series" => string(45) "50th Anniversary of the Mr. Men & Little Miss" "s_er_ie_s" => string(143) "<a href="https://coin-brothers.com/catalog/series/50th_anniversary_of_the_mr_men_little_miss">50th Anniversary of the Mr. Men & …" "material" => string(4) "Gold" "weight" => string(7) "31.21 g" "diametr" => string(12) "⌀ 32.69 mm" "width" => string(0) "" "size" => string(16) "⌀ 32.69 mm" "obverse" => string(99) "/photos/United_Kingdom_(Great_Britain)_Pounds_100/Little_Miss_Sunshine_2021_19.02.2021_20.52-60.jpg" "reverse" => string(102) "/photos/United_Kingdom_(Great_Britain)_Pounds_100/Little_Miss_Sunshine_2021_19.02.2021_20.52_01-60.jpg" "obverse_m" => string(100) "/photos/United_Kingdom_(Great_Britain)_Pounds_100/Little_Miss_Sunshine_2021_19.02.2021_20.52-125.jpg" "reverse_m" => string(103) "/photos/United_Kingdom_(Great_Britain)_Pounds_100/Little_Miss_Sunshine_2021_19.02.2021_20.52_01-125.jpg" "obverse_b" => string(96) "/photos/United_Kingdom_(Great_Britain)_Pounds_100/Little_Miss_Sunshine_2021_19.02.2021_20.52.jpg" "reverse_b" => string(99) "/photos/United_Kingdom_(Great_Britain)_Pounds_100/Little_Miss_Sunshine_2021_19.02.2021_20.52_01.jpg" "obverse_c" => string(0) "" "reverse_c" => string(0) "" "statistic" => array(5) ( "doubles" => integer 0 "collection" => integer 0 "count" => integer 0 "swap" => bool FALSE "likes" => integer 0 ) "talias" => string(0) "" "user_like" => integer 0 "mi_nts" => string(10) "Royal Mint" "face_value_for_path" => string(3) "100" "topiscer" => string(20) "Little Miss Sunshine" "metaser" => string(53) "series: 50th Anniversary of the Mr. Men & Little Miss" "metatop" => string(27) "topic: Little Miss Sunshine" "date" => integer 1613757142 "alt" => string(130) "100 Pounds 2021, United Kingdom (Great Britain), Elizabeth II, 50th Anniversary of the Mr. Men & Little Miss, Little Miss Sunshi …" "obverse_alt" => string(130) "100 Pounds 2021, United Kingdom (Great Britain), Elizabeth II, 50th Anniversary of the Mr. Men & Little Miss, Little Miss Sunshi …" "reverse_alt" => string(130) "100 Pounds 2021, United Kingdom (Great Britain), Elizabeth II, 50th Anniversary of the Mr. Men & Little Miss, Little Miss Sunshi …" "photo" => string(102) "/photos/United_Kingdom_(Great_Britain)_Pounds_100/Little_Miss_Sunshine_2021_19.02.2021_20.52_01-60.jpg" "photo_m" => string(103) "/photos/United_Kingdom_(Great_Britain)_Pounds_100/Little_Miss_Sunshine_2021_19.02.2021_20.52_01-125.jpg" "photo_b" => string(99) "/photos/United_Kingdom_(Great_Britain)_Pounds_100/Little_Miss_Sunshine_2021_19.02.2021_20.52_01.jpg" ) "alt" => string(130) "100 Pounds 2021, United Kingdom (Great Britain), Elizabeth II, 50th Anniversary of the Mr. Men & Little Miss, Little Miss Sunshi …" "statistic" => array(5) ( "doubles" => integer 0 "collection" => integer 0 "count" => integer 0 "swap" => bool FALSE "likes" => integer 0 ) "year" => string(4) "2021" ) ){ public oid => string(24) "602ffac43cbc75471c50b655" }
"status" => string(2) "ok" "code" => string(8) "coin6589" "variation" => string(34) "5th portrait, One Ounce Gold Proof" "face_value" => string(3) "100" "face_value_float" => float 100 "description" => string(1435) "Mr. Men is a French/British series of children's books by English author Roger Hargreaves commencing in 1971. From 1981, an acco …" "weight" => float 31.21 "diametr" => float 32.69 "width" => float 0 "height" => float 0 "side1" => float 0 "side2" => float 0 "side3" => float 0 "notches" => float 0 "sides" => float 0 "thickness" => float 0 "obverse" => object MongoDB\Model\BSONDocument(2){ public $ref => string(20) "coin_obverse_reverse" public $id => object MongoDB\BSON\ObjectId(1)
"reverse" => object MongoDB\Model\BSONDocument(2){ public oid => string(24) "602ffac33cbc75471c50b652" }
}{ public $ref => string(20) "coin_obverse_reverse" public $id => object MongoDB\BSON\ObjectId(1)
"currency" => object MongoDB\Model\BSONDocument(2){ public oid => string(24) "602ffac33cbc75471c50b653" }
}{ public $ref => string(13) "coin_currency" public $id => object MongoDB\BSON\ObjectId(1)
"currency_title" => string(6) "Pounds" "currency_weight" => integer 7 "country" => object MongoDB\Model\BSONDocument(2){ public oid => string(24) "5310767cb3569e5c608b4923" }
}{ public $ref => string(7) "country" public $id => object MongoDB\BSON\ObjectId(1)
"country_name" => string(30) "United Kingdom (Great Britain)" "edge" => object MongoDB\Model\BSONDocument(2){ public oid => string(24) "5310767cb3569e5c608b4849" }
}{ public $ref => string(9) "coin_edge" public $id => object MongoDB\BSON\ObjectId(1)
"photos" => object MongoDB\Model\BSONArray(3){ public oid => string(24) "602ffac23cbc75471c50b651" }
}{ public 0 => object MongoDB\Model\BSONDocument(2)
"cat_codes" => object MongoDB\Model\BSONArray(0){ public $ref => string(10) "coin_photo" public $id => object MongoDB\BSON\ObjectId(1)
public 1 => object MongoDB\Model\BSONDocument(2){ public oid => string(24) "602ffac43cbc75471c50b656" }
}{ public $ref => string(10) "coin_photo" public $id => object MongoDB\BSON\ObjectId(1)
public 2 => object MongoDB\Model\BSONDocument(2){ public oid => string(24) "602ffac43cbc75471c50b657" }
}{ public $ref => string(10) "coin_photo" public $id => object MongoDB\BSON\ObjectId(1)
}{ public oid => string(24) "602ffac53cbc75471c50b658" }
}{ }
"cat_ids" => object MongoDB\Model\BSONArray(0){ }
"km_number" => string(3) "KM#" "alignment" => string(5) "medal" "circulating" => string(15) "non-circulating" "mintages" => object MongoDB\Model\BSONArray(1){ public 0 => object MongoDB\Model\BSONDocument(2)
"min_year" => integer 2021 "rulers" => object MongoDB\Model\BSONArray(1){ public $ref => string(12) "coin_mintage" public $id => object MongoDB\BSON\ObjectId(1)
}{ public oid => string(24) "602ffac23cbc75471c50b650" }
}{ public 0 => object MongoDB\Model\BSONDocument(2)
"type" => object MongoDB\Model\BSONDocument(2){ public $ref => string(10) "coin_ruler" public $id => object MongoDB\BSON\ObjectId(1)
}{ public oid => string(24) "542ab5d1b3569ea6693c98b1" }
}{ public $ref => string(9) "coin_type" public $id => object MongoDB\BSON\ObjectId(1)
"shape" => object MongoDB\Model\BSONDocument(2){ public oid => string(24) "111111111111111111111182" }
}{ public $ref => string(10) "coin_shape" public $id => object MongoDB\BSON\ObjectId(1)
"serie" => object MongoDB\Model\BSONDocument(2){ public oid => string(24) "5310767cb3569e5c608b4980" }
}{ public $ref => string(10) "coin_serie" public $id => object MongoDB\BSON\ObjectId(1)
"topic" => object MongoDB\Model\BSONDocument(2){ public oid => string(24) "602ecb3735f52f7f646874a8" }
}{ public $ref => string(10) "coin_topic" public $id => object MongoDB\BSON\ObjectId(1)
"metal" => object MongoDB\Model\BSONDocument(2){ public oid => string(24) "602ed702e44d341ee361de78" }
}{ public $ref => string(10) "coin_metal" public $id => object MongoDB\BSON\ObjectId(1)
"fineness" => string(6) "0.9999" "history" => object MongoDB\Model\BSONArray(1){ public oid => string(24) "5310767cb3569e5c608b49ae" }
}{ public 0 => object MongoDB\Model\BSONDocument(2)
"date_add" => integer 1613757124 "last_modified" => integer 1613757124 "last_modifier" => string(19) "Alexander Malioukov" "last_modifier_id" => string(24) "531701d3c61adcb1df6cc7cd" "user_added" => string(24) "531701d3c61adcb1df6cc7cd" "max_year" => integer 2021 "province_name" => string(0) "" "coin_type_value" => integer 1 "serie_name" => string(45) "50th Anniversary of the Mr. Men & Little Miss" "topic_name" => string(20) "Little Miss Sunshine" "title_photo" => string(102) "/photos/United_Kingdom_(Great_Britain)_Pounds_100/Little_Miss_Sunshine_2021_19.02.2021_20.52-title.jpg" "moderator" => string(19) "Alexander Malioukov" "date_approve" => integer 1613757142 "mod_status" => string(2) "ok" "public" => integer 1 "search_text" => string(3599) "100 100 100 Pounds United Kingdom Great Britain Mr Men is a French/British series of childrens books by English author Roger Har …" ) }{ public $ref => string(12) "coin_history" public $id => object MongoDB\BSON\ObjectId(1)
}{ public oid => string(24) "602ffac43cbc75471c50b654" }
}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/index.php [ 4 ] » Kohana_View->__toString()
1 <?php defined('SYSPATH') OR die('No Direct Script Access');?> 2 3 <?=$header?> 4 <?=isset($content)?$content:''?> 5 <?=$footer?>
-
SYSPATH/classes/Kohana/View.php [ 61 ] » include(arguments)
0
string(57) "/www/coin-brothers.com/kohana/application/views/index.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)
0
string(57) "/www/coin-brothers.com/kohana/application/views/index.php"
1
array(5) ( "header" => object View(2)
{ protected _file => string(58) "/www/coin-brothers.com/kohana/application/views/header.php" protected _data => array(13) ( "styles" => array(0) "scripts" => array(0) "metas" => array(0) "keywords" => string(206) "Commemorative issue (Non-circulating) coin, Gold coin, 100 Pounds 2021 United Kingdom (Great Britain), 5th portrait, One Ounce G …" "descr" => NULL "user" => object Model_User(3)
"footer" => object View(2){ private db => object MongoDB\Database(6)
"new_soc_user" => integer 0 "auto_country" => bool FALSE "title" => string(69) "100 Pounds United Kingdom (Great Britain) 2021 | CoinBrothers Catalog" "description" => string(418) "Full details about the coin United Kingdom (Great Britain), 100 Pounds 2021, 50th Anniversary of the Mr. Men & Little Miss, Litt …" "ogdescription" => string(160) "Coin Details: Elizabeth II, 5th portrait, One Ounce Gold Proof, Little Miss Sunshine, 50th Anniversary of the Mr. Men & Little M …" "og_images" => array(1) ( 0 => string(102) "/photos/United_Kingdom_(Great_Britain)_Pounds_100/Little_Miss_Sunshine_2021_19.02.2021_20.52-title.jpg" ) "ogSize" => array(2) ( "w" => integer 490 "h" => integer 245 ) ) }{ private databaseName => string(12) "coinbrothers" private manager => object MongoDB\Driver\Manager(0)
private empty_collection_stat => array(9) ( "doubles" => integer 0 "collection" => integer 0 "wishlist" => integer 0 "doubles_country" => integer 0 "collection_country" => integer 0 "wishlist_country" => integer 0 "feedback" => integer 0 "store" => integer 0 "cart" => integer 0 ) protected info => array(0) }{ }
private readConcern => object MongoDB\Driver\ReadConcern(0){ }
private readPreference => object MongoDB\Driver\ReadPreference(1){ public mode => string(7) "primary" }
private typeMap => array(3) ( "array" => string(23) "MongoDB\Model\BSONArray" "document" => string(26) "MongoDB\Model\BSONDocument" "root" => string(26) "MongoDB\Model\BSONDocument" ) private writeConcern => object MongoDB\Driver\WriteConcern(0){ }
}{ protected _file => string(58) "/www/coin-brothers.com/kohana/application/views/footer.php" protected _data => array(0) }
"content" => object View(2){ protected _file => string(63) "/www/coin-brothers.com/kohana/application/views//coin/index.php" protected _data => array(13) ( "curr_user" => object Model_User(3)
"controller" => string(4) "Coin" "action" => string(5) "index" ){ private db => object MongoDB\Database(6)
"user" => object Model_User(3){ private databaseName => string(12) "coinbrothers" private manager => object MongoDB\Driver\Manager(0)
private empty_collection_stat => array(9) ( "doubles" => integer 0 "collection" => integer 0 "wishlist" => integer 0 "doubles_country" => integer 0 "collection_country" => integer 0 "wishlist_country" => integer 0 "feedback" => integer 0 "store" => integer 0 "cart" => integer 0 ) protected info => array(0) }{ }
private readConcern => object MongoDB\Driver\ReadConcern(0){ }
private readPreference => object MongoDB\Driver\ReadPreference(1){ public mode => string(7) "primary" }
private typeMap => array(3) ( "array" => string(23) "MongoDB\Model\BSONArray" "document" => string(26) "MongoDB\Model\BSONDocument" "root" => string(26) "MongoDB\Model\BSONDocument" ) private writeConcern => object MongoDB\Driver\WriteConcern(0){ }
}{ private db => object MongoDB\Database(6)
"can_edit" => bool TRUE "coin" => object Model_Coin(1){ private databaseName => string(12) "coinbrothers" private manager => object MongoDB\Driver\Manager(0)
private empty_collection_stat => array(9) ( "doubles" => integer 0 "collection" => integer 0 "wishlist" => integer 0 "doubles_country" => integer 0 "collection_country" => integer 0 "wishlist_country" => integer 0 "feedback" => integer 0 "store" => integer 0 "cart" => integer 0 ) protected info => array(0) }{ }
private readConcern => object MongoDB\Driver\ReadConcern(0){ }
private readPreference => object MongoDB\Driver\ReadPreference(1){ public mode => string(7) "primary" }
private typeMap => array(3) ( "array" => string(23) "MongoDB\Model\BSONArray" "document" => string(26) "MongoDB\Model\BSONDocument" "root" => string(26) "MongoDB\Model\BSONDocument" ) private writeConcern => object MongoDB\Driver\WriteConcern(0){ }
}{ protected info => array(57) ( "_id" => object MongoDB\BSON\ObjectId(1)
"years" => array(1) ( 0 => string(4) "2021" ) "years_str" => string(7) "2021 AD" "price" => bool FALSE "market_coins" => array(0) "buyurl" => string(218) "face_value=100¤cy=Pounds&country=United+Kingdom+%28Great+Britain%29&province=&material=gold&year_from=2021&year_to=2021&se …" "swap" => array(0) "similar_coins" => array(3) ( 0 => array(11) ( "title" => string(58) "1 Pound 2021, United Kingdom (Great Britain), Elizabeth II" "info" => string(48) "5th portrait, Half-Ounce Silver Proof, Mr. Happy" "info1" => string(118) "<a href="/catalog/series/50th_anniversary_of_the_mr_men_little_miss">50th Anniversary of the Mr. Men & Little Miss</a>" "info2" => string(26) "Silver, 15.71 g, ⌀ 27 mm" "coin" => array(49) ( "type" => string(37) "Commemorative issue (Non-circulating)" "typtye" => string(42) "Commemorative issue (Non-circulating) coin" "code" => string(8) "coin6581" "face_value" => string(1) "1" "shop_url" => string(206) "face_value=1¤cy=Pound&country=United+Kingdom+%28Great+Britain%29&province=&material=silver&year_from=2021&year_to=2021&ser …" "sellers_count" => integer 0 "currency" => string(5) "Pound" "c_ountry_p_rovince" => string(30) "United Kingdom (Great Britain)" "country" => string(30) "United Kingdom (Great Britain)" "country_code" => string(14) "united_kingdom" "country_name" => string(30) "United Kingdom (Great Britain)" "province" => string(0) "" "year" => string(4) "2021" "km" => string(0) "" "kpm" => string(0) "" "kkk" => string(0) "" "ruler" => string(12) "Elizabeth II" "variation" => string(37) "5th portrait, Half-Ounce Silver Proof" "topic" => string(9) "Mr. Happy" "series" => string(45) "50th Anniversary of the Mr. Men & Little Miss" "s_er_ie_s" => string(143) "<a href="https://coin-brothers.com/catalog/series/50th_anniversary_of_the_mr_men_little_miss">50th Anniversary of the Mr. Men & …" "material" => string(6) "Silver" "weight" => string(7) "15.71 g" "diametr" => string(9) "⌀ 27 mm" "width" => string(0) "" "size" => string(13) "⌀ 27 mm" "obverse" => string(86) "/photos/United_Kingdom_(Great_Britain)_Pound_1/Mr._Happy_2021_19.02.2021_01.34-125.jpg" "reverse" => string(89) "/photos/United_Kingdom_(Great_Britain)_Pound_1/Mr._Happy_2021_19.02.2021_01.34_01-125.jpg" "obverse_m" => string(86) "/photos/United_Kingdom_(Great_Britain)_Pound_1/Mr._Happy_2021_19.02.2021_01.34-125.jpg" "reverse_m" => string(89) "/photos/United_Kingdom_(Great_Britain)_Pound_1/Mr._Happy_2021_19.02.2021_01.34_01-125.jpg" "obverse_b" => string(82) "/photos/United_Kingdom_(Great_Britain)_Pound_1/Mr._Happy_2021_19.02.2021_01.34.jpg" "reverse_b" => string(85) "/photos/United_Kingdom_(Great_Britain)_Pound_1/Mr._Happy_2021_19.02.2021_01.34_01.jpg" "obverse_c" => string(0) "" "reverse_c" => string(0) "" "statistic" => array(5) ( "doubles" => integer 0 "collection" => integer 0 "count" => integer 0 "swap" => bool FALSE "likes" => integer 0 ) "talias" => string(0) "" "user_like" => integer 0 "mi_nts" => string(10) "Royal Mint" "face_value_for_path" => string(1) "1" "topiscer" => string(9) "Mr. Happy" "metaser" => string(53) "series: 50th Anniversary of the Mr. Men & Little Miss" "metatop" => string(16) "topic: Mr. Happy" "date" => integer 1613687671 "alt" => string(116) "1 Pound 2021, United Kingdom (Great Britain), Elizabeth II, 50th Anniversary of the Mr. Men & Little Miss, Mr. Happy" "obverse_alt" => string(116) "1 Pound 2021, United Kingdom (Great Britain), Elizabeth II, 50th Anniversary of the Mr. Men & Little Miss, Mr. Happy" "reverse_alt" => string(116) "1 Pound 2021, United Kingdom (Great Britain), Elizabeth II, 50th Anniversary of the Mr. Men & Little Miss, Mr. Happy" "photo" => string(88) "/photos/United_Kingdom_(Great_Britain)_Pound_1/Mr._Happy_2021_19.02.2021_01.34_01-60.jpg" "photo_m" => string(89) "/photos/United_Kingdom_(Great_Britain)_Pound_1/Mr._Happy_2021_19.02.2021_01.34_01-125.jpg" "photo_b" => string(85) "/photos/United_Kingdom_(Great_Britain)_Pound_1/Mr._Happy_2021_19.02.2021_01.34_01.jpg" ) "alt" => string(116) "1 Pound 2021, United Kingdom (Great Britain), Elizabeth II, 50th Anniversary of the Mr. Men & Little Miss, Mr. Happy" "statistic" => array(5) ( "doubles" => integer 0 "collection" => integer 0 "count" => integer 0 "swap" => bool FALSE "likes" => integer 0 ) "year" => string(4) "2021" "in_wishlist" => integer 0 "in_exchange" => integer 0 "in_collection" => integer 0 ) 1 => array(11) ( "title" => string(59) "2 Pounds 2021, United Kingdom (Great Britain), Elizabeth II" "info" => string(78) "5th portrait, One Ounce Silver Proof Coin, Little Miss Giggles with Mr. Strong" "info1" => string(118) "<a href="/catalog/series/50th_anniversary_of_the_mr_men_little_miss">50th Anniversary of the Mr. Men & Little Miss</a>" "info2" => string(29) "Silver, 31.21 g, ⌀ 38.61 mm" "coin" => array(49) ( "type" => string(37) "Commemorative issue (Non-circulating)" "typtye" => string(42) "Commemorative issue (Non-circulating) coin" "code" => string(8) "coin6584" "face_value" => string(1) "2" "shop_url" => string(233) "face_value=2¤cy=Pounds&country=United+Kingdom+%28Great+Britain%29&province=&material=silver&year_from=2021&year_to=2021&se …" "sellers_count" => integer 0 "currency" => string(6) "Pounds" "c_ountry_p_rovince" => string(30) "United Kingdom (Great Britain)" "country" => string(30) "United Kingdom (Great Britain)" "country_code" => string(14) "united_kingdom" "country_name" => string(30) "United Kingdom (Great Britain)" "province" => string(0) "" "year" => string(4) "2021" "km" => string(0) "" "kpm" => string(0) "" "kkk" => string(0) "" "ruler" => string(12) "Elizabeth II" "variation" => string(41) "5th portrait, One Ounce Silver Proof Coin" "topic" => string(35) "Little Miss Giggles with Mr. Strong" "series" => string(45) "50th Anniversary of the Mr. Men & Little Miss" "s_er_ie_s" => string(143) "<a href="https://coin-brothers.com/catalog/series/50th_anniversary_of_the_mr_men_little_miss">50th Anniversary of the Mr. Men & …" "material" => string(6) "Silver" "weight" => string(7) "31.21 g" "diametr" => string(12) "⌀ 38.61 mm" "width" => string(0) "" "size" => string(16) "⌀ 38.61 mm" "obverse" => string(113) "/photos/United_Kingdom_(Great_Britain)_Pounds_2/Little_Miss_Giggles_with_Mr._Strong_2021_19.02.2021_01.58-125.jpg" "reverse" => string(116) "/photos/United_Kingdom_(Great_Britain)_Pounds_2/Little_Miss_Giggles_with_Mr._Strong_2021_19.02.2021_01.58_01-125.jpg" "obverse_m" => string(113) "/photos/United_Kingdom_(Great_Britain)_Pounds_2/Little_Miss_Giggles_with_Mr._Strong_2021_19.02.2021_01.58-125.jpg" "reverse_m" => string(116) "/photos/United_Kingdom_(Great_Britain)_Pounds_2/Little_Miss_Giggles_with_Mr._Strong_2021_19.02.2021_01.58_01-125.jpg" "obverse_b" => string(109) "/photos/United_Kingdom_(Great_Britain)_Pounds_2/Little_Miss_Giggles_with_Mr._Strong_2021_19.02.2021_01.58.jpg" "reverse_b" => string(112) "/photos/United_Kingdom_(Great_Britain)_Pounds_2/Little_Miss_Giggles_with_Mr._Strong_2021_19.02.2021_01.58_01.jpg" "obverse_c" => string(0) "" "reverse_c" => string(0) "" "statistic" => array(5) ( "doubles" => integer 0 "collection" => integer 0 "count" => integer 0 "swap" => bool FALSE "likes" => integer 0 ) "talias" => string(0) "" "user_like" => integer 0 "mi_nts" => string(10) "Royal Mint" "face_value_for_path" => string(1) "2" "topiscer" => string(35) "Little Miss Giggles with Mr. Strong" "metaser" => string(53) "series: 50th Anniversary of the Mr. Men & Little Miss" "metatop" => string(42) "topic: Little Miss Giggles with Mr. Strong" "date" => integer 1613689134 "alt" => string(143) "2 Pounds 2021, United Kingdom (Great Britain), Elizabeth II, 50th Anniversary of the Mr. Men & Little Miss, Little Miss Giggles …" "obverse_alt" => string(143) "2 Pounds 2021, United Kingdom (Great Britain), Elizabeth II, 50th Anniversary of the Mr. Men & Little Miss, Little Miss Giggles …" "reverse_alt" => string(143) "2 Pounds 2021, United Kingdom (Great Britain), Elizabeth II, 50th Anniversary of the Mr. Men & Little Miss, Little Miss Giggles …" "photo" => string(115) "/photos/United_Kingdom_(Great_Britain)_Pounds_2/Little_Miss_Giggles_with_Mr._Strong_2021_19.02.2021_01.58_01-60.jpg" "photo_m" => string(116) "/photos/United_Kingdom_(Great_Britain)_Pounds_2/Little_Miss_Giggles_with_Mr._Strong_2021_19.02.2021_01.58_01-125.jpg" "photo_b" => string(112) "/photos/United_Kingdom_(Great_Britain)_Pounds_2/Little_Miss_Giggles_with_Mr._Strong_2021_19.02.2021_01.58_01.jpg" ) "alt" => string(143) "2 Pounds 2021, United Kingdom (Great Britain), Elizabeth II, 50th Anniversary of the Mr. Men & Little Miss, Little Miss Giggles …" "statistic" => array(5) ( "doubles" => integer 0 "collection" => integer 0 "count" => integer 0 "swap" => bool FALSE "likes" => integer 0 ) "year" => string(4) "2021" "in_wishlist" => integer 0 "in_exchange" => integer 0 "in_collection" => integer 0 ) 2 => array(11) ( "title" => string(59) "2 Pounds 2021, United Kingdom (Great Britain), Elizabeth II" "info" => string(63) "5th portrait, One Ounce Silver Proof Coin, Little Miss Sunshine" "info1" => string(118) "<a href="/catalog/series/50th_anniversary_of_the_mr_men_little_miss">50th Anniversary of the Mr. Men & Little Miss</a>" "info2" => string(29) "Silver, 31.21 g, ⌀ 38.61 mm" "coin" => array(49) ( "type" => string(37) "Commemorative issue (Non-circulating)" "typtye" => string(42) "Commemorative issue (Non-circulating) coin" "code" => string(8) "coin6583" "face_value" => string(1) "2" "shop_url" => string(218) "face_value=2¤cy=Pounds&country=United+Kingdom+%28Great+Britain%29&province=&material=silver&year_from=2021&year_to=2021&se …" "sellers_count" => integer 0 "currency" => string(6) "Pounds" "c_ountry_p_rovince" => string(30) "United Kingdom (Great Britain)" "country" => string(30) "United Kingdom (Great Britain)" "country_code" => string(14) "united_kingdom" "country_name" => string(30) "United Kingdom (Great Britain)" "province" => string(0) "" "year" => string(4) "2021" "km" => string(0) "" "kpm" => string(0) "" "kkk" => string(0) "" "ruler" => string(12) "Elizabeth II" "variation" => string(41) "5th portrait, One Ounce Silver Proof Coin" "topic" => string(20) "Little Miss Sunshine" "series" => string(45) "50th Anniversary of the Mr. Men & Little Miss" "s_er_ie_s" => string(143) "<a href="https://coin-brothers.com/catalog/series/50th_anniversary_of_the_mr_men_little_miss">50th Anniversary of the Mr. Men & …" "material" => string(6) "Silver" "weight" => string(7) "31.21 g" "diametr" => string(12) "⌀ 38.61 mm" "width" => string(0) "" "size" => string(16) "⌀ 38.61 mm" "obverse" => string(98) "/photos/United_Kingdom_(Great_Britain)_Pounds_2/Little_Miss_Sunshine_2021_19.02.2021_01.56-125.jpg" "reverse" => string(101) "/photos/United_Kingdom_(Great_Britain)_Pounds_2/Little_Miss_Sunshine_2021_19.02.2021_01.56_01-125.jpg" "obverse_m" => string(98) "/photos/United_Kingdom_(Great_Britain)_Pounds_2/Little_Miss_Sunshine_2021_19.02.2021_01.56-125.jpg" "reverse_m" => string(101) "/photos/United_Kingdom_(Great_Britain)_Pounds_2/Little_Miss_Sunshine_2021_19.02.2021_01.56_01-125.jpg" "obverse_b" => string(94) "/photos/United_Kingdom_(Great_Britain)_Pounds_2/Little_Miss_Sunshine_2021_19.02.2021_01.56.jpg" "reverse_b" => string(97) "/photos/United_Kingdom_(Great_Britain)_Pounds_2/Little_Miss_Sunshine_2021_19.02.2021_01.56_01.jpg" "obverse_c" => string(0) "" "reverse_c" => string(0) "" "statistic" => array(5) ( "doubles" => integer 0 "collection" => integer 0 "count" => integer 0 "swap" => bool FALSE "likes" => integer 0 ) "talias" => string(0) "" "user_like" => integer 0 "mi_nts" => string(10) "Royal Mint" "face_value_for_path" => string(1) "2" "topiscer" => string(20) "Little Miss Sunshine" "metaser" => string(53) "series: 50th Anniversary of the Mr. Men & Little Miss" "metatop" => string(27) "topic: Little Miss Sunshine" "date" => integer 1613689009 "alt" => string(128) "2 Pounds 2021, United Kingdom (Great Britain), Elizabeth II, 50th Anniversary of the Mr. Men & Little Miss, Little Miss Sunshine" "obverse_alt" => string(128) "2 Pounds 2021, United Kingdom (Great Britain), Elizabeth II, 50th Anniversary of the Mr. Men & Little Miss, Little Miss Sunshine" "reverse_alt" => string(128) "2 Pounds 2021, United Kingdom (Great Britain), Elizabeth II, 50th Anniversary of the Mr. Men & Little Miss, Little Miss Sunshine" "photo" => string(100) "/photos/United_Kingdom_(Great_Britain)_Pounds_2/Little_Miss_Sunshine_2021_19.02.2021_01.56_01-60.jpg" "photo_m" => string(101) "/photos/United_Kingdom_(Great_Britain)_Pounds_2/Little_Miss_Sunshine_2021_19.02.2021_01.56_01-125.jpg" "photo_b" => string(97) "/photos/United_Kingdom_(Great_Britain)_Pounds_2/Little_Miss_Sunshine_2021_19.02.2021_01.56_01.jpg" ) "alt" => string(128) "2 Pounds 2021, United Kingdom (Great Britain), Elizabeth II, 50th Anniversary of the Mr. Men & Little Miss, Little Miss Sunshine" "statistic" => array(5) ( "doubles" => integer 0 "collection" => integer 0 "count" => integer 0 "swap" => bool FALSE "likes" => integer 0 ) "year" => string(4) "2021" "in_wishlist" => integer 0 "in_exchange" => integer 0 "in_collection" => integer 0 ) ) "similar_more" => array(2) ( "title" => string(8) "Show all" "link" => string(58) "/catalog/series/50th_anniversary_of_the_mr_men_little_miss" ) "acoin" => array(8) ( "title" => string(46) "100 Pounds United Kingdom (Great Britain) 2021" "description" => string(194) "Full details about the coin United Kingdom (Great Britain), 100 Pounds 2021, 50th Anniversary of the Mr. Men & Little Miss, Litt …" "ogdescription" => string(160) "Coin Details: Elizabeth II, 5th portrait, One Ounce Gold Proof, Little Miss Sunshine, 50th Anniversary of the Mr. Men & Little M …" "keywords" => string(206) "Commemorative issue (Non-circulating) coin, Gold coin, 100 Pounds 2021 United Kingdom (Great Britain), 5th portrait, One Ounce G …" "coin" => array(49) ( "type" => string(37) "Commemorative issue (Non-circulating)" "typtye" => string(42) "Commemorative issue (Non-circulating) coin" "code" => string(8) "coin6589" "face_value" => string(3) "100" "shop_url" => string(218) "face_value=100¤cy=Pounds&country=United+Kingdom+%28Great+Britain%29&province=&material=gold&year_from=2021&year_to=2021&se …" "sellers_count" => integer 0 "currency" => string(6) "Pounds" "c_ountry_p_rovince" => string(30) "United Kingdom (Great Britain)" "country" => string(30) "United Kingdom (Great Britain)" "country_code" => string(14) "united_kingdom" "country_name" => string(30) "United Kingdom (Great Britain)" "province" => string(0) "" "year" => string(4) "2021" "km" => string(0) "" "kpm" => string(0) "" "kkk" => string(0) "" "ruler" => string(12) "Elizabeth II" "variation" => string(34) "5th portrait, One Ounce Gold Proof" "topic" => string(20) "Little Miss Sunshine" "series" => string(45) "50th Anniversary of the Mr. Men & Little Miss" "s_er_ie_s" => string(143) "<a href="https://coin-brothers.com/catalog/series/50th_anniversary_of_the_mr_men_little_miss">50th Anniversary of the Mr. Men & …" "material" => string(4) "Gold" "weight" => string(7) "31.21 g" "diametr" => string(12) "⌀ 32.69 mm" "width" => string(0) "" "size" => string(16) "⌀ 32.69 mm" "obverse" => string(99) "/photos/United_Kingdom_(Great_Britain)_Pounds_100/Little_Miss_Sunshine_2021_19.02.2021_20.52-60.jpg" "reverse" => string(102) "/photos/United_Kingdom_(Great_Britain)_Pounds_100/Little_Miss_Sunshine_2021_19.02.2021_20.52_01-60.jpg" "obverse_m" => string(100) "/photos/United_Kingdom_(Great_Britain)_Pounds_100/Little_Miss_Sunshine_2021_19.02.2021_20.52-125.jpg" "reverse_m" => string(103) "/photos/United_Kingdom_(Great_Britain)_Pounds_100/Little_Miss_Sunshine_2021_19.02.2021_20.52_01-125.jpg" "obverse_b" => string(96) "/photos/United_Kingdom_(Great_Britain)_Pounds_100/Little_Miss_Sunshine_2021_19.02.2021_20.52.jpg" "reverse_b" => string(99) "/photos/United_Kingdom_(Great_Britain)_Pounds_100/Little_Miss_Sunshine_2021_19.02.2021_20.52_01.jpg" "obverse_c" => string(0) "" "reverse_c" => string(0) "" "statistic" => array(5) ( "doubles" => integer 0 "collection" => integer 0 "count" => integer 0 "swap" => bool FALSE "likes" => integer 0 ) "talias" => string(0) "" "user_like" => integer 0 "mi_nts" => string(10) "Royal Mint" "face_value_for_path" => string(3) "100" "topiscer" => string(20) "Little Miss Sunshine" "metaser" => string(53) "series: 50th Anniversary of the Mr. Men & Little Miss" "metatop" => string(27) "topic: Little Miss Sunshine" "date" => integer 1613757142 "alt" => string(130) "100 Pounds 2021, United Kingdom (Great Britain), Elizabeth II, 50th Anniversary of the Mr. Men & Little Miss, Little Miss Sunshi …" "obverse_alt" => string(130) "100 Pounds 2021, United Kingdom (Great Britain), Elizabeth II, 50th Anniversary of the Mr. Men & Little Miss, Little Miss Sunshi …" "reverse_alt" => string(130) "100 Pounds 2021, United Kingdom (Great Britain), Elizabeth II, 50th Anniversary of the Mr. Men & Little Miss, Little Miss Sunshi …" "photo" => string(102) "/photos/United_Kingdom_(Great_Britain)_Pounds_100/Little_Miss_Sunshine_2021_19.02.2021_20.52_01-60.jpg" "photo_m" => string(103) "/photos/United_Kingdom_(Great_Britain)_Pounds_100/Little_Miss_Sunshine_2021_19.02.2021_20.52_01-125.jpg" "photo_b" => string(99) "/photos/United_Kingdom_(Great_Britain)_Pounds_100/Little_Miss_Sunshine_2021_19.02.2021_20.52_01.jpg" ) "alt" => string(130) "100 Pounds 2021, United Kingdom (Great Britain), Elizabeth II, 50th Anniversary of the Mr. Men & Little Miss, Little Miss Sunshi …" "statistic" => array(5) ( "doubles" => integer 0 "collection" => integer 0 "count" => integer 0 "swap" => bool FALSE "likes" => integer 0 ) "year" => string(4) "2021" ) ) }{ public oid => string(24) "602ffac43cbc75471c50b655" }
"status" => string(2) "ok" "code" => string(8) "coin6589" "variation" => string(34) "5th portrait, One Ounce Gold Proof" "face_value" => string(3) "100" "face_value_float" => float 100 "description" => string(1435) "Mr. Men is a French/British series of children's books by English author Roger Hargreaves commencing in 1971. From 1981, an acco …" "weight" => float 31.21 "diametr" => float 32.69 "width" => float 0 "height" => float 0 "side1" => float 0 "side2" => float 0 "side3" => float 0 "notches" => float 0 "sides" => float 0 "thickness" => float 0 "obverse" => object MongoDB\Model\BSONDocument(2){ public $ref => string(20) "coin_obverse_reverse" public $id => object MongoDB\BSON\ObjectId(1)
"reverse" => object MongoDB\Model\BSONDocument(2){ public oid => string(24) "602ffac33cbc75471c50b652" }
}{ public $ref => string(20) "coin_obverse_reverse" public $id => object MongoDB\BSON\ObjectId(1)
"currency" => object MongoDB\Model\BSONDocument(2){ public oid => string(24) "602ffac33cbc75471c50b653" }
}{ public $ref => string(13) "coin_currency" public $id => object MongoDB\BSON\ObjectId(1)
"currency_title" => string(6) "Pounds" "currency_weight" => integer 7 "country" => object MongoDB\Model\BSONDocument(2){ public oid => string(24) "5310767cb3569e5c608b4923" }
}{ public $ref => string(7) "country" public $id => object MongoDB\BSON\ObjectId(1)
"country_name" => string(30) "United Kingdom (Great Britain)" "edge" => object MongoDB\Model\BSONDocument(2){ public oid => string(24) "5310767cb3569e5c608b4849" }
}{ public $ref => string(9) "coin_edge" public $id => object MongoDB\BSON\ObjectId(1)
"photos" => object MongoDB\Model\BSONArray(3){ public oid => string(24) "602ffac23cbc75471c50b651" }
}{ public 0 => object MongoDB\Model\BSONDocument(2)
"cat_codes" => object MongoDB\Model\BSONArray(0){ public $ref => string(10) "coin_photo" public $id => object MongoDB\BSON\ObjectId(1)
public 1 => object MongoDB\Model\BSONDocument(2){ public oid => string(24) "602ffac43cbc75471c50b656" }
}{ public $ref => string(10) "coin_photo" public $id => object MongoDB\BSON\ObjectId(1)
public 2 => object MongoDB\Model\BSONDocument(2){ public oid => string(24) "602ffac43cbc75471c50b657" }
}{ public $ref => string(10) "coin_photo" public $id => object MongoDB\BSON\ObjectId(1)
}{ public oid => string(24) "602ffac53cbc75471c50b658" }
}{ }
"cat_ids" => object MongoDB\Model\BSONArray(0){ }
"km_number" => string(3) "KM#" "alignment" => string(5) "medal" "circulating" => string(15) "non-circulating" "mintages" => object MongoDB\Model\BSONArray(1){ public 0 => object MongoDB\Model\BSONDocument(2)
"min_year" => integer 2021 "rulers" => object MongoDB\Model\BSONArray(1){ public $ref => string(12) "coin_mintage" public $id => object MongoDB\BSON\ObjectId(1)
}{ public oid => string(24) "602ffac23cbc75471c50b650" }
}{ public 0 => object MongoDB\Model\BSONDocument(2)
"type" => object MongoDB\Model\BSONDocument(2){ public $ref => string(10) "coin_ruler" public $id => object MongoDB\BSON\ObjectId(1)
}{ public oid => string(24) "542ab5d1b3569ea6693c98b1" }
}{ public $ref => string(9) "coin_type" public $id => object MongoDB\BSON\ObjectId(1)
"shape" => object MongoDB\Model\BSONDocument(2){ public oid => string(24) "111111111111111111111182" }
}{ public $ref => string(10) "coin_shape" public $id => object MongoDB\BSON\ObjectId(1)
"serie" => object MongoDB\Model\BSONDocument(2){ public oid => string(24) "5310767cb3569e5c608b4980" }
}{ public $ref => string(10) "coin_serie" public $id => object MongoDB\BSON\ObjectId(1)
"topic" => object MongoDB\Model\BSONDocument(2){ public oid => string(24) "602ecb3735f52f7f646874a8" }
}{ public $ref => string(10) "coin_topic" public $id => object MongoDB\BSON\ObjectId(1)
"metal" => object MongoDB\Model\BSONDocument(2){ public oid => string(24) "602ed702e44d341ee361de78" }
}{ public $ref => string(10) "coin_metal" public $id => object MongoDB\BSON\ObjectId(1)
"fineness" => string(6) "0.9999" "history" => object MongoDB\Model\BSONArray(1){ public oid => string(24) "5310767cb3569e5c608b49ae" }
}{ public 0 => object MongoDB\Model\BSONDocument(2)
"date_add" => integer 1613757124 "last_modified" => integer 1613757124 "last_modifier" => string(19) "Alexander Malioukov" "last_modifier_id" => string(24) "531701d3c61adcb1df6cc7cd" "user_added" => string(24) "531701d3c61adcb1df6cc7cd" "max_year" => integer 2021 "province_name" => string(0) "" "coin_type_value" => integer 1 "serie_name" => string(45) "50th Anniversary of the Mr. Men & Little Miss" "topic_name" => string(20) "Little Miss Sunshine" "title_photo" => string(102) "/photos/United_Kingdom_(Great_Britain)_Pounds_100/Little_Miss_Sunshine_2021_19.02.2021_20.52-title.jpg" "moderator" => string(19) "Alexander Malioukov" "date_approve" => integer 1613757142 "mod_status" => string(2) "ok" "public" => integer 1 "search_text" => string(3599) "100 100 100 Pounds United Kingdom Great Britain Mr Men is a French/British series of childrens books by English author Roger Har …" ) }{ public $ref => string(12) "coin_history" public $id => object MongoDB\BSON\ObjectId(1)
}{ public oid => string(24) "602ffac43cbc75471c50b654" }
}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
-
APPPATH/classes/Controller/Layout.php [ 190 ] » Kohana_Controller_Template->after()
185 186 // Инициализируем экземпляр firephp 187 $firephp = FirePHP::getInstance(true); 188 $firephp->info($link, 'profiling data'); 189 */ 190 parent::after(); 191 } 192 193 }
-
SYSPATH/classes/Kohana/Controller.php [ 87 ] » Controller_Layout->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)
0
object Controller_Coin(10)
{ public auth_required => bool FALSE public module => string(4) "coin" public auto_render => bool TRUE public template => object View(2)
{ protected _file => string(57) "/www/coin-brothers.com/kohana/application/views/index.php" protected _data => array(5) ( "header" => object View(2)
public secure_actions => bool FALSE public benchmark => bool FALSE public request => object Request(19){ protected _file => string(58) "/www/coin-brothers.com/kohana/application/views/header.php" protected _data => array(13) ( "styles" => array(0) "scripts" => array(0) "metas" => array(0) "keywords" => string(206) "Commemorative issue (Non-circulating) coin, Gold coin, 100 Pounds 2021 United Kingdom (Great Britain), 5th portrait, One Ounce G …" "descr" => NULL "user" => object Model_User(3)
"footer" => object View(2){ private db => object MongoDB\Database(6)
"new_soc_user" => integer 0 "auto_country" => bool FALSE "title" => string(69) "100 Pounds United Kingdom (Great Britain) 2021 | CoinBrothers Catalog" "description" => string(418) "Full details about the coin United Kingdom (Great Britain), 100 Pounds 2021, 50th Anniversary of the Mr. Men & Little Miss, Litt …" "ogdescription" => string(160) "Coin Details: Elizabeth II, 5th portrait, One Ounce Gold Proof, Little Miss Sunshine, 50th Anniversary of the Mr. Men & Little M …" "og_images" => array(1) ( 0 => string(102) "/photos/United_Kingdom_(Great_Britain)_Pounds_100/Little_Miss_Sunshine_2021_19.02.2021_20.52-title.jpg" ) "ogSize" => array(2) ( "w" => integer 490 "h" => integer 245 ) ) }{ private databaseName => string(12) "coinbrothers" private manager => object MongoDB\Driver\Manager(0)
private empty_collection_stat => array(9) ( "doubles" => integer 0 "collection" => integer 0 "wishlist" => integer 0 "doubles_country" => integer 0 "collection_country" => integer 0 "wishlist_country" => integer 0 "feedback" => integer 0 "store" => integer 0 "cart" => integer 0 ) protected info => array(0) }{ }
private readConcern => object MongoDB\Driver\ReadConcern(0){ }
private readPreference => object MongoDB\Driver\ReadPreference(1){ public mode => string(7) "primary" }
private typeMap => array(3) ( "array" => string(23) "MongoDB\Model\BSONArray" "document" => string(26) "MongoDB\Model\BSONDocument" "root" => string(26) "MongoDB\Model\BSONDocument" ) private writeConcern => object MongoDB\Driver\WriteConcern(0){ }
}{ protected _file => string(58) "/www/coin-brothers.com/kohana/application/views/footer.php" protected _data => array(0) }
"content" => object View(2){ protected _file => string(63) "/www/coin-brothers.com/kohana/application/views//coin/index.php" protected _data => array(13) ( "curr_user" => object Model_User(3)
"controller" => string(4) "Coin" "action" => string(5) "index" ) }{ private db => object MongoDB\Database(6)
"user" => object Model_User(3){ private databaseName => string(12) "coinbrothers" private manager => object MongoDB\Driver\Manager(0)
private empty_collection_stat => array(9) ( "doubles" => integer 0 "collection" => integer 0 "wishlist" => integer 0 "doubles_country" => integer 0 "collection_country" => integer 0 "wishlist_country" => integer 0 "feedback" => integer 0 "store" => integer 0 "cart" => integer 0 ) protected info => array(0) }{ }
private readConcern => object MongoDB\Driver\ReadConcern(0){ }
private readPreference => object MongoDB\Driver\ReadPreference(1){ public mode => string(7) "primary" }
private typeMap => array(3) ( "array" => string(23) "MongoDB\Model\BSONArray" "document" => string(26) "MongoDB\Model\BSONDocument" "root" => string(26) "MongoDB\Model\BSONDocument" ) private writeConcern => object MongoDB\Driver\WriteConcern(0){ }
}{ private db => object MongoDB\Database(6)
"can_edit" => bool TRUE "coin" => object Model_Coin(1){ private databaseName => string(12) "coinbrothers" private manager => object MongoDB\Driver\Manager(0)
private empty_collection_stat => array(9) ( "doubles" => integer 0 "collection" => integer 0 "wishlist" => integer 0 "doubles_country" => integer 0 "collection_country" => integer 0 "wishlist_country" => integer 0 "feedback" => integer 0 "store" => integer 0 "cart" => integer 0 ) protected info => array(0) }{ }
private readConcern => object MongoDB\Driver\ReadConcern(0){ }
private readPreference => object MongoDB\Driver\ReadPreference(1){ public mode => string(7) "primary" }
private typeMap => array(3) ( "array" => string(23) "MongoDB\Model\BSONArray" "document" => string(26) "MongoDB\Model\BSONDocument" "root" => string(26) "MongoDB\Model\BSONDocument" ) private writeConcern => object MongoDB\Driver\WriteConcern(0){ }
}{ protected info => array(57) ( "_id" => object MongoDB\BSON\ObjectId(1)
"years" => array(1) ( 0 => string(4) "2021" ) "years_str" => string(7) "2021 AD" "price" => bool FALSE "market_coins" => array(0) "buyurl" => string(218) "face_value=100¤cy=Pounds&country=United+Kingdom+%28Great+Britain%29&province=&material=gold&year_from=2021&year_to=2021&se …" "swap" => array(0) "similar_coins" => array(3) ( 0 => array(11) ( "title" => string(58) "1 Pound 2021, United Kingdom (Great Britain), Elizabeth II" "info" => string(48) "5th portrait, Half-Ounce Silver Proof, Mr. Happy" "info1" => string(118) "<a href="/catalog/series/50th_anniversary_of_the_mr_men_little_miss">50th Anniversary of the Mr. Men & Little Miss</a>" "info2" => string(26) "Silver, 15.71 g, ⌀ 27 mm" "coin" => array(49) ( "type" => string(37) "Commemorative issue (Non-circulating)" "typtye" => string(42) "Commemorative issue (Non-circulating) coin" "code" => string(8) "coin6581" "face_value" => string(1) "1" "shop_url" => string(206) "face_value=1¤cy=Pound&country=United+Kingdom+%28Great+Britain%29&province=&material=silver&year_from=2021&year_to=2021&ser …" "sellers_count" => integer 0 "currency" => string(5) "Pound" "c_ountry_p_rovince" => string(30) "United Kingdom (Great Britain)" "country" => string(30) "United Kingdom (Great Britain)" "country_code" => string(14) "united_kingdom" "country_name" => string(30) "United Kingdom (Great Britain)" "province" => string(0) "" "year" => string(4) "2021" "km" => string(0) "" "kpm" => string(0) "" "kkk" => string(0) "" "ruler" => string(12) "Elizabeth II" "variation" => string(37) "5th portrait, Half-Ounce Silver Proof" "topic" => string(9) "Mr. Happy" "series" => string(45) "50th Anniversary of the Mr. Men & Little Miss" "s_er_ie_s" => string(143) "<a href="https://coin-brothers.com/catalog/series/50th_anniversary_of_the_mr_men_little_miss">50th Anniversary of the Mr. Men & …" "material" => string(6) "Silver" "weight" => string(7) "15.71 g" "diametr" => string(9) "⌀ 27 mm" "width" => string(0) "" "size" => string(13) "⌀ 27 mm" "obverse" => string(86) "/photos/United_Kingdom_(Great_Britain)_Pound_1/Mr._Happy_2021_19.02.2021_01.34-125.jpg" "reverse" => string(89) "/photos/United_Kingdom_(Great_Britain)_Pound_1/Mr._Happy_2021_19.02.2021_01.34_01-125.jpg" "obverse_m" => string(86) "/photos/United_Kingdom_(Great_Britain)_Pound_1/Mr._Happy_2021_19.02.2021_01.34-125.jpg" "reverse_m" => string(89) "/photos/United_Kingdom_(Great_Britain)_Pound_1/Mr._Happy_2021_19.02.2021_01.34_01-125.jpg" "obverse_b" => string(82) "/photos/United_Kingdom_(Great_Britain)_Pound_1/Mr._Happy_2021_19.02.2021_01.34.jpg" "reverse_b" => string(85) "/photos/United_Kingdom_(Great_Britain)_Pound_1/Mr._Happy_2021_19.02.2021_01.34_01.jpg" "obverse_c" => string(0) "" "reverse_c" => string(0) "" "statistic" => array(5) ( "doubles" => integer 0 "collection" => integer 0 "count" => integer 0 "swap" => bool FALSE "likes" => integer 0 ) "talias" => string(0) "" "user_like" => integer 0 "mi_nts" => string(10) "Royal Mint" "face_value_for_path" => string(1) "1" "topiscer" => string(9) "Mr. Happy" "metaser" => string(53) "series: 50th Anniversary of the Mr. Men & Little Miss" "metatop" => string(16) "topic: Mr. Happy" "date" => integer 1613687671 "alt" => string(116) "1 Pound 2021, United Kingdom (Great Britain), Elizabeth II, 50th Anniversary of the Mr. Men & Little Miss, Mr. Happy" "obverse_alt" => string(116) "1 Pound 2021, United Kingdom (Great Britain), Elizabeth II, 50th Anniversary of the Mr. Men & Little Miss, Mr. Happy" "reverse_alt" => string(116) "1 Pound 2021, United Kingdom (Great Britain), Elizabeth II, 50th Anniversary of the Mr. Men & Little Miss, Mr. Happy" "photo" => string(88) "/photos/United_Kingdom_(Great_Britain)_Pound_1/Mr._Happy_2021_19.02.2021_01.34_01-60.jpg" "photo_m" => string(89) "/photos/United_Kingdom_(Great_Britain)_Pound_1/Mr._Happy_2021_19.02.2021_01.34_01-125.jpg" "photo_b" => string(85) "/photos/United_Kingdom_(Great_Britain)_Pound_1/Mr._Happy_2021_19.02.2021_01.34_01.jpg" ) "alt" => string(116) "1 Pound 2021, United Kingdom (Great Britain), Elizabeth II, 50th Anniversary of the Mr. Men & Little Miss, Mr. Happy" "statistic" => array(5) ( "doubles" => integer 0 "collection" => integer 0 "count" => integer 0 "swap" => bool FALSE "likes" => integer 0 ) "year" => string(4) "2021" "in_wishlist" => integer 0 "in_exchange" => integer 0 "in_collection" => integer 0 ) 1 => array(11) ( "title" => string(59) "2 Pounds 2021, United Kingdom (Great Britain), Elizabeth II" "info" => string(78) "5th portrait, One Ounce Silver Proof Coin, Little Miss Giggles with Mr. Strong" "info1" => string(118) "<a href="/catalog/series/50th_anniversary_of_the_mr_men_little_miss">50th Anniversary of the Mr. Men & Little Miss</a>" "info2" => string(29) "Silver, 31.21 g, ⌀ 38.61 mm" "coin" => array(49) ( "type" => string(37) "Commemorative issue (Non-circulating)" "typtye" => string(42) "Commemorative issue (Non-circulating) coin" "code" => string(8) "coin6584" "face_value" => string(1) "2" "shop_url" => string(233) "face_value=2¤cy=Pounds&country=United+Kingdom+%28Great+Britain%29&province=&material=silver&year_from=2021&year_to=2021&se …" "sellers_count" => integer 0 "currency" => string(6) "Pounds" "c_ountry_p_rovince" => string(30) "United Kingdom (Great Britain)" "country" => string(30) "United Kingdom (Great Britain)" "country_code" => string(14) "united_kingdom" "country_name" => string(30) "United Kingdom (Great Britain)" "province" => string(0) "" "year" => string(4) "2021" "km" => string(0) "" "kpm" => string(0) "" "kkk" => string(0) "" "ruler" => string(12) "Elizabeth II" "variation" => string(41) "5th portrait, One Ounce Silver Proof Coin" "topic" => string(35) "Little Miss Giggles with Mr. Strong" "series" => string(45) "50th Anniversary of the Mr. Men & Little Miss" "s_er_ie_s" => string(143) "<a href="https://coin-brothers.com/catalog/series/50th_anniversary_of_the_mr_men_little_miss">50th Anniversary of the Mr. Men & …" "material" => string(6) "Silver" "weight" => string(7) "31.21 g" "diametr" => string(12) "⌀ 38.61 mm" "width" => string(0) "" "size" => string(16) "⌀ 38.61 mm" "obverse" => string(113) "/photos/United_Kingdom_(Great_Britain)_Pounds_2/Little_Miss_Giggles_with_Mr._Strong_2021_19.02.2021_01.58-125.jpg" "reverse" => string(116) "/photos/United_Kingdom_(Great_Britain)_Pounds_2/Little_Miss_Giggles_with_Mr._Strong_2021_19.02.2021_01.58_01-125.jpg" "obverse_m" => string(113) "/photos/United_Kingdom_(Great_Britain)_Pounds_2/Little_Miss_Giggles_with_Mr._Strong_2021_19.02.2021_01.58-125.jpg" "reverse_m" => string(116) "/photos/United_Kingdom_(Great_Britain)_Pounds_2/Little_Miss_Giggles_with_Mr._Strong_2021_19.02.2021_01.58_01-125.jpg" "obverse_b" => string(109) "/photos/United_Kingdom_(Great_Britain)_Pounds_2/Little_Miss_Giggles_with_Mr._Strong_2021_19.02.2021_01.58.jpg" "reverse_b" => string(112) "/photos/United_Kingdom_(Great_Britain)_Pounds_2/Little_Miss_Giggles_with_Mr._Strong_2021_19.02.2021_01.58_01.jpg" "obverse_c" => string(0) "" "reverse_c" => string(0) "" "statistic" => array(5) ( "doubles" => integer 0 "collection" => integer 0 "count" => integer 0 "swap" => bool FALSE "likes" => integer 0 ) "talias" => string(0) "" "user_like" => integer 0 "mi_nts" => string(10) "Royal Mint" "face_value_for_path" => string(1) "2" "topiscer" => string(35) "Little Miss Giggles with Mr. Strong" "metaser" => string(53) "series: 50th Anniversary of the Mr. Men & Little Miss" "metatop" => string(42) "topic: Little Miss Giggles with Mr. Strong" "date" => integer 1613689134 "alt" => string(143) "2 Pounds 2021, United Kingdom (Great Britain), Elizabeth II, 50th Anniversary of the Mr. Men & Little Miss, Little Miss Giggles …" "obverse_alt" => string(143) "2 Pounds 2021, United Kingdom (Great Britain), Elizabeth II, 50th Anniversary of the Mr. Men & Little Miss, Little Miss Giggles …" "reverse_alt" => string(143) "2 Pounds 2021, United Kingdom (Great Britain), Elizabeth II, 50th Anniversary of the Mr. Men & Little Miss, Little Miss Giggles …" "photo" => string(115) "/photos/United_Kingdom_(Great_Britain)_Pounds_2/Little_Miss_Giggles_with_Mr._Strong_2021_19.02.2021_01.58_01-60.jpg" "photo_m" => string(116) "/photos/United_Kingdom_(Great_Britain)_Pounds_2/Little_Miss_Giggles_with_Mr._Strong_2021_19.02.2021_01.58_01-125.jpg" "photo_b" => string(112) "/photos/United_Kingdom_(Great_Britain)_Pounds_2/Little_Miss_Giggles_with_Mr._Strong_2021_19.02.2021_01.58_01.jpg" ) "alt" => string(143) "2 Pounds 2021, United Kingdom (Great Britain), Elizabeth II, 50th Anniversary of the Mr. Men & Little Miss, Little Miss Giggles …" "statistic" => array(5) ( "doubles" => integer 0 "collection" => integer 0 "count" => integer 0 "swap" => bool FALSE "likes" => integer 0 ) "year" => string(4) "2021" "in_wishlist" => integer 0 "in_exchange" => integer 0 "in_collection" => integer 0 ) 2 => array(11) ( "title" => string(59) "2 Pounds 2021, United Kingdom (Great Britain), Elizabeth II" "info" => string(63) "5th portrait, One Ounce Silver Proof Coin, Little Miss Sunshine" "info1" => string(118) "<a href="/catalog/series/50th_anniversary_of_the_mr_men_little_miss">50th Anniversary of the Mr. Men & Little Miss</a>" "info2" => string(29) "Silver, 31.21 g, ⌀ 38.61 mm" "coin" => array(49) ( "type" => string(37) "Commemorative issue (Non-circulating)" "typtye" => string(42) "Commemorative issue (Non-circulating) coin" "code" => string(8) "coin6583" "face_value" => string(1) "2" "shop_url" => string(218) "face_value=2¤cy=Pounds&country=United+Kingdom+%28Great+Britain%29&province=&material=silver&year_from=2021&year_to=2021&se …" "sellers_count" => integer 0 "currency" => string(6) "Pounds" "c_ountry_p_rovince" => string(30) "United Kingdom (Great Britain)" "country" => string(30) "United Kingdom (Great Britain)" "country_code" => string(14) "united_kingdom" "country_name" => string(30) "United Kingdom (Great Britain)" "province" => string(0) "" "year" => string(4) "2021" "km" => string(0) "" "kpm" => string(0) "" "kkk" => string(0) "" "ruler" => string(12) "Elizabeth II" "variation" => string(41) "5th portrait, One Ounce Silver Proof Coin" "topic" => string(20) "Little Miss Sunshine" "series" => string(45) "50th Anniversary of the Mr. Men & Little Miss" "s_er_ie_s" => string(143) "<a href="https://coin-brothers.com/catalog/series/50th_anniversary_of_the_mr_men_little_miss">50th Anniversary of the Mr. Men & …" "material" => string(6) "Silver" "weight" => string(7) "31.21 g" "diametr" => string(12) "⌀ 38.61 mm" "width" => string(0) "" "size" => string(16) "⌀ 38.61 mm" "obverse" => string(98) "/photos/United_Kingdom_(Great_Britain)_Pounds_2/Little_Miss_Sunshine_2021_19.02.2021_01.56-125.jpg" "reverse" => string(101) "/photos/United_Kingdom_(Great_Britain)_Pounds_2/Little_Miss_Sunshine_2021_19.02.2021_01.56_01-125.jpg" "obverse_m" => string(98) "/photos/United_Kingdom_(Great_Britain)_Pounds_2/Little_Miss_Sunshine_2021_19.02.2021_01.56-125.jpg" "reverse_m" => string(101) "/photos/United_Kingdom_(Great_Britain)_Pounds_2/Little_Miss_Sunshine_2021_19.02.2021_01.56_01-125.jpg" "obverse_b" => string(94) "/photos/United_Kingdom_(Great_Britain)_Pounds_2/Little_Miss_Sunshine_2021_19.02.2021_01.56.jpg" "reverse_b" => string(97) "/photos/United_Kingdom_(Great_Britain)_Pounds_2/Little_Miss_Sunshine_2021_19.02.2021_01.56_01.jpg" "obverse_c" => string(0) "" "reverse_c" => string(0) "" "statistic" => array(5) ( "doubles" => integer 0 "collection" => integer 0 "count" => integer 0 "swap" => bool FALSE "likes" => integer 0 ) "talias" => string(0) "" "user_like" => integer 0 "mi_nts" => string(10) "Royal Mint" "face_value_for_path" => string(1) "2" "topiscer" => string(20) "Little Miss Sunshine" "metaser" => string(53) "series: 50th Anniversary of the Mr. Men & Little Miss" "metatop" => string(27) "topic: Little Miss Sunshine" "date" => integer 1613689009 "alt" => string(128) "2 Pounds 2021, United Kingdom (Great Britain), Elizabeth II, 50th Anniversary of the Mr. Men & Little Miss, Little Miss Sunshine" "obverse_alt" => string(128) "2 Pounds 2021, United Kingdom (Great Britain), Elizabeth II, 50th Anniversary of the Mr. Men & Little Miss, Little Miss Sunshine" "reverse_alt" => string(128) "2 Pounds 2021, United Kingdom (Great Britain), Elizabeth II, 50th Anniversary of the Mr. Men & Little Miss, Little Miss Sunshine" "photo" => string(100) "/photos/United_Kingdom_(Great_Britain)_Pounds_2/Little_Miss_Sunshine_2021_19.02.2021_01.56_01-60.jpg" "photo_m" => string(101) "/photos/United_Kingdom_(Great_Britain)_Pounds_2/Little_Miss_Sunshine_2021_19.02.2021_01.56_01-125.jpg" "photo_b" => string(97) "/photos/United_Kingdom_(Great_Britain)_Pounds_2/Little_Miss_Sunshine_2021_19.02.2021_01.56_01.jpg" ) "alt" => string(128) "2 Pounds 2021, United Kingdom (Great Britain), Elizabeth II, 50th Anniversary of the Mr. Men & Little Miss, Little Miss Sunshine" "statistic" => array(5) ( "doubles" => integer 0 "collection" => integer 0 "count" => integer 0 "swap" => bool FALSE "likes" => integer 0 ) "year" => string(4) "2021" "in_wishlist" => integer 0 "in_exchange" => integer 0 "in_collection" => integer 0 ) ) "similar_more" => array(2) ( "title" => string(8) "Show all" "link" => string(58) "/catalog/series/50th_anniversary_of_the_mr_men_little_miss" ) "acoin" => array(8) ( "title" => string(46) "100 Pounds United Kingdom (Great Britain) 2021" "description" => string(194) "Full details about the coin United Kingdom (Great Britain), 100 Pounds 2021, 50th Anniversary of the Mr. Men & Little Miss, Litt …" "ogdescription" => string(160) "Coin Details: Elizabeth II, 5th portrait, One Ounce Gold Proof, Little Miss Sunshine, 50th Anniversary of the Mr. Men & Little M …" "keywords" => string(206) "Commemorative issue (Non-circulating) coin, Gold coin, 100 Pounds 2021 United Kingdom (Great Britain), 5th portrait, One Ounce G …" "coin" => array(49) ( "type" => string(37) "Commemorative issue (Non-circulating)" "typtye" => string(42) "Commemorative issue (Non-circulating) coin" "code" => string(8) "coin6589" "face_value" => string(3) "100" "shop_url" => string(218) "face_value=100¤cy=Pounds&country=United+Kingdom+%28Great+Britain%29&province=&material=gold&year_from=2021&year_to=2021&se …" "sellers_count" => integer 0 "currency" => string(6) "Pounds" "c_ountry_p_rovince" => string(30) "United Kingdom (Great Britain)" "country" => string(30) "United Kingdom (Great Britain)" "country_code" => string(14) "united_kingdom" "country_name" => string(30) "United Kingdom (Great Britain)" "province" => string(0) "" "year" => string(4) "2021" "km" => string(0) "" "kpm" => string(0) "" "kkk" => string(0) "" "ruler" => string(12) "Elizabeth II" "variation" => string(34) "5th portrait, One Ounce Gold Proof" "topic" => string(20) "Little Miss Sunshine" "series" => string(45) "50th Anniversary of the Mr. Men & Little Miss" "s_er_ie_s" => string(143) "<a href="https://coin-brothers.com/catalog/series/50th_anniversary_of_the_mr_men_little_miss">50th Anniversary of the Mr. Men & …" "material" => string(4) "Gold" "weight" => string(7) "31.21 g" "diametr" => string(12) "⌀ 32.69 mm" "width" => string(0) "" "size" => string(16) "⌀ 32.69 mm" "obverse" => string(99) "/photos/United_Kingdom_(Great_Britain)_Pounds_100/Little_Miss_Sunshine_2021_19.02.2021_20.52-60.jpg" "reverse" => string(102) "/photos/United_Kingdom_(Great_Britain)_Pounds_100/Little_Miss_Sunshine_2021_19.02.2021_20.52_01-60.jpg" "obverse_m" => string(100) "/photos/United_Kingdom_(Great_Britain)_Pounds_100/Little_Miss_Sunshine_2021_19.02.2021_20.52-125.jpg" "reverse_m" => string(103) "/photos/United_Kingdom_(Great_Britain)_Pounds_100/Little_Miss_Sunshine_2021_19.02.2021_20.52_01-125.jpg" "obverse_b" => string(96) "/photos/United_Kingdom_(Great_Britain)_Pounds_100/Little_Miss_Sunshine_2021_19.02.2021_20.52.jpg" "reverse_b" => string(99) "/photos/United_Kingdom_(Great_Britain)_Pounds_100/Little_Miss_Sunshine_2021_19.02.2021_20.52_01.jpg" "obverse_c" => string(0) "" "reverse_c" => string(0) "" "statistic" => array(5) ( "doubles" => integer 0 "collection" => integer 0 "count" => integer 0 "swap" => bool FALSE "likes" => integer 0 ) "talias" => string(0) "" "user_like" => integer 0 "mi_nts" => string(10) "Royal Mint" "face_value_for_path" => string(3) "100" "topiscer" => string(20) "Little Miss Sunshine" "metaser" => string(53) "series: 50th Anniversary of the Mr. Men & Little Miss" "metatop" => string(27) "topic: Little Miss Sunshine" "date" => integer 1613757142 "alt" => string(130) "100 Pounds 2021, United Kingdom (Great Britain), Elizabeth II, 50th Anniversary of the Mr. Men & Little Miss, Little Miss Sunshi …" "obverse_alt" => string(130) "100 Pounds 2021, United Kingdom (Great Britain), Elizabeth II, 50th Anniversary of the Mr. Men & Little Miss, Little Miss Sunshi …" "reverse_alt" => string(130) "100 Pounds 2021, United Kingdom (Great Britain), Elizabeth II, 50th Anniversary of the Mr. Men & Little Miss, Little Miss Sunshi …" "photo" => string(102) "/photos/United_Kingdom_(Great_Britain)_Pounds_100/Little_Miss_Sunshine_2021_19.02.2021_20.52_01-60.jpg" "photo_m" => string(103) "/photos/United_Kingdom_(Great_Britain)_Pounds_100/Little_Miss_Sunshine_2021_19.02.2021_20.52_01-125.jpg" "photo_b" => string(99) "/photos/United_Kingdom_(Great_Britain)_Pounds_100/Little_Miss_Sunshine_2021_19.02.2021_20.52_01.jpg" ) "alt" => string(130) "100 Pounds 2021, United Kingdom (Great Britain), Elizabeth II, 50th Anniversary of the Mr. Men & Little Miss, Little Miss Sunshi …" "statistic" => array(5) ( "doubles" => integer 0 "collection" => integer 0 "count" => integer 0 "swap" => bool FALSE "likes" => integer 0 ) "year" => string(4) "2021" ) ) }{ public oid => string(24) "602ffac43cbc75471c50b655" }
"status" => string(2) "ok" "code" => string(8) "coin6589" "variation" => string(34) "5th portrait, One Ounce Gold Proof" "face_value" => string(3) "100" "face_value_float" => float 100 "description" => string(1435) "Mr. Men is a French/British series of children's books by English author Roger Hargreaves commencing in 1971. From 1981, an acco …" "weight" => float 31.21 "diametr" => float 32.69 "width" => float 0 "height" => float 0 "side1" => float 0 "side2" => float 0 "side3" => float 0 "notches" => float 0 "sides" => float 0 "thickness" => float 0 "obverse" => object MongoDB\Model\BSONDocument(2){ public $ref => string(20) "coin_obverse_reverse" public $id => object MongoDB\BSON\ObjectId(1)
"reverse" => object MongoDB\Model\BSONDocument(2){ public oid => string(24) "602ffac33cbc75471c50b652" }
}{ public $ref => string(20) "coin_obverse_reverse" public $id => object MongoDB\BSON\ObjectId(1)
"currency" => object MongoDB\Model\BSONDocument(2){ public oid => string(24) "602ffac33cbc75471c50b653" }
}{ public $ref => string(13) "coin_currency" public $id => object MongoDB\BSON\ObjectId(1)
"currency_title" => string(6) "Pounds" "currency_weight" => integer 7 "country" => object MongoDB\Model\BSONDocument(2){ public oid => string(24) "5310767cb3569e5c608b4923" }
}{ public $ref => string(7) "country" public $id => object MongoDB\BSON\ObjectId(1)
"country_name" => string(30) "United Kingdom (Great Britain)" "edge" => object MongoDB\Model\BSONDocument(2){ public oid => string(24) "5310767cb3569e5c608b4849" }
}{ public $ref => string(9) "coin_edge" public $id => object MongoDB\BSON\ObjectId(1)
"photos" => object MongoDB\Model\BSONArray(3){ public oid => string(24) "602ffac23cbc75471c50b651" }
}{ public 0 => object MongoDB\Model\BSONDocument(2)
"cat_codes" => object MongoDB\Model\BSONArray(0){ public $ref => string(10) "coin_photo" public $id => object MongoDB\BSON\ObjectId(1)
public 1 => object MongoDB\Model\BSONDocument(2){ public oid => string(24) "602ffac43cbc75471c50b656" }
}{ public $ref => string(10) "coin_photo" public $id => object MongoDB\BSON\ObjectId(1)
public 2 => object MongoDB\Model\BSONDocument(2){ public oid => string(24) "602ffac43cbc75471c50b657" }
}{ public $ref => string(10) "coin_photo" public $id => object MongoDB\BSON\ObjectId(1)
}{ public oid => string(24) "602ffac53cbc75471c50b658" }
}{ }
"cat_ids" => object MongoDB\Model\BSONArray(0){ }
"km_number" => string(3) "KM#" "alignment" => string(5) "medal" "circulating" => string(15) "non-circulating" "mintages" => object MongoDB\Model\BSONArray(1){ public 0 => object MongoDB\Model\BSONDocument(2)
"min_year" => integer 2021 "rulers" => object MongoDB\Model\BSONArray(1){ public $ref => string(12) "coin_mintage" public $id => object MongoDB\BSON\ObjectId(1)
}{ public oid => string(24) "602ffac23cbc75471c50b650" }
}{ public 0 => object MongoDB\Model\BSONDocument(2)
"type" => object MongoDB\Model\BSONDocument(2){ public $ref => string(10) "coin_ruler" public $id => object MongoDB\BSON\ObjectId(1)
}{ public oid => string(24) "542ab5d1b3569ea6693c98b1" }
}{ public $ref => string(9) "coin_type" public $id => object MongoDB\BSON\ObjectId(1)
"shape" => object MongoDB\Model\BSONDocument(2){ public oid => string(24) "111111111111111111111182" }
}{ public $ref => string(10) "coin_shape" public $id => object MongoDB\BSON\ObjectId(1)
"serie" => object MongoDB\Model\BSONDocument(2){ public oid => string(24) "5310767cb3569e5c608b4980" }
}{ public $ref => string(10) "coin_serie" public $id => object MongoDB\BSON\ObjectId(1)
"topic" => object MongoDB\Model\BSONDocument(2){ public oid => string(24) "602ecb3735f52f7f646874a8" }
}{ public $ref => string(10) "coin_topic" public $id => object MongoDB\BSON\ObjectId(1)
"metal" => object MongoDB\Model\BSONDocument(2){ public oid => string(24) "602ed702e44d341ee361de78" }
}{ public $ref => string(10) "coin_metal" public $id => object MongoDB\BSON\ObjectId(1)
"fineness" => string(6) "0.9999" "history" => object MongoDB\Model\BSONArray(1){ public oid => string(24) "5310767cb3569e5c608b49ae" }
}{ public 0 => object MongoDB\Model\BSONDocument(2)
"date_add" => integer 1613757124 "last_modified" => integer 1613757124 "last_modifier" => string(19) "Alexander Malioukov" "last_modifier_id" => string(24) "531701d3c61adcb1df6cc7cd" "user_added" => string(24) "531701d3c61adcb1df6cc7cd" "max_year" => integer 2021 "province_name" => string(0) "" "coin_type_value" => integer 1 "serie_name" => string(45) "50th Anniversary of the Mr. Men & Little Miss" "topic_name" => string(20) "Little Miss Sunshine" "title_photo" => string(102) "/photos/United_Kingdom_(Great_Britain)_Pounds_100/Little_Miss_Sunshine_2021_19.02.2021_20.52-title.jpg" "moderator" => string(19) "Alexander Malioukov" "date_approve" => integer 1613757142 "mod_status" => string(2) "ok" "public" => integer 1 "search_text" => string(3599) "100 100 100 Pounds United Kingdom Great Britain Mr Men is a French/British series of childrens books by English author Roger Har …" ) }{ public $ref => string(12) "coin_history" public $id => object MongoDB\BSON\ObjectId(1)
}{ public oid => string(24) "602ffac43cbc75471c50b654" }
}{ protected _requested_with => NULL protected _method => string(3) "GET" protected _protocol => string(8) "HTTP/1.1" protected _secure => bool FALSE protected _referrer => NULL protected _route => object Route(5)
public response => object Response(5){ protected _filters => array(0) protected _uri => string(14) "catalog(/<id>)" protected _regex => array(0) protected _defaults => array(2) ( "controller" => string(4) "Coin" "action" => string(5) "index" ) protected _route_regex => string(39) "#^catalog(?:/(?P<id>[^/.,;?\n]++))?$#uD" }
protected _routes => array(0) protected _header => object HTTP_Header(0){ }
protected _body => NULL protected _directory => string(0) "" protected _controller => string(4) "Coin" protected _action => string(5) "index" protected _uri => string(16) "catalog/coin6589" protected _external => bool FALSE protected _params => array(1) ( "id" => string(8) "coin6589" ) protected _get => array(0) protected _post => array(0) protected _cookies => array(0) 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)
public session => object Session_Native(5){ }
protected _body => string(0) "" protected _cookies => array(0) protected _protocol => string(8) "HTTP/1.1" }{ protected _name => string(7) "session" protected _lifetime => integer 0 protected _encrypted => bool FALSE protected _data => array(1) ( "newuserdata" => integer 0 ) protected _destroyed => bool FALSE }
public user => object Model_User(3){ private db => object MongoDB\Database(6)
}{ private databaseName => string(12) "coinbrothers" private manager => object MongoDB\Driver\Manager(0)
private empty_collection_stat => array(9) ( "doubles" => integer 0 "collection" => integer 0 "wishlist" => integer 0 "doubles_country" => integer 0 "collection_country" => integer 0 "wishlist_country" => integer 0 "feedback" => integer 0 "store" => integer 0 "cart" => integer 0 ) protected info => array(0) }{ }
private readConcern => object MongoDB\Driver\ReadConcern(0){ }
private readPreference => object MongoDB\Driver\ReadPreference(1){ public mode => string(7) "primary" }
private typeMap => array(3) ( "array" => string(23) "MongoDB\Model\BSONArray" "document" => string(26) "MongoDB\Model\BSONDocument" "root" => string(26) "MongoDB\Model\BSONDocument" ) private writeConcern => object MongoDB\Driver\WriteConcern(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)
0
object Request(19)
{ protected _requested_with => NULL protected _method => string(3) "GET" protected _protocol => string(8) "HTTP/1.1" protected _secure => bool FALSE protected _referrer => NULL protected _route => object Route(5)
{ protected _filters => array(0) protected _uri => string(14) "catalog(/<id>)" protected _regex => array(0) protected _defaults => array(2) ( "controller" => string(4) "Coin" "action" => string(5) "index" ) protected _route_regex => string(39) "#^catalog(?:/(?P<id>[^/.,;?\n]++))?$#uD" }
protected _routes => array(0) protected _header => object HTTP_Header(0){ }
protected _body => NULL protected _directory => string(0) "" protected _controller => string(4) "Coin" protected _action => string(5) "index" protected _uri => string(16) "catalog/coin6589" protected _external => bool FALSE protected _params => array(1) ( "id" => string(8) "coin6589" ) protected _get => array(0) protected _post => array(0) protected _cookies => array(0) 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) }
}1
object 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/1.1" }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)
0
object Request(19)
{ protected _requested_with => NULL protected _method => string(3) "GET" protected _protocol => string(8) "HTTP/1.1" protected _secure => bool FALSE protected _referrer => NULL protected _route => object Route(5)
{ protected _filters => array(0) protected _uri => string(14) "catalog(/<id>)" protected _regex => array(0) protected _defaults => array(2) ( "controller" => string(4) "Coin" "action" => string(5) "index" ) protected _route_regex => string(39) "#^catalog(?:/(?P<id>[^/.,;?\n]++))?$#uD" }
protected _routes => array(0) protected _header => object HTTP_Header(0){ }
protected _body => NULL protected _directory => string(0) "" protected _controller => string(4) "Coin" protected _action => string(5) "index" protected _uri => string(16) "catalog/coin6589" protected _external => bool FALSE protected _params => array(1) ( "id" => string(8) "coin6589" ) protected _get => array(0) protected _post => array(0) protected _cookies => array(0) 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 [ 117 ] » Kohana_Request->execute()
112 /** 113 * Execute the main request. A source of the URI can be passed, eg: $_SERVER['PATH_INFO']. 114 * If no source is specified, the URI will be automatically detected. 115 */ 116 echo Request::factory(TRUE, array(), FALSE) 117 ->execute() 118 ->send_headers(TRUE) 119 ->body(); 120 }
Environment
Included files (239)
DOCROOT/index.php |
/www/coin-brothers.com/vendor/autoload.php |
/www/coin-brothers.com/vendor/composer/autoload_real.php |
/www/coin-brothers.com/vendor/composer/platform_check.php |
/www/coin-brothers.com/vendor/composer/ClassLoader.php |
/www/coin-brothers.com/vendor/composer/include_paths.php |
/www/coin-brothers.com/vendor/composer/autoload_static.php |
/www/coin-brothers.com/vendor/symfony/polyfill-ctype/bootstrap.php |
/www/coin-brothers.com/vendor/symfony/polyfill-mbstring/bootstrap.php |
/www/coin-brothers.com/vendor/illuminate/support/helpers.php |
/www/coin-brothers.com/vendor/react/promise/src/functions_include.php |
/www/coin-brothers.com/vendor/react/promise/src/functions.php |
/www/coin-brothers.com/vendor/symfony/polyfill-php70/bootstrap.php |
/www/coin-brothers.com/vendor/symfony/polyfill-php80/bootstrap.php |
/www/coin-brothers.com/vendor/facebook/graph-sdk/src/Facebook/polyfills.php |
/www/coin-brothers.com/vendor/mongodb/mongodb/src/functions.php |
/www/coin-brothers.com/vendor/swiftmailer/swiftmailer/lib/swift_required.php |
/www/coin-brothers.com/vendor/swiftmailer/swiftmailer/lib/classes/Swift.php |
/www/coin-brothers.com/vendor/tabgeo/country/src/TabGeo/country.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 |
SYSPATH/classes/Kohana/Exception.php |
SYSPATH/classes/Kohana/Kohana/Exception.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 |
SYSPATH/classes/Cookie.php |
SYSPATH/classes/Kohana/Cookie.php |
/www/coin-brothers.com/vendor/illuminate/database/Capsule/Manager.php |
/www/coin-brothers.com/vendor/illuminate/support/Traits/CapsuleManagerTrait.php |
/www/coin-brothers.com/vendor/illuminate/container/Container.php |
/www/coin-brothers.com/vendor/illuminate/contracts/Container/Container.php |
/www/coin-brothers.com/vendor/psr/container/src/ContainerInterface.php |
/www/coin-brothers.com/vendor/illuminate/support/Fluent.php |
/www/coin-brothers.com/vendor/illuminate/contracts/Support/Arrayable.php |
/www/coin-brothers.com/vendor/illuminate/contracts/Support/Jsonable.php |
/www/coin-brothers.com/vendor/illuminate/database/Connectors/ConnectionFactory.php |
/www/coin-brothers.com/vendor/illuminate/database/DatabaseManager.php |
/www/coin-brothers.com/vendor/illuminate/database/ConnectionResolverInterface.php |
/www/coin-brothers.com/vendor/illuminate/events/Dispatcher.php |
/www/coin-brothers.com/vendor/illuminate/contracts/Events/Dispatcher.php |
/www/coin-brothers.com/vendor/illuminate/database/Eloquent/Model.php |
/www/coin-brothers.com/vendor/illuminate/database/Eloquent/Concerns/HasAttributes.php |
/www/coin-brothers.com/vendor/illuminate/database/Eloquent/Concerns/HasEvents.php |
/www/coin-brothers.com/vendor/illuminate/database/Eloquent/Concerns/HasGlobalScopes.php |
/www/coin-brothers.com/vendor/illuminate/database/Eloquent/Concerns/HasRelationships.php |
/www/coin-brothers.com/vendor/illuminate/database/Eloquent/Concerns/HasTimestamps.php |
/www/coin-brothers.com/vendor/illuminate/database/Eloquent/Concerns/HidesAttributes.php |
/www/coin-brothers.com/vendor/illuminate/database/Eloquent/Concerns/GuardsAttributes.php |
/www/coin-brothers.com/vendor/illuminate/contracts/Queue/QueueableEntity.php |
/www/coin-brothers.com/vendor/illuminate/contracts/Routing/UrlRoutable.php |
APPPATH/classes/Helper/Backend.php |
SYSPATH/classes/Arr.php |
SYSPATH/classes/Kohana/Arr.php |
APPPATH/config/backend.php |
MODPATH/mongoDB/classes/MongoDB.php |
MODPATH/mongoDB/classes/Kohana/MongoDB.php |
MODPATH/mongoDB/config/mongodb.php |
APPPATH/config/mongodb.php |
SYSPATH/classes/Config/Group.php |
SYSPATH/classes/Kohana/Config/Group.php |
/www/coin-brothers.com/vendor/mongodb/mongodb/src/Client.php |
/www/coin-brothers.com/vendor/jean85/pretty-package-versions/src/PrettyVersions.php |
/www/coin-brothers.com/vendor/jean85/pretty-package-versions/src/Version.php |
/www/coin-brothers.com/vendor/composer/package-versions-deprecated/src/PackageVersions/Versions.php |
/www/coin-brothers.com/vendor/composer/InstalledVersions.php |
/www/coin-brothers.com/vendor/mongodb/mongodb/src/Database.php |
APPPATH/routes.php |
SYSPATH/classes/Route.php |
SYSPATH/classes/Kohana/Route.php |
APPPATH/classes/Lib/UploadHandler.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/Coin.php |
APPPATH/classes/Controller/Layout.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 |
SYSPATH/classes/Session.php |
SYSPATH/classes/Kohana/Session.php |
SYSPATH/config/session.php |
APPPATH/config/session.php |
SYSPATH/classes/Session/Native.php |
SYSPATH/classes/Kohana/Session/Native.php |
APPPATH/classes/Model/CAuth.php |
APPPATH/classes/Model/CObject.php |
APPPATH/classes/Backend/Create.php |
APPPATH/classes/Backend/Mongo/Main.php |
APPPATH/classes/Backend/Base.php |
APPPATH/classes/Backend/Interface/Main.php |
APPPATH/classes/Model/CUser.php |
APPPATH/classes/Model/User.php |
APPPATH/classes/Model/Object.php |
APPPATH/classes/Model/CCoin.php |
APPPATH/classes/Backend/Mongo/CCoin.php |
APPPATH/classes/Backend/Interface/CCoin.php |
/www/coin-brothers.com/vendor/mongodb/mongodb/src/Collection.php |
/www/coin-brothers.com/vendor/mongodb/mongodb/src/Operation/FindOne.php |
/www/coin-brothers.com/vendor/mongodb/mongodb/src/Operation/Executable.php |
/www/coin-brothers.com/vendor/mongodb/mongodb/src/Operation/Explainable.php |
/www/coin-brothers.com/vendor/mongodb/mongodb/src/Operation/Find.php |
/www/coin-brothers.com/vendor/mongodb/mongodb/src/Model/BSONArray.php |
/www/coin-brothers.com/vendor/mongodb/mongodb/src/Model/BSONDocument.php |
APPPATH/classes/Model/Coin.php |
APPPATH/config/host.php |
APPPATH/classes/Model/Notification.php |
/www/coin-brothers.com/vendor/mongodb/mongodb/src/Operation/UpdateMany.php |
/www/coin-brothers.com/vendor/mongodb/mongodb/src/Operation/Update.php |
/www/coin-brothers.com/vendor/mongodb/mongodb/src/UpdateResult.php |
APPPATH/classes/Backend/Mongo/CUser.php |
APPPATH/classes/Backend/Interface/CUser.php |
APPPATH/classes/Model/CCoinMintage.php |
APPPATH/classes/Backend/Mongo/CCoinMintage.php |
APPPATH/classes/Backend/Interface/CCoinMintage.php |
APPPATH/classes/Model/ICoinMintage.php |
APPPATH/classes/Model/IObject.php |
APPPATH/classes/Model/CoinMintage.php |
APPPATH/classes/Model/MarketSearch.php |
APPPATH/classes/Model/CCoinCurrency.php |
APPPATH/classes/Backend/Mongo/CCoinCurrency.php |
APPPATH/classes/Backend/Interface/CCoinCurrency.php |
APPPATH/classes/Model/CoinCurrency.php |
APPPATH/classes/Model/CCountry.php |
APPPATH/classes/Backend/Mongo/CCountry.php |
APPPATH/classes/Backend/Interface/CCountry.php |
APPPATH/classes/Model/Country.php |
APPPATH/classes/Model/CCoinMetal.php |
APPPATH/classes/Backend/Mongo/CCoinMetal.php |
APPPATH/classes/Backend/Interface/CCoinMetal.php |
APPPATH/classes/Model/CoinMetal.php |
APPPATH/classes/Model/CCoinSerie.php |
APPPATH/classes/Backend/Mongo/CCoinSerie.php |
APPPATH/classes/Backend/Interface/CCoinSerie.php |
APPPATH/classes/Model/CoinSerie.php |
APPPATH/classes/Model/CCoinTopic.php |
APPPATH/classes/Backend/Mongo/CCoinTopic.php |
APPPATH/classes/Backend/Interface/CCoinTopic.php |
APPPATH/classes/Model/CoinTopic.php |
/www/coin-brothers.com/vendor/mongodb/mongodb/src/Operation/Aggregate.php |
APPPATH/classes/Model/IUser.php |
APPPATH/classes/Model/CCoinObverseReverse.php |
APPPATH/classes/Backend/Mongo/CCoinObverseReverse.php |
APPPATH/classes/Backend/Interface/CCoinObverseReverse.php |
APPPATH/classes/Model/CoinObverseReverse.php |
APPPATH/classes/Model/CCoinImageType.php |
APPPATH/classes/Backend/Mongo/CCoinImageType.php |
APPPATH/classes/Backend/Interface/CCoinImageType.php |
APPPATH/classes/Model/CoinImageType.php |
APPPATH/classes/Model/CCoinImage.php |
APPPATH/classes/Model/ICoin.php |
APPPATH/classes/Helper/Coin.php |
APPPATH/classes/Model/CCoinRuler.php |
APPPATH/classes/Backend/Mongo/CCoinRuler.php |
APPPATH/classes/Backend/Interface/CCoinRuler.php |
APPPATH/classes/Model/CoinRuler.php |
APPPATH/classes/Model/ICoinRuler.php |
APPPATH/classes/Model/CCoinPhoto.php |
APPPATH/classes/Backend/Mongo/CCoinPhoto.php |
APPPATH/classes/Backend/Interface/CCoinPhoto.php |
APPPATH/classes/Model/ICoinPhoto.php |
APPPATH/classes/Model/CoinPhoto.php |
APPPATH/classes/Model/CCoinType.php |
APPPATH/classes/Backend/Mongo/CCoinType.php |
APPPATH/classes/Backend/Interface/CCoinType.php |
APPPATH/classes/Model/CoinType.php |
APPPATH/classes/Model/CCoinMint.php |
APPPATH/classes/Backend/Mongo/CCoinMint.php |
APPPATH/classes/Backend/Interface/CCoinMint.php |
APPPATH/classes/Model/CoinMint.php |
APPPATH/classes/Model/UserCollection.php |
APPPATH/views/index.php |
APPPATH/views/header.php |
APPPATH/views/auth.php |
APPPATH/views/nav.php |
APPPATH/classes/Model/CMarketplace.php |
/www/coin-brothers.com/vendor/mongodb/mongodb/src/Operation/Count.php |
APPPATH/views/search/index_js.php |
APPPATH/views/search/search_form.php |
APPPATH/classes/Model/CCatalogNumber.php |
APPPATH/classes/Model/CatalogNumber.php |
APPPATH/classes/Model/ICoinType.php |
APPPATH/classes/Model/ICoinImageType.php |
APPPATH/classes/Model/CCoinEdgeType.php |
APPPATH/classes/Backend/Mongo/CCoinEdgeType.php |
APPPATH/classes/Backend/Interface/CCoinEdgeType.php |
APPPATH/classes/Model/ICoinEdgeType.php |
APPPATH/classes/Model/CoinEdgeType.php |
APPPATH/classes/Model/CCoinShape.php |
APPPATH/classes/Backend/Mongo/CCoinShape.php |
APPPATH/classes/Backend/Interface/CCoinShape.php |
APPPATH/classes/Model/ICoinShape.php |
APPPATH/classes/Model/CoinShape.php |
APPPATH/views/coin/index.php |
APPPATH/classes/Model/CCoinEdge.php |
APPPATH/classes/Backend/Mongo/CCoinEdge.php |
APPPATH/classes/Backend/Interface/CCoinEdge.php |
APPPATH/classes/Model/CoinEdge.php |
SYSPATH/classes/Debug.php |
SYSPATH/classes/Kohana/Debug.php |
SYSPATH/classes/Date.php |
SYSPATH/classes/Kohana/Date.php |
SYSPATH/views/kohana/error.php |
APPPATH/i18n/ru.php |
SYSPATH/classes/UTF8.php |
SYSPATH/classes/Kohana/UTF8.php |
Loaded extensions (39)
Core |
date |
libxml |
openssl |
pcre |
sqlite3 |
zlib |
ctype |
curl |
dom |
fileinfo |
filter |
ftp |
hash |
iconv |
json |
mbstring |
SPL |
PDO |
session |
posix |
Reflection |
standard |
SimpleXML |
pdo_sqlite |
Phar |
tokenizer |
xml |
xmlreader |
xmlwriter |
mysqlnd |
apache2handler |
bcmath |
exif |
gd |
intl |
mongodb |
zip |
zmq |
$_SESSION
newuserdata |
integer 0 |
$_SERVER
REDIRECT_STATUS |
string(3) "200" |
HTTP_HOST |
string(17) "coin-brothers.com" |
HTTP_CONNECTION |
string(5) "close" |
HTTP_X_REAL_IP |
string(13) "3.232.129.123" |
HTTP_X_FORWARDED_FOR |
string(13) "3.232.129.123" |
HTTP_X_FORWARDED_PROTO |
string(5) "https" |
HTTP_X_FORWARDED_SSL |
string(2) "on" |
HTTP_X_FORWARDED_PORT |
string(3) "443" |
HTTP_USER_AGENT |
string(40) "CCBot/2.0 (https://commoncrawl.org/faq/)" |
HTTP_ACCEPT |
string(63) "text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8" |
HTTP_ACCEPT_LANGUAGE |
string(14) "en-US,en;q=0.5" |
HTTP_ACCEPT_ENCODING |
string(7) "br,gzip" |
PATH |
string(60) "/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin" |
SERVER_SIGNATURE |
string(78) "<address>Apache/2.4.10 (Debian) Server at coin-brothers.com Port 80</address>
" |
SERVER_SOFTWARE |
string(22) "Apache/2.4.10 (Debian)" |
SERVER_NAME |
string(17) "coin-brothers.com" |
SERVER_ADDR |
string(10) "172.20.0.6" |
SERVER_PORT |
string(2) "80" |
REMOTE_ADDR |
string(10) "172.20.0.2" |
DOCUMENT_ROOT |
string(26) "/www/coin-brothers.com/web" |
REQUEST_SCHEME |
string(4) "http" |
CONTEXT_PREFIX |
string(0) "" |
CONTEXT_DOCUMENT_ROOT |
string(26) "/www/coin-brothers.com/web" |
SERVER_ADMIN |
string(19) "webmaster@localhost" |
SCRIPT_FILENAME |
string(36) "/www/coin-brothers.com/web/index.php" |
REMOTE_PORT |
string(5) "43558" |
REDIRECT_URL |
string(17) "/catalog/coin6589" |
GATEWAY_INTERFACE |
string(7) "CGI/1.1" |
SERVER_PROTOCOL |
string(8) "HTTP/1.1" |
REQUEST_METHOD |
string(3) "GET" |
QUERY_STRING |
string(0) "" |
REQUEST_URI |
string(17) "/catalog/coin6589" |
SCRIPT_NAME |
string(10) "/index.php" |
PATH_INFO |
string(17) "/catalog/coin6589" |
PATH_TRANSLATED |
string(45) "redirect:/index.php/catalog/coin6589/coin6589" |
PHP_SELF |
string(27) "/index.php/catalog/coin6589" |
REQUEST_TIME_FLOAT |
float 1614973411.516 |
REQUEST_TIME |
integer 1614973411 |
argv |
array(0) |
argc |
integer 0 |