$http.get('...').success(function(response){})
<?php
// создаем дочерний процесс
$child_pid = pcntl_fork();
if ($child_pid) {
// выходим из родительского, привязанного к консоли, процесса
exit;
}
.....
preg_replace_callback(
'~[А-ЯЁA-Z]{2,}~u',
function ($match) {
return mb_strtolower($match[0], 'utf-8');
},
'Товар "Диван Амстердам" МИКС, акция, ОГРАНИЧЕННАЯ ПАРТИЯ'
);
if (class_exists('\CURLFile')) {
curl_setopt($ch, CURLOPT_POSTFIELDS, ['file1' => new \CURLFile($path)]);
} else {
curl_setopt($ch, CURLOPT_POSTFIELDS, ['file1' => "@$path"]);
}