検索

phrase: max: clip:
target: order:
Results of 1 - 10 of about 67 for increment (0.003 sec.)
項目の値を増やす 11765
« Memcache::getVersion Memcache::pconnect » PHP Manual Memcache 項目の値を増やす Memcache::increment ... ment (PECL memcache >= 0.2.0) Memcache::increment — 項目の値を増やす 説明 Memcache::increment ( stri ... ng $key , int $value = 1 ): int | false Memcache::increment() は、項目の値を value だけ増やします。 もし key に ... 場合は、その新しい値は value となります。 Memcache::increment() は、指定した項目が 存在しない場合に項目を作成する ... 注意 : 圧縮して格納されている項目に対して Memcache::increment() を使用しないでください。 なぜなら、それ以降の Me ...
https://man.plustar.jp/php/memcache.increment.html - [similar]
Return the ID generated for the last updated AUTO_INCREMENT column 11437
« cubrid_get cubrid_is_instance » PHP Manual CUBRID 関数 Return the ID generated for the last up ... dated AUTO_INCREMENT column cubrid_insert_id (PECL CUBRID >= 8.3.0) cub ... Return the ID generated for the last updated AUTO_INCREMENT column 説明 cubrid_insert_id ( resource $conn_iden ... ) function retrieves the ID generated for the AUTO_INCREMENT column which is updated by the previous INSERT que ... , or FALSE on failure. 注意 : CUBRID supports AUTO_INCREMENT for more than one columns in a table. In most case ...
https://man.plustar.jp/php/function.cubrid-insert-id.html - [similar]
数値アイテムの値を増やす 11124
« Memcached::getVersion Memcached::incrementByKey » PHP Manual Memcached 数値アイテムの値を増やす ... Memcached::increment (PECL memcached >= 0.1.0) Memcached::increment — 数 ... 値アイテムの値を増やす 説明 public Memcached::increment ( string $key , int $offset = 1 , int $initial_val ... ue = 0 , int $expiry = 0 ): int | false Memcached::increment() は、数値アイテムの値を offset で指定しただけ増や ... ーとなります。 アイテムが存在しない場合、 Memcached::increment() は値を initial_value に設定します。 パラメータ k ...
https://man.plustar.jp/php/memcached.increment.html - [similar]
Returns the increment component of this TimestampInterface 11068
« MongoDB\BSON\TimestampInterface MongoDB\BSON\TimestampInterface::getTimestamp » PHP Manual Mon ... goDB\BSON\TimestampInterface Returns the increment component of this TimestampInterface MongoDB\BSON\ ... TimestampInterface::getIncrement (mongodb >=1.3.0) MongoDB\BSON\TimestampInterface: ... :getIncrement — Returns the increment component of this Timestam ... bstract public MongoDB\BSON\TimestampInterface::getIncrement (): int パラメータ この関数にはパラメータはありませ ...
https://man.plustar.jp/php/mongodb-bson-timestampinterface.getincrement.html - [similar]
Returns the increment component of this Timestamp 10385
« MongoDB\BSON\Timestamp::__construct MongoDB\BSON\Timestamp::getTimestamp » PHP Manual MongoDB\ ... BSON\Timestamp Returns the increment component of this Timestamp MongoDB\BSON\Timestamp ... ::getIncrement (mongodb >=1.3.0) MongoDB\BSON\Timestamp::getIncre ... ment — Returns the increment component of this Timestamp 説明 final public Mong ... oDB\BSON\Timestamp::getIncrement (): int The increment component of a Timestamp is ...
https://man.plustar.jp/php/mongodb-bson-timestamp.getincrement.html - [similar]
直近のクエリの AUTO_INCREMENT カラムで生成した値を返す 10114
« mysqli::init mysqli::kill » PHP Manual mysqli 直近のクエリの AUTO_INCREMENT カラムで生成した値 ... nsert_id -- mysqli_insert_id — 直近のクエリの AUTO_INCREMENT カラムで生成した値を返す 説明 オブジェクト指向型 i ... qli_insert_id ( mysqli $mysql ): int | string AUTO_INCREMENT 属性を持つカラムがあるテーブル上での INSERT や UPD ... 、 mysqli_insert_id() が返す値も変更されます。 AUTO_INCREMENT の値を生成するために LAST_INSERT_ID(expr) を使った ... 場合、 生成された AUTO_INCREMENT の値ではなく、 最後の expr の値を返します。 直前の ...
https://man.plustar.jp/php/mysqli.insert-id.html - [similar]
Increment the value by $row_key and $column_key. 9218
« Swoole\Table::get Swoole\Table::key » PHP Manual Swoole\Table Increment the value by $row_key ... ::incr (PECL swoole >= 1.9.0) Swoole\Table::incr — Increment the value by $row_key and $column_key. 説明 public ... olumn incrby 戻り値 関連キーワード: key , column , Increment , row , Swoole , Table , the , incr , string , inc ...
https://man.plustar.jp/php/swoole-table.incr.html - [similar]
巨大な数をインクリメントする 8891
« sodium_hex2bin sodium_memcmp » PHP Manual Sodium 関数 巨大な数をインクリメントする sodium_increment ... ement (PHP 7 >= 7.2.0, PHP 8) sodium_increment — 巨大な数をインクリメントする 説明 sodium_increme ... り値 値を返しません。 関連キーワード: 数 , sodium , increment , string , hex , memcmp , Sodium , 関数 , リトル , ...
https://man.plustar.jp/php/function.sodium-increment.html - [similar]
Construct a new Timestamp 8678
« MongoDB\BSON\Timestamp MongoDB\BSON\Timestamp::getIncrement » PHP Manual MongoDB\BSON\Timestam ... public MongoDB\BSON\Timestamp::__construct ( int $increment , int $timestamp ) パラメータ increment ( int ) 32 ... -bit integer denoting the incrementing ordinal for operations within a given second. t ... なります。 object(MongoDB\BSON\Timestamp)#1 (2) { ["increment"]=> int(1234) ["timestamp"]=> int(5678) } 参考 » B ... p , BSON , Construct , new , int , a , construct , increment , timestamp , bit ...
https://man.plustar.jp/php/mongodb-bson-timestamp.construct.html - [similar]
最初の引数で指定したコールバック関数をコールする 8621
« call_user_func_array create_function » PHP Manual 関数処理 関数 最初の引数で指定したコールバッ ... の例と参照 <?php error_reporting ( E_ALL ); function increment (& $var ) { $var ++; } $a = 0 ; call_user_func ( ' ... このようにしてもかまいません call_user_func_array ( 'increment' , array(& $a )); echo $a . "\n" ; // 関数名を変数 ... として使ってもかまいません $increment = 'increment' ; $increment ( $a ); echo $a . "\n" ... の例の出力は以下となります。 Warning: Parameter 1 to increment() expected to be a reference, value given in … 0 1 ...
https://man.plustar.jp/php/function.call-user-func.html - [similar]
PREV 1 2 3 4 5 6 7 NEXT