CakeFest 2024: The Official CakePHP Conference

ldap_control_paged_result_response

(PHP 5 >= 5.4.0, PHP 7)

ldap_control_paged_result_responseLDAP ページネーションクッキーを取得する

警告

この関数は PHP 7.4.0 以降で 推奨されなくなり、PHP 8.0.0 以降は 削除されています。 代替として、ldap_search() 関数の controls 引数を使うべきです。 詳細は LDAP コントロール も参照して下さい。

説明

ldap_control_paged_result_response(
    resource $link,
    resource $result,
    string &$cookie = ?,
    int &$estimated = ?
): bool

サーバーから送られるページネーション情報を取得します。

パラメータ

link

ldap_connect() が返す LDAP リソース。

result

cookie

サーバーから送られる opaque structure。

estimated

取得するエントリ数の予測。

戻り値

成功した場合に true を、失敗した場合に false を返します。

変更履歴

バージョン 説明
8.0.0 この関数は削除されました。
7.4.0 この関数は非推奨になりました。

参考

add a note

User Contributed Notes

There are no user contributed notes for this page.
To Top