當前位置: 首頁>>代碼示例>>PHP>>正文


PHP Backend::search方法代碼示例

本文整理匯總了PHP中Backend::search方法的典型用法代碼示例。如果您正苦於以下問題:PHP Backend::search方法的具體用法?PHP Backend::search怎麽用?PHP Backend::search使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在Backend的用法示例。


在下文中一共展示了Backend::search方法的3個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的PHP代碼示例。

示例1: json_encode

<?php

require_once 'backend.php';
$backend = new Backend();
$backend->connect('config.ini');
if (!$backend->auth($_POST['username'], $_POST['password'])) {
    header($_SERVER['SERVER_PROTOCOL'] . ' 403 Forbidden');
    header('Status: 403 Forbidden');
    exit;
}
header('Content-Type: application/json');
echo json_encode($backend->search($_GET['query'], $_GET['limit'], $_GET['offset'], 5)) . "\n";
開發者ID:selabnayr,項目名稱:quassel-rest-search,代碼行數:12,代碼來源:search.php

示例2: dirname

?>
" maxlength="40"/> </td>  
		</tr>
		<tr>
			<td>&nbsp;</td>
			<td><input class="submit" type="submit" value="Submit"/></td>
		</tr>
	</table>
</form>

<?php 
define('REAL_BASE', str_replace('\\', '/', dirname(__FILE__)) . '/');
include "inc/Backend.php";
if ($_POST['inifile']) {
    $GLOBALS['wwwoutput'] = TRUE;
    $back = new Backend(false, $_POST['inifile']);
    $back->search($HTTP_POST_VARS);
    print "<pre>";
    print_r($ldifString);
    print "</pre>";
} else {
    ?>

<?php 
}
#phpinfo();
?>
</div>
</body>
</html>
開發者ID:AKSW,項目名稱:ldap2sparql,代碼行數:30,代碼來源:www.php

示例3: dirname

 * @package backend
 * 
 */
// ini file to use
$ini = "default.ini";
define('REAL_BASE', str_replace('\\', '/', dirname(__FILE__)) . '/');
include "inc/Backend.php";
# create the logfile handle
$loghandle = fopen(REAL_BASE . 'log/shellback.log', 'a') or die("Can not open Logfile!\n");
$GLOBALS['loghandle'] = $loghandle;
fwrite($loghandle, "STARTING\n");
# parse stdin to an array and write it to the logfile
$request = array();
do {
    $line = trim(fgets(STDIN));
    # old school log
    fwrite($loghandle, "{$line}\n");
    if ($line != "") {
        $tmpa = split(": ", $line);
        $request[$tmpa[0]] = $tmpa[1];
        fwrite($loghandle, $request[$tmpa[0]] . "\n");
    }
} while ($line != "");
$back = new Backend(false, $ini);
$ldif = $back->search($request);
fwrite($loghandle, $ldif);
echo $ldif;
#echo "dn: dc=ttt,ou=ldap2sparql,dc=localdomain\n".
#	"dc: ttt\n".
#	"objectClass: domain\n\n";
fclose($loghandle);
開發者ID:AKSW,項目名稱:ldap2sparql,代碼行數:31,代碼來源:shell.php


注:本文中的Backend::search方法示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。