PHP 8 deprecates openssl_free_key (actually openssl_pkey_free which it aliases) and automatically destroys the key instance when it goes out of scope.
(PHP 4 >= 4.2.0, PHP 5, PHP 7, PHP 8)
openssl_pkey_free — 秘密鍵を開放する
この関数は PHP 8.0.0 で 非推奨になります。この関数に頼らないことを強く推奨します。
注意:
この関数を実行しても何も起こりません。PHP 8.0.0 より前のバージョンでは、この関数はリソースを閉じるのに使われていました。
この関数は、openssl_pkey_new() で作成した秘密鍵を開放します。
key
キーを保持するリソース。
値を返しません。
バージョン | 説明 |
---|---|
8.0.0 | この関数は推奨されなくなりました。 なぜなら、実行しても何の効果もなくなったからです。 |
8.0.0 |
key は、
OpenSSLAsymmetricKey クラスのインスタンスを受け入れるようになりました。
これより前のバージョンでは、
OpenSSL key 型のリソースを受け入れていました。
|
PHP 8 deprecates openssl_free_key (actually openssl_pkey_free which it aliases) and automatically destroys the key instance when it goes out of scope.