検索

phrase: max: clip:
target: order:
Results of 111 - 120 of about 176 for o (0.046 sec.)
mysqlndプラグインの開発をはじめよう 5036
« mysqlnd のプラグインAPI OCI8 » PHP Manual MySQL Native Driver プラグインAPI mysqlndプラグインの ... my_php_mysqlnd_plugin.c */ static PHP_MINIT_FUNCTION(mysqlnd_plugin) { /* globals, ini entries, resour ... */ mysqlnd_plugin_id = mysqlnd_plugin_register(); conn_m = mysqlnd_get_conn_methods(); memcpy(org_conn_ ... m, conn_m, sizeof(struct st_mysqlnd_conn_methods)); conn ... _m->query = MYSQLND_METHOD(mysqlnd_plugin_conn, query); conn_m->connect = MY ...
https://man.plustar.jp/php/mysqlnd.plugin.developing.html - [similar]
Swoole 関数 5036
« 定義済み定数 swoole_async_dns_lookup » PHP Manual Swoole Swoole 関数 Swoole 関数 目次 swoole_a ... sync_dns_lookup — Async and non-blocking hostname to IP lookup ... swoole_async_read — Read file stream asynchronously sw ... oole_async_readfile — Read a file asynchronously swoo ... le_async_set — Update the async I/O options swoole_async_write — Write data to a file ...
https://man.plustar.jp/php/ref.swoole-funcs.html - [similar]
はじめに 5036
« PCRE 正規表現構文 デリミタ » PHP Manual PCRE 正規表現構文 はじめに はじめに PCRE がサポートする ... り、実例が豊富に記載されているものもあります。特に、 O'Reilly 発刊 Jeffrey Friedl 著 "Mastering Regular E ... xpressions" (ISBN 1-56592-257) 〔日本語版:「詳説 正規表現」 ... 説されています。 以降の説明は、参考文書 (reference documentation) として 扱われることを想定しています。 ... ッチします。簡単な例をあげると、パターン The quick brown fox は、検索対象文字列内にある、このパターンと同 ...
https://man.plustar.jp/php/regexp.introduction.html - [similar]
指定された文字列が、読み手を混乱させうるかをチェックする 5036
« Spoofchecker Spoofchecker::__construct » PHP Manual Spoofchecker 指定された文字列が、読み手を混 ... 乱させうるかをチェックする Spoofchecker::areConfusable (PHP 5 >= 5.4.0, PHP 7, PH ... P 8, PECL intl >= 2.0.0) Spoofchecker::areConfusable — 指定された文字列が、読み ... 手を混乱させうるかをチェックする 説明 public Spoofchecker::areConfusable ( string $string1 , string ... $string2 , int &$errorCode = null ): bool ふたつの指定された文字列が、間 ...
https://man.plustar.jp/php/spoofchecker.areconfusable.html - [similar]
The EvIo class 4980
« EvIdle::createStopped EvIo::__construct » PHP Manual Ev The EvIo class The EvIo class (PECL ev ... >= 0.2.0) はじめに EvIo watchers check whether a file descriptor(or socket ... , or a stream castable to numeric file descriptor) is ... readable or writable in each iteration of the event loop, or, ... more precisely, when reading would not block the proc ...
https://man.plustar.jp/php/class.evio.html - [similar]
ウォッチャーのコールバック 4980
« ウォッチャー Periodic ウォッチャーの操作モード » PHP Manual Ev ウォッチャーのコールバック ウォ ... ンストラクタ ( EvWatcher の派生クラス。 EvCheck::__construct() や EvChild::__construct() など) に渡します ... ロトタイプにしたがわなければいけません。 callback ( object $watcher = NULL , int $revents = NULL ): void ... だ名前になっています。たとえば EvChild (あるいは EvLoop::child() ) は EV::CHILD 、 EvPrepare (あるいは E ... vLoop::prepare() ) は Ev::PREPARE 、 EvPeriodic (あるい ...
https://man.plustar.jp/php/ev.watcher-callbacks.html - [similar]
fd 上で whence から pos に移動する 4980
« dio_read dio_stat » PHP Manual ダイレクト IO 関数 fd 上で whence から pos に移動する dio_seek ... (PHP 4 >= 4.2.0, PHP 5 < 5.1.0) dio_seek — fd 上で whence から pos に移動する 説明 dio ... _seek ( resource $fd , int $pos , int $whence = SEEK_SET ): int ... 関数 dio_seek() は、指定されたファイル記述子の ファイル内の ... 位置を変更する際に使用されます。 パラメータ fd dio_open() が返すファイル記述子。 pos 新しい位置。 whe ...
https://man.plustar.jp/php/function.dio-seek.html - [similar]
ファイルを先読みしてページキャッシュに格納する 4980
« eio_read eio_readdir » PHP Manual Eio 関数 ファイルを先読みしてページキャッシュに格納する eio_ ... readahead (PECL eio >= 0.0.1dev) eio_readahead — ファイルを先読みしてペ ... ージキャッシュに格納する 説明 eio_readahead ( mixed $fd , int $offset , int $length ... , int $pri = EIO_PRI_DEFAULT , callable $callback = NULL , mixed $d ... ata = NULL ): resource eio_readahead() は、ファイルを先読みしてページ ...
https://man.plustar.jp/php/function.eio-readahead.html - [similar]
フォーマットされた文字列を返す 4980
« soundex sscanf » PHP Manual String 関数 フォーマットされた文字列を返す sprintf (PHP 4, PHP 5, ... ォーマットされた文字列を返す 説明 sprintf ( string $format , mixed ...$values ): string フォーマット文字列 ... format に基づき生成された文字列を返します。 パラメータ ... format 0個以上のディレクティブで構成されるフォーマット ... トタイプに従います: %[argnum$][flags][width][.precision]specifier . Argnum 何番目の引数を変換の対象にする ...
https://man.plustar.jp/php/function.sprintf.html - [similar]
文字列を配列に変換する 4980
« str_shuffle str_starts_with » PHP Manual String 関数 文字列を配列に変換する str_split (PHP 5, ... ます。 例 例1 str_split() の使用例 <?php $str = "Hello Friend" ; $arr1 = str_split ( $str ); $arr2 = str_ ... Array ( [0] => H [1] => e [2] => l [3] => l [4] => o [5] => [6] => F [7] => r [8] => i [9] => e [10] => ... n [11] => d ) Array ( [0] => Hel [1] => lo [2] => Fri [3] => end ) 注意 注意 : str_split() で ... 割する preg_split() - 正規表現で文字列を分割する explode() - 文字列を文字列により分割する count_chars() - ...
https://man.plustar.jp/php/function.str-split.html - [similar]
PREV 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 NEXT