$db = mysqli_connect($host, $db_name, $db_pass, $db_name);
if (!function_exists('db')) {
function db () { global $db; return $db; }
}
if (!function_exists('db')) {
function db () {
static $db;
if (!$db) $db = mysqli_connect($host, $db_name, $db_pass, $db_name);
return $db;
}
}
$add_destiny = mysqli_query(db(), "UPDATE `data` SET `column` = '$variable; WHERE `symbol` = '$db_symbol[$t]'");
function CheckDestiny ($variable,$type) use ($db) {
// ...
}
curl_setopt(CURLOPT_POSTFIELDS, [
"login" => "asdasd",
"password" => "asdas",
"amount" => "10", // сюда нужно вставить перменную php
"currency" => "EUR", // сюда нужно вставить перменную php
"orderId" => "adasd-asd1213-asd" // сюда нужно вставить перменную php
]);
$amount = 10;
$currency = 'EUR';
$orderId = 'adasd-asd1213-asd';
curl_setopt(CURLOPT_POSTFIELDS, [
"login" => "asdasd",
"password" => "asdas",
"amount" => $amount,
"currency" => $currency,
"orderId" => $orderId,
]);
$array = []; //[{id: 342, category_id: 135, category_title: Кроссовки, vendor_code_1c: 100-100-102, vendor_code: 0002, title: Nike Summer, text: Летняя модель кроссовок Nike 2021 года, brand: Nike, normal_price: 8000, discount_price: 6500, material: Резина}, {id: 361, category_id: 135, category_title: Кроссовки, vendor_code_1c: 333-333, vendor_code: 0011, title: 333-333, text: 333-333, brand: 333-333, normal_price: 333, discount_price: 0, material: 333-333}]
// В синтаксисе массива ошибка, я исправлять не буду
$result = array_map(function($item){
$item['id'] = 'New ID: ' . $item['id'];
return $item;
}, $array);
public function buyProduct($id){
$product = Product::where('id',$id)->get();
$userId = Auth::user()->id;
$sellerUserId = $product->first()->seller_user_id;
$sellerUserIdBalance = User::where('id',$sellerUserId)->get()->first()->balance;
User::where('id', $sellerUserId)->update(array('balance' => $sellerUserIdBalance+$productPrice));
class MyBase extends FilePath{
function __construct(){
parent::__construct();
echo $this->SQLiteFilePath; // default,. а должно быть base.db}
}
}
if (
$expr1
&& $expr2
) {
// if body
} elseif (
$expr3
&& $expr4
) {
// elseif body
}
$arr2 = [
'a',
'b',
'c',
];
array_shift($arr2); // ['b', 'c'];
file_get_contents("https://api.telegram.org/bot".$TOKEN."/sendMessage?chat_id=".$ID."&text=".urlencode($message));