This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
minikube start | |
😄 minikube v1.2.0 on linux (amd64) | |
👍 minikube will upgrade the local cluster from Kubernetes 1.7.5 to 1.15.0 | |
💿 Downloading Minikube ISO ... | |
129.33 MB / 129.33 MB [============================================] 100.00% 0s | |
💡 Tip: Use 'minikube start -p <name>' to create a new cluster, or 'minikube delete' to delete this one. | |
🔄 Restarting existing virtualbox VM for "minikube" ... | |
⌛ Waiting for SSH access ... | |
🐳 Configuring environment for Kubernetes v1.15.0 on Docker 1.12.6 | |
💾 Downloading kubelet v1.15.0 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
$handle = @fopen("test.ini", "r"); | |
if (! $handle) { | |
fclose($handle); | |
return; | |
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Array | |
( | |
[userId] => 11708ffa94d1b7d86bbca027bd8b8e28 | |
[cityId] => 1 | |
[cityName] => Москва | |
[pageType] => ThankYouPage | |
[userOrders] => 22 | |
[transactions] => stdClass Object | |
( | |
[transactionId] => 16006267 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Array | |
( | |
[userId] => 11708ffa94d1b7d86bbca027bd8b8e28 | |
[cityId] => 1 | |
[cityName] => Москва | |
[pageType] => ThankYouPage | |
[userOrders] => 19 | |
[transactions] => stdClass Object | |
( | |
[transactionId] => 16006264 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Array | |
( | |
[userId] => 11708ffa94d1b7d86bbca027bd8b8e28 | |
[cityId] => 1 | |
[cityName] => Москва | |
[pageType] => ThankYouPage | |
[userOrders] => 11 | |
[transactions] => stdClass Object | |
( | |
[transactionId] => 15966470 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
[ | |
131: | |
{ | |
ID: 131, | |
NAME: name | |
STATUS: "vendor", | |
CHILDREN: | |
[ | |
132: { | |
ID: 132, |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
[ | |
131: | |
{ | |
ID: 131, | |
PARENT_ID: 0, | |
DEPTH_LEVEL: 1, | |
NAME: name | |
STATUS: "structure", | |
CHILDREN: | |
[ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
server { | |
listen 78.46.77.145; | |
#listen 80; ## listen for ipv4; this line is default and implied | |
#listen [::]:80 default ipv6only=on; ## listen for ipv6 | |
root /var/www/kupi.ru/current; | |
index index.php index.html index.htm; | |
# Make site accessible from http://localhost/ | |
server_name kupi.ru *.kupi.ru; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
var Phone = function(input) { | |
var $this = this; | |
this.input = input; | |
this.init = function(options) { | |
this.option = this.cloneObj(options); | |
this.bild(); | |
}; | |
this.bild = function() { |