зеркало из https://github.com/mozilla/phonebook.git
19 строки
372 B
PHP
19 строки
372 B
PHP
<?php
|
|
|
|
function output_autocomplete($entries) {
|
|
global $keyword;
|
|
$struct = array(
|
|
"query" => $keyword,
|
|
"suggestions" => array(),
|
|
"data" => array()
|
|
);
|
|
foreach ($entries as $entry) {
|
|
$struct["suggestions"][] = $entry["cn"];
|
|
$struct["data"][] = $entry["dn"];
|
|
}
|
|
header("Content-Type: application/json");
|
|
print json_encode($struct);
|
|
die;
|
|
}
|
|
|