検索

phrase: max: clip:
target: order:
Results of 61 - 70 of about 661 for open (0.082 sec.)
オープンした blob から len バイト分のデータを取得する 4463
« ibase_blob_echo ibase_blob_import » PHP Manual Firebird/InterBase 関数 オープンした blob から ... andle , int $len ): string この関数は、 ibase_blob_open() によって読み込み用に オープンした BLOB から最大 ... ことはできません。 パラメータ blob_handle ibase_blob_open() でオープンした BLOB ハンドル。 len 返されるデータ ... o ( $data -> BLOB_VALUE ); $blob_hndl = ibase_blob_open ( $data -> BLOB_VALUE ); echo ibase_blob_get ( $bl ... 代入して操作する方法を示しています。 参考 ibase_blob_open() - データの一部を取得するために blob をオープンす ...
https://man.plustar.jp/php/function.ibase-blob-get.html - [similar]
署名済みのメッセージが、有効な署名を持っているかを調べる 4463
« sodium_crypto_sign_keypair sodium_crypto_sign_publickey_from_secretkey » PHP Manual Sodium 関数 ... 有効な署名を持っているかを調べる sodium_crypto_sign_open (PHP 7 >= 7.2.0, PHP 8) sodium_crypto_sign_open... な署名を持っているかを調べる 説明 sodium_crypto_sign_open ( string $signed_message , string $public_key ): s ... 連キーワード: 署名 , メッセージ , sodium , crypto , open , string , signed , public , key , from ...
https://man.plustar.jp/php/function.sodium-crypto-sign-open.html - [similar]
fd で指定したファイル記述子を閉じる 4420
« ダイレクト IO 関数 dio_fcntl » PHP Manual ダイレクト IO 関数 fd で指定したファイル記述子を閉じ ... は、ファイル記述子 fd を閉じます。 パラメータ fd dio_open() が返すファイル記述子。 戻り値 値を返しません。 例 ... 1 開いているファイル記述子を閉じる <?php $fd = dio_open ( '/dev/ttyS0' , O_RDWR ); dio_close ( $fd ); ?> 参 ... 考 dio_open() - C ライブラリの入出力ストリーム関数が許すよりも ... らファイルを作成する) 関連キーワード: 指定 , 関数 , open , fcntl , resource , パラメータ , 参考 , ライブラリ ...
https://man.plustar.jp/php/function.dio-close.html - [similar]
MQSeries MQGET 4420
« mqseries_disc mqseries_inq » PHP Manual mqseries 関数 MQSeries MQGET mqseries_get (PECL mqseri ... trieves a message from a local queue that has been opened using the mqseries_open() (MQOPEN) call パラメー ... 返しません。 例 例1 mqseries_get() example <?php // open connection to the queue manager mqseries_conn ( 'W ... ference to the connection to the queue manager. // open the connection to the testq queue mqseries_open ( ... QCONN mqseries_connx() - MQSeries MQCONNX mqseries_open() - MQSeries MQOPEN mqseries_put() - MQSeries MQPU ...
https://man.plustar.jp/php/function.mqseries-get.html - [similar]
MQSeries MQPUT1 4420
« mqseries_open mqseries_put » PHP Manual mqseries 関数 MQSeries MQPUT1 mqseries_put1 (PECL mqse ... puts one message on a queue. The queue need not be open. You can use both the mqseries_put() and mqseries_ ... e message on a queue. This call encapsulates the MQOPEN, MQPUT, and MQCLOSE calls into a single call, mini ... QCONN mqseries_connx() - MQSeries MQCONNX mqseries_open() - MQSeries MQOPEN mqseries_get() - MQSeries MQGE ... MQSeries , MQPUT , put , queue , resource , call , open , which , calls ...
https://man.plustar.jp/php/function.mqseries-put1.html - [similar]
DateTimeZone::__construct のエイリアス 4420
« timezone_offset_get timezone_transitions_get » PHP Manual 日付・時刻 関数 DateTimeZone::__cons ... truct のエイリアス timezone_open (PHP 5 >= 5.2.0, PHP 7, PHP 8) timezone_open — Dat ... ワード: DateTimeZone , construct , timezone , 関数 , open , offset , transitions , 日付 , 時刻 , ...
https://man.plustar.jp/php/function.timezone-open.html - [similar]
セッションを開始する 4420
« SessionHandlerInterface::gc SessionHandlerInterface::read » PHP Manual SessionHandlerInterface ... セッションを開始する SessionHandlerInterface::open (PHP 5 >= 5.4.0, PHP 7, PHP 8) SessionHandlerInter ... face::open — セッションを開始する 説明 public SessionHandlerI ... nterface::open ( string $path , string $name ): bool 既存のセッシ ... ード: セッション , 開始 , SessionHandlerInterface , open , 取得 , string , path , 設定 , 参考 , 注意 ...
https://man.plustar.jp/php/sessionhandlerinterface.open.html - [similar]
コア php.ini ディレクティブに関する説明 4384
« php.ini のセクション一覧 拡張モジュールの一覧/分類 » PHP Manual php.ini ディレクティブ コア ph ... 定オプション 名前 デフォルト 変更可能 変更履歴 short_open_tag "1" PHP_INI_PERDIR precision "14" PHP_INI_ALL ... ディレクティブに関する 簡単な説明を示します。 short_open_tag bool PHP タグの短縮型 ( <? ?> ) を使用 可能にす ... た。 realpath_cache_ttl "120" PHP_INI_SYSTEM 注意 : open_basedir を使用すると、 realpath キャッシュが disab ... 履歴 include_path ".;/path/to/php/pear" PHP_INI_ALL open_basedir NULL PHP_INI_ALL doc_root NULL PHP_INI_SYS ...
https://man.plustar.jp/php/ini.core.html - [similar]
4384
« 定義済み定数 ZipArchive » PHP Manual Zip 例 例 例1 Zip アーカイブの作成 <?php $zip = new ZipAr ... ive (); $filename = "./test112.zip" ; if ( $zip -> open ( $filename , ZipArchive :: CREATE )!== TRUE ) { e ... xit( "cannot open < $filename >\n" ); } $zip -> addFromString ( "tes ... および一覧表示 <?php $za = new ZipArchive (); $za -> open ( 'test_with_comment.zip' ); print_r ( $za ); var_ ... Files . "\n" ; ?> 例3 Zip ストリームラッパーによる OpenOffice メタ情報の読み込み <?php $reader = new XMLRe ...
https://man.plustar.jp/php/zip.examples.html - [similar]
Gets the number of records in a database 4348
« dbase_numfields dbase_open » PHP Manual dBase 関数 Gets the number of records in a database db ... database The database resource, returned by dbase_open() or dbase_create() . 戻り値 The number of records ... ping over all the records of the database <?php // open in read-only mode $db = dbase_open ( '/tmp/test.db ...
https://man.plustar.jp/php/function.dbase-numrecords.html - [similar]
PREV 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 NEXT