ldap_parse_exop

(PHP 7 >= 7.2.0, PHP 8)

ldap_parse_exopLDAP拡張オペレーションの結果オブジェクトをパースする

説明

ldap_parse_exop(
    resource $ldap,
    resource $result,
    string &$response_data = null,
    string &$response_oid = null
): bool

LDAP拡張オペレーションの結果オブジェクト result データをパースします。

パラメータ

ldap

ldap_connect() が返す LDAP リンク ID。

result

ldap_exop() が返す LDAP 結果リソース。

response_data

レスポンスデータで埋められます。

response_oid

レスポンスのOIDで埋められます。

返り値

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

参考

  • ldap_exop() - 拡張されたオペレーションを実行する

add a note add a note

User Contributed Notes

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