検索

phrase: max: clip:
target: order:
Results of 71 - 80 of about 759 for key (0.033 sec.)
基本的な例 4310
« 例 DBA 関数 » PHP Manual 例 基本的な例 基本的な例 例1 DBA の例 <?php $id = dba_open ( "/tmp/te ... echo "dba_open failed\n" ; exit; } dba_replace ( "key" , "This is an example!" , $id ); if ( dba_exists ... ( "key" , $id )) { echo dba_fetch ( "key" , $id ); dba_de ... lete ( "key" , $id ); } dba_close ( $id ); ?> DBA はバイナリセ ... popen() に 4 番目の引数として渡されます。 dba_firstkey() および dba_nextkey() 関数を用いて全てのエントリに ...
https://man.plustar.jp/php/dba.example.html - [similar]
証明書から公開鍵を抽出し、使用できるようにする 4310
« openssl_pkey_get_private openssl_pkey_new » PHP Manual OpenSSL 関数 証明書から公開鍵を抽出し、 ... 使用できるようにする openssl_pkey_get_public (PHP 4 >= 4.2.0, PHP 5, PHP 7, PHP 8) o ... penssl_pkey_get_public — 証明書から公開鍵を抽出し、使用できるよ ... うにする 説明 openssl_pkey_get_public ( OpenSSLAsymmetricKey | OpenSSLCertifi ... cate | array | string $public_key ): OpenSSLAsymmetricKey | false openssl_pkey_get_p ...
https://man.plustar.jp/php/function.openssl-pkey-get-public.html - [similar]
はじめに 4283
« Yaconf インストール/設定 » PHP Manual Yaconf はじめに はじめに Yet Another Configurations Cont ... quires PHP 7.0 or greater. 例1 INI example ;simple key val key=val ;hash hash.a=val ;array arr.0=val ;or ... nt env=${PATH} 例2 INI sections example [SectionA] key=val hash.a=val ;SectionB inherits SectionA [Sectio ... nB:SectionA] ;override configuration key in SectionA key=new_val 関連キーワード: val , Yaco ... nf , key , SectionA , configurations , sections , files , u ...
https://man.plustar.jp/php/intro.yaconf.html - [similar]
行番号を取得する 4283
« SplFileObject::hasChildren SplFileObject::next » PHP Manual SplFileObject 行番号を取得する Spl ... FileObject::key (PHP 5 >= 5.1.0, PHP 7, PHP 8) SplFileObject::key ... — 行番号を取得する 説明 public SplFileObject::key (): int 現在の行番号を取得します。 注意 : 固定長の ... り値 現在の行番号を返します。 例 例1 SplFileObject::key() の例 <?php $file = new SplFileObject ( "lipsum.t ... xt" ); foreach ( $file as $line ) { echo $file -> key () . ". " . $line ; } ?> 上の例の出力は、 たとえば ...
https://man.plustar.jp/php/splfileobject.key.html - [similar]
配列の最後のキーを得る 4263
« array_key_first array_keys » PHP Manual 配列 関数 配列の最後のキーを得る array_key_last (PHP 7 ... >= 7.3.0, PHP 8) array_key_last — 配列の最後のキーを得る 説明 array_key_last ... ます。 そうでなければ、 null を返します。 参考 array_key_first() - 配列の最初のキーを得る end() - 配列の内部 ... トする 関連キーワード: 配列 , array , キー , 最後 , key , 内部 , ポインタ , string , int , 関数 ...
https://man.plustar.jp/php/function.array-key-last.html - [similar]
秘密鍵を取得する 4263
« openssl_pkey_get_details openssl_pkey_get_public » PHP Manual OpenSSL 関数 秘密鍵を取得する op ... enssl_pkey_get_private (PHP 4 >= 4.2.0, PHP 5, PHP 7, PHP 8) ... openssl_pkey_get_private — 秘密鍵を取得する 説明 openssl_pkey_g ... et_private ( OpenSSLAsymmetricKey | OpenSSLCertificate | array | string $private_key ... , ? string $passphrase = null ): OpenSSLAsymmetricKey | false openssl_pkey_get_private() は private_key ...
https://man.plustar.jp/php/function.openssl-pkey-get-private.html - [similar]
Iterator インターフェイス 4242
« Traversable Iterator::current » PHP Manual 定義済みのインターフェイスとクラス Iterator インター ... e { /* メソッド */ public current (): mixed public key (): mixed public next (): void public rewind (): v ... tion ]; } #[\ReturnTypeWillChange] public function key () { var_dump ( __METHOD__ ); return $this -> posi ... on ]); } } $it = new myIterator ; foreach( $it as $key => $value ) { var_dump ( $key , $value ); echo "\n ... (19) "myIterator::current" string(15) "myIterator::key" int(0) string(12) "firstelement" string(16) "myIt ...
https://man.plustar.jp/php/class.iterator.html - [similar]
RecursiveDirectoryIterator クラス 4242
« RecursiveCallbackFilterIterator::hasChildren RecursiveDirectoryIterator::__construct » PHP Man ... NT_MODE_MASK = 240 ; const int FilesystemIterator::KEY_AS_PATHNAME = 0 ; const int FilesystemIterator::KE ... LOW_SYMLINKS = 512 ; const int FilesystemIterator::KEY_MODE_MASK = 3840 ; const int FilesystemIterator::N ... EW_CURRENT_AND_KEY = 256 ; const int FilesystemIterator::SKIP_DOTS = ... ring $directory , int $flags = FilesystemIterator::KEY_AS_PATHNAME | FilesystemIterator::CURRENT_AS_FILEI ...
https://man.plustar.jp/php/class.recursivedirectoryiterator.html - [similar]
S/MIME 暗号化されたメッセージを復号する 4242
« openssl_pkcs12_read openssl_pkcs7_encrypt » PHP Manual OpenSSL 関数 S/MIME 暗号化されたメッセー ... rtificate | string $certificate , OpenSSLAsymmetricKey | OpenSSLCertificate | array | string | null $priv ... ate_key = null ): bool input_filename で指定したファイル中 ... 暗号化されたメッセージを、 certificate と private_key で 指定した証明書とそれに関連付けられた秘密鍵を用い ... 指定したファイルに出力されます。 certificate private_key 戻り値 成功した場合に true を、失敗した場合に fals ...
https://man.plustar.jp/php/function.openssl-pkcs7-decrypt.html - [similar]
現在認証済みの公開鍵の一覧を表示する 4242
« ssh2_publickey_init ssh2_publickey_remove » PHP Manual SSH2 関数 現在認証済みの公開鍵の一覧を表 ... 示する ssh2_publickey_list (PECL ssh2 >= 0.10) ssh2_publickey_list — 現在 ... 認証済みの公開鍵の一覧を表示する 説明 ssh2_publickey_list ( resource $pkey ): array 現在認証済みの公開鍵 ... の一覧を表示します。 パラメータ pkey 公開鍵サブシステムのリソース。 戻り値 鍵を、数値添 ... 文字列です。 例 例1 認証済みの鍵の一覧を ssh2_publickey_list() で表示する <?php $ssh2 = ssh2_connect ( 'sh ...
https://man.plustar.jp/php/function.ssh2-publickey-list.html - [similar]