<?php
$input = [
'quantity' => [0=>1, 1=>2, 2=>3, 3=>4],
'color' => [0=>5, 1=>6, 2=>7, 3=>8],
];
$output = array_map(function ($first, $second) {
return [
'quantity' => $first,
'color' => $second,
];
}, $input['quantity'], $input['color']);
var_dump($output);
$a = 1;
function f(&$a) {
$a = 2;
}
f($a);
echo $a; // 2
$a = "b";
$b = 1;
$c = $$a;
echo $c;
Возвращает FALSE в случае неудачи. В случае успешного выполнения запросов SELECT, SHOW, DESCRIBE или EXPLAIN mysqli_query() вернет объект mysqli_result. Для остальных успешных запросов mysqli_query() вернет TRUE.
function resultToArray ($result) {
if ($result !== false){
$array = array ();
while ($row = $result->fetch_assoc())
$array[] = $row;
return $array;
}
return $result === true ? true : null; // Или любое другое условие
}
$wgTmpDirectory = 'some_directory';
function hello(event) {
console.log("Hello, ", event.target);
}
$("#example1").on("click", hello);
$("#example2").on("click hover", hello);
$("#example3").on("mouseenter mouseleave", hello);