検索

phrase: max: clip:
target: order:
Results of 1 - 10 of about 167 for Try (0.004 sec.)
例外(exceptions) 12517
« PHP 7 でのエラー 例外を拡張する » PHP Manual 言語リファレンス 例外(exceptions) 例外(exceptions ... され) ます。発生した例外を 捕捉するには、コードを try ブロックで囲みます。 各 try ブロックには、対応する ... ブロックを使用することができます。 通常の実行時 ( try ブロック内で例外が投げられなかった 場合) は、 catc ... 文の間には注意すべき相互作用があります。 return 文が try や catch ブロックの内部に存在した場合でも、 finall ... 定できます。 finally ブロックの中に書いたコードは、 try および catch ブロックの後で常に実行されます。 例外 ...
https://man.plustar.jp/php/language.exceptions.html - [similar]
Try to acquire the lock and return straight away even the lock is not available. 11259
« Swoole\Lock::trylock_read Swoole\Lock::unlock » PHP Manual Swoole\Lock Try to acquire the lock ... away even the lock is not available. Swoole\Lock::trylock (PECL swoole >= 1.9.0) Swoole\Lock::trylock — ... he lock is not available. 説明 public Swoole\Lock::trylock (): void パラメータ この関数にはパラメータはあ ... りません。 戻り値 関連キーワード: Swoole , Lock , trylock , lock , Try , acquire , return , even , not , ...
https://man.plustar.jp/php/swoole-lock.trylock.html - [similar]
Try to acquire the lock. It will block if the lock is not available. 11145
« Swoole\Lock::lock_read Swoole\Lock::trylock_read » PHP Manual Swoole\Lock Try to acquire the l ... k::lock (PECL swoole >= 1.9.0) Swoole\Lock::lock — Try to acquire the lock. It will block if the lock is ... 戻り値 関連キーワード: Swoole , Lock , lock , read , Try , acquire , block , not , able , パラメータ ...
https://man.plustar.jp/php/swoole-lock.lock.html - [similar]
Try to lock a read-write lock for reading and return straight away even the lock... 11032
« Swoole\Lock::lock Swoole\Lock::trylock » PHP Manual Swoole\Lock Try to lock a read-write lock ... away even the lock is not available. Swoole\Lock::trylock_read (PECL swoole >= 1.9.0) Swoole\Lock::trylo ... ck_read — Try to lock a read-write lock for reading and return s ... he lock is not available. 説明 public Swoole\Lock::trylock_read (): void パラメータ この関数にはパラメータ ... 戻り値 関連キーワード: Swoole , Lock , lock , read , trylock , Try , eading , return , even , not ...
https://man.plustar.jp/php/swoole-lock.trylock-read.html - [similar]
The Swoole\Lock class 10352
« Swoole\Http\Server::start Swoole\Lock::__construct » PHP Manual Swoole The Swoole\Lock class T ... lic lock_read (): void public lock (): void public trylock_read (): void public trylock (): void public u ... a read-write lock for reading. Swoole\Lock::lock — Try to acquire the lock. It will block if the lock is ... not available. Swoole\Lock::trylock_read — Try to lock a read-write lock for readi ... away even the lock is not available. Swoole\Lock::trylock — Try to acquire the lock and return straight ...
https://man.plustar.jp/php/class.swoole-lock.html - [similar]
基本的な VarnishAdmin の使用法 8401
« 例 基本的な VarnishStat の使用法 » PHP Manual 例 基本的な VarnishAdmin の使用法 基本的な Varni ... EOUT => 300 , ); $va = new VarnishAdmin ( $args ); try { if(! $va -> connect ()) { throw new VarnishExcep ... tion $e ) { echo $e -> getMessage (); exit( 3 ); } try { if(! $va -> auth ()) { throw new VarnishExceptio ... tion $e ) { echo $e -> getMessage (); exit( 3 ); } try { $status = $va -> ban ( 'req.url ~ "^/$"' ); if ( ...
https://man.plustar.jp/php/varnish.example.admin.html - [similar]
トランザクションを開始する 7483
« mysqli::autocommit mysqli::change_user » PHP Manual mysqli トランザクションを開始する mysqli:: ... rt transaction */ $mysqli -> begin_transaction (); try { /* Insert some values */ $mysqli -> query ( "INS ... age(Code, Speakers) VALUES ('DE', 42000123)" ); /* Try to insert invalid values */ $language_code = 'FR' ... ansaction */ mysqli_begin_transaction ( $mysqli ); try { /* Insert some values */ mysqli_query ( $mysqli ... age(Code, Speakers) VALUES ('DE', 42000123)" ); /* Try to insert invalid values */ $language_code = 'FR' ...
https://man.plustar.jp/php/mysqli.begin-transaction.html - [similar]
例外を拡張する 7370
« 例外(exceptions) ファイバー » PHP Manual 例外(exceptions) 例外を拡張する 例外を拡張する 組み込 ... される $this -> var = $avalue ; break; } } } // 例1 try { $o = new TestException ( TestException :: THROW_ ... 続する var_dump ( $o ); // Null echo "\n\n" ; // 例2 try { $o = new TestException ( TestException :: THROW_ ... 続する var_dump ( $o ); // Null echo "\n\n" ; // 例3 try { $o = new TestException ( TestException :: THROW_ ... 続する var_dump ( $o ); // Null echo "\n\n" ; // 例4 try { $o = new TestException (); } catch ( Exception $ ...
https://man.plustar.jp/php/language.exceptions.extending.html - [similar]
Poll the items 7370
« ZMQPoll::getLastErrors ZMQPoll::remove » PHP Manual ZMQPoll Poll the items ZMQPoll::poll (PECL ... ) { /* Amount of events retrieved */ $events = 0 ; try { /* Poll until there is something to do */ $event ... and recv messages */ foreach ( $readable as $r ) { try { echo "Received message: " . $r -> recv () . "\n" ... end back messages */ foreach ( $writable as $w ) { try { $w -> send ( "Got it!" ); } catch ( ZMQException ...
https://man.plustar.jp/php/zmqpoll.poll.html - [similar]
データベース更新の自動コミットをオンまたはオフにする 7143
« mysqli::$affected_rows mysqli::begin_transaction » PHP Manual mysqli データベース更新の自動コミ ... w (); printf ( "Autocommit is %s\n" , $row [ 0 ]); try { /* Prepare insert statement */ $stmt = $mysqli - ... ); printf ( "Autocommit is %s\n" , $row [ 0 ]); /* Try to insert more values */ $language_code = 'PL' ; $ ... lt ); printf ( "Autocommit is %s\n" , $row [ 0 ]); try { /* Prepare insert statement */ $stmt = mysqli_pr ... ); printf ( "Autocommit is %s\n" , $row [ 0 ]); /* Try to insert more values */ $language_code = 'PL' ; $ ...
https://man.plustar.jp/php/mysqli.autocommit.html - [similar]
PREV 1 2 3 4 5 6 7 8 9 10 NEXT