検索

phrase: max: clip:
target: order:
Results of 71 - 80 of about 1938 for IF (0.022 sec.)
Cancels a statement 3565
« sqlsrv_begin_transaction sqlsrv_client_info » PHP Manual SQLSRV 関数 Cancels a statement sqlsr ... ed. After sqlsrv_cancel() has been called, the specified statement can be re-executed if it was created ... epare() . Calling sqlsrv_cancel() is not necessary if all the results associated with the statement have ... sqlsrv_connect ( $serverName , $connectionInfo ); if( $conn === false ) { die( print_r ( sqlsrv_errors ... able_1" ; $stmt = sqlsrv_prepare ( $conn , $sql ); if( $stmt === false ) { die( print_r ( sqlsrv_errors ...
https://man.plustar.jp/php/function.sqlsrv-cancel.html - [similar]
ストアドプロシージャ 3565
« プリペアドステートメント 複数のステートメント » PHP Manual クイックスタートガイド ストアドプロ ... rd" , "database" ); $mysqli -> query ( "DROP TABLE IF EXISTS test" ); $mysqli -> query ( "CREATE TABLE t ... est(id INT)" ); $mysqli -> query ( "DROP PROCEDURE IF EXISTS p" ); $mysqli -> query ( "CREATE PROCEDURE ... , "database" ); $mysqli -> query ( "DROP PROCEDURE IF EXISTS p" ); $mysqli -> query ( 'CREATE PROCEDURE ... rd" , "database" ); $mysqli -> query ( "DROP TABLE IF EXISTS test" ); $mysqli -> query ( "CREATE TABLE t ...
https://man.plustar.jp/php/mysqli.quickstart.stored-procedures.html - [similar]
Rar アーカイブをオープンする 3565
« RarArchive::isSolid RarArchive::setAllowBroken » PHP Manual RarArchive Rar アーカイブをオープン ... en ( 'encrypted_headers.rar' , 'samplepassword' ); if ( $rar_arch === FALSE ) die( "Failed opening file" ... ); $entries = $rar_arch -> getEntries (); if ( $entries === FALSE ) die( "Failed fetching entri ... echo "Found " . count ( $entries ) . " files.\n" ; if (empty( $entries )) die( "No valid entries found." ... ); $stream = reset ( $entries )-> getStream (); if ( $stream === FALSE ) die( "Failed opening first f ...
https://man.plustar.jp/php/rararchive.open.html - [similar]
Checks the existence of a node in zookeeper synchronously 3565
« Zookeeper::delete Zookeeper::get » PHP Manual Zookeeper Checks the existence of a node in zook ... ashes separating ancestors of the node. watcher_cb if nonzero, a watch will be set at the server to noti ... fy the client if the node changes. The watch will be set even if th ... not 戻り値 Returns the value of stat for the path if the given node exists, otherwise false. エラー / 例 ... th/to/node' ; $r = $zookeeper -> exists ( $path ); if ( $r ) echo 'EXISTS' ; else echo 'N/A or ERR' ; ?> ...
https://man.plustar.jp/php/zookeeper.exists.html - [similar]
Add Constant 3537
« Componere\Definition::__construct Componere\Definition::addProperty » PHP Manual Componere\Def ... ition Exceptions 警告 Shall throw RuntimeException if Definition was registered 警告 Shall throw Runtime ... Exception if name is already declared as a constant 警告 Shall ... throw RuntimeException if value is static 警告 Shall throw RuntimeException ...
https://man.plustar.jp/php/componere-definition.addconstant.html - [similar]
Determines if the deque contains given values 3537
« Ds\Deque::__construct Ds\Deque::copy » PHP Manual Deque Determines if the deque contains given ... (PECL ds >= 1.0.0) Ds\Deque::contains — Determines if the deque contains given values 説明 public Ds\Deq ... ue::contains ( mixed ...$values ): bool Determines if the deque contains all values. パラメータ values V ... alues to check. 戻り値 false if any of the provided values are not in the deque, t ...
https://man.plustar.jp/php/ds-deque.contains.html - [similar]
Returns a subset of the map defined by a starting index and length 3537
« Ds\Map::skip Ds\Map::sort » PHP Manual Map Returns a subset of the map defined by a starting i ... ラメータ index The index at which the range starts. If positive, the range will start at that index in th ... e map. If negative, the range will start that far from the e ... nd. length If a length is given and is positive, the resulting m ... ap will have up to that many pairs in it. If a length is given and is negative, the range will ...
https://man.plustar.jp/php/ds-map.slice.html - [similar]
Determines if the sequence contains given values 3537
« Ds\Sequence::capacity Ds\Sequence::filter » PHP Manual Sequence Determines if the sequence con ... CL ds >= 1.0.0) Ds\Sequence::contains — Determines if the sequence contains given values 説明 abstract p ... ce::contains ( mixed ...$values ): bool Determines if the sequence contains all values. パラメータ value ... s Values to check. 戻り値 false if any of the provided values are not in the sequence ...
https://man.plustar.jp/php/ds-sequence.contains.html - [similar]
Determines if the vector contains given values 3537
« Ds\Vector::__construct Ds\Vector::copy » PHP Manual Vector Determines if the vector contains g ... PECL ds >= 1.0.0) Ds\Vector::contains — Determines if the vector contains given values 説明 public Ds\Ve ... or::contains ( mixed ...$values ): bool Determines if the vector contains all values. パラメータ values ... Values to check. 戻り値 false if any of the provided values are not in the vector, ...
https://man.plustar.jp/php/ds-vector.contains.html - [similar]
配列に値があるかチェックする 3537
« extract key_exists » PHP Manual 配列 関数 配列に値があるかチェックする in_array (PHP 4, PHP 5, ... hp $os = array( "Mac" , "NT" , "Irix" , "Linux" ); if ( in_array ( "Irix" , $os )) { echo "Got Irix" ; } ... if ( in_array ( "mac" , $os )) { echo "Got mac" ; } ? ... y() の例 <?php $a = array( '1.10' , 12.4 , 1.13 ); if ( in_array ( '12.4' , $a , true )) { echo "'12.4' ... found with strict check\n" ; } if ( in_array ( 1.13 , $a , true )) { echo "1.13 foun ...
https://man.plustar.jp/php/function.in-array.html - [similar]