$response = [
'success' => true,
'CaptchaError' => false,
];
echo json_encode($response);
// старый синтаксис
$response = array(
'success' => true,
'CaptchaError' => false,
);
echo json_encode($response);
echo '{
"success" : true,
"CaptchaError" : false
}';
function uniqueArray($input, $key) {
$exists = [];
$result = array_filter($input, function($item) use (&$exists, $key) {
$email = $item[$key];
if (array_key_exists($email, $exists)) {
return false;
}
$exists[$email] = true;
return true;
});
return $result;
}
$companywet = array(
0 => array(
'companyName' => 'ООО Ваша Мама',
'managerName' => 'Светлана Юрьевана',
'contactEmail' => 'sveta@ya.ru'),
1 => array(
'companyName' => 'ООО Связьтехконсалтинг',
'managerName' => 'Гурова Алевтина Сергеевна',
'contactEmail' => 'gur@ya.ru'),
2 => array(
'companyName' => 'ООО Стройбыт',
'managerName' => 'Гуров Сергей Иванович',
'contactEmail' => 'gur@ya.ru'),
);
$result = uniqueArray($companywet, 'contactEmail');
var_dump($result);
ul.el-grid {
font-size: 0;
}
li.isotope-item {
font-size: 1rem;
float: none;
display: inline-block;
vertical-align: top;
}
ul.el-grid {
display: flex;
flex-wrap: wrap;
}
{
"require": {
"slim/slim": "2.*",
"twig/twig": "~1.18"
}
}
{
"autoload": {
"psr-4": {
"MyName\\MyProject\\": "application"
}
}
}