public function resolve()
{
// ....
$type = $message->getType();
// Если такого метода не существует, то можно бросить Исключение или еще как-то обработать ошибку
// А можно вообще ничего не проверять, а сделать обработку в __call(). Вариантов тоже много
if (!method_exists($this, $type)) {
throw new Exception(...);
}
// Вызвать подходящий метод
return $this->$type(); //либо call_user_func...()
}
protected function text()
{
//code
}
protected function poll()
{
//code
}
protected function image()
{
//code
}
$reader = new SimpleXMLElement($xml);
foreach ($reader->channel->item as $item) {
var_dump((string)$item->description->div[0]);
}
$array = [
'accessories' => [ /* ... Ваш массив ... */],
];
$tmp = [];
foreach ($array['accessories'] as $item) {
if (!isset($tmp[$item['vendor_code']])) {
$tmp[$item['vendor_code']] = $item;
continue;
}
$tmp[$item['vendor_code']]['accessory_group_id'] = implode(',',
array_unique(
explode(',', $tmp[$item['vendor_code']]['accessory_group_id'] . ',' . $item['accessory_group_id'])
)
);
}
$result_array['accessories'] = array_values($tmp);
var_dump($result_array);
//...
foreach ($this->data['persons'] as $person) {
echo $person['lastName'];
// ...
}
public function render(string $template)
{
ob_start();
// функция импорта
extract($this->data, EXTR_OVERWRITE);
include $template;
$content = ob_get_contents();
ob_end_clean();
return $content;
}
public function render(string $template)
{
ob_start();
// Импорт
foreach($this->data as $key => $value) {
// Переменные переменных $$
$$key = $value;
}
include $template;
$content = ob_get_contents();
ob_end_clean();
return $content;
}
function limit($value, $limit = 100, $end = '...')
{
if (mb_strwidth($value, 'UTF-8') <= $limit) {
return $value;
}
return rtrim(mb_strimwidth($value, 0, $limit, '', 'UTF-8')) . $end;
}
// ...
list($controller, $action) = explode('#', $match['target']);
$controller = "routetest\\Controllers\\$controller";
$obj = new $controller();
location /socket/ {
proxy_pass http://127.0.0.1:8443;
proxy_http_version 1.1;
proxy_set_header Upgrade $http_upgrade;
proxy_set_header Connection "upgrade";
proxy_read_timeout 70s;
}
document.addEventListener("visibilitychange", function() {
document.visibilityState === 'visible' && alert('Показываю алерт');
});
comment_id in (...)