connections
. По поступлению лайка инкрементировать поле.Почитал что инженер это тот кто имеет высшее образование, но я знаю людей которые уже синьеры и у них (в более чем 30 лет) нет ВО, так что мне кажется что такое определение притянуто за уши.
$search_text = 'лист';
array_filter($array, function($el) use ($search_text) {
return ( strpos($el['text'], $search_text) !== false );
});
<?php
require_once 'vendor/autoload.php';
$fuse = new \Fuse\Fuse([
[
"title" => "Old Man's War",
"author" => "John Scalzi"
],
[
"title" => "The Lock Artist",
"author" => "Steve Hamilton"
],
[
"title" => "HTML5",
"author" => "Remy Sharp"
],
[
"title" => "Right Ho Jeeves",
"author" => "P.D Woodhouse"
],
], [
"keys" => [ "title", "author" ],
]);
$fuse->search('hamil');
/*
Array
(
[0] => Array
(
[title] => The Lock Artist
[author] => Steve Hamilton
)
[1] => Array
(
[title] => HTML5
[author] => Remy Sharp
)
)
*/
document.getElementById('hider').onclick = function() {
document.getElementById('config-btn').classList.toggle('hidden');
}
.hidden {
display: none;
}
document.getElementById('hider').onclick = function() {
var el = document.getElementById('config-btn');
el.style.display === 'none' ? el.style.display = 'initial' : el.style.display = 'none';
}
тогда никаких провайдеров не было, через модем мы подключались и обменивались сообщениями,
Как подключится к интернету без провайдера?
An asynchronous event driven PHP framework for easily building fast, scalable network applications. Supports HTTP, Websocket, SSL and other custom protocols. Supports libevent, HHVM, ReactPHP.
<?php
use Workerman\Worker;
require_once './Workerman/Autoloader.php';
// Create A Worker and Listens 2346 port, use Websocket protocol
$ws_worker = new Worker("websocket://0.0.0.0:2346");
// 4 processes
$ws_worker->count = 4;
// Emitted when new connection come
$ws_worker->onConnect = function($connection)
{
// Emitted when websocket handshake done
$connection->onWebSocketConnect = function($connection)
{
echo "New connection\n";
};
};
// Emitted when data is received
$ws_worker->onMessage = function($connection, $data)
{
// Send hello $data
$connection->send('hello ' . $data);
};
// Emitted when connection closed
$ws_worker->onClose = function($connection)
{
echo "Connection closed";
};
// Run worker
Worker::runAll();