検索

phrase: max: clip:
target: order:
Results of 21 - 30 of about 281 for My (0.003 sec.)
識別 6654
« Thread::getCurrentThreadId Thread::isJoined » PHP Manual Thread 識別 Thread::getThreadId (PECL ... します。 例 例1 このスレッドの ID を返す <?php class My extends Thread { public function run () { printf ( ... lu\n" , __CLASS__ , $this -> getThreadId ()); } } $my = new My (); $my -> start (); ?> 上の例の出力は以下 ... となります。 My is Thread #123456778899 関連キーワード: 識別 , Thr ...
https://man.plustar.jp/php/thread.getthreadid.html - [similar]
mysqlndプラグインの開発をはじめよう 6567
« mysqlnd のプラグインAPI OCI8 » PHP Manual MySQL Native Driver プラグインAPI mysqlndプラグインの ... 開発をはじめよう mysqlndプラグインの開発をはじめよう mysqlnd プラグイン ... を覚えておくことが重要です。 次のコードは、典型的な mysqlnd プラグインで使われる MINIT 関数の基本構造を示 ... します。 /* my_php_mysqlnd_plugin.c */ static PHP_MINIT_FUNCTION( ... ls, ini entries, resources, classes */ /* register mysqlnd plugin */ mysqlnd_plugin_id = mysqlnd_plugin_ ...
https://man.plustar.jp/php/mysqlnd.plugin.developing.html - [similar]
識別 6528
« Thread Thread::getCurrentThread » PHP Manual Thread 識別 Thread::getCreatorId (PECL pthreads > ... ったスレッドあるいはプロセスの ID を返す <?php class My extends Thread { public function run () { printf ( ... u\n" , __CLASS__ , $this -> getCreatorId ()); } } $my = new My (); $my -> start (); ?> 上の例の出力は以下 ... となります。 My created by Thread #123456778899 関連キーワード: 識 ...
https://man.plustar.jp/php/thread.getcreatorid.html - [similar]
同期処理 6441
« Thread::isStarted Thread::start » PHP Manual Thread 同期処理 Thread::join (PECL pthreads >= 2. ... を返します。 例 例1 スレッドとのジョイン <?php class My extends Thread { public function run () { /* ... * ... / } } $my = new My (); $my -> start (); /* ... */ var_dump ( ... $my -> join ()); /* ... */ ?> 上の例の出力は以下となり ...
https://man.plustar.jp/php/thread.join.html - [similar]
Creates a function at runtime 6219
« uopz_flags uopz_get_exit_status » PHP Manual Uopz 関数 Creates a function at runtime uopz_func ... 例1 uopz_function() example <?php uopz_function ( "my_strlen" , function( $arg ) { return strlen ( $arg ... ); }); echo my_strlen ( "Hello World" ); ?> 上の例の出力は以下とな ... 。 11 例2 uopz_function() class example <?php class My {} uopz_function ( My ::class, "strlen" , function ... return strlen ( $arg ); }, ZEND_ACC_STATIC ); echo My :: strlen ( "Hello World" ); ?> 上の例の出力は以下 ...
https://man.plustar.jp/php/function.uopz-function.html - [similar]
mysql サーバーとの接続をオープンする 5958
« mysqli::query mysqli::real_escape_string » PHP Manual mysqli mysql サーバーとの接続をオープンす ...mysqli::real_connect mysqli_real_connect (PHP 5, PHP ... 7, PHP 8) mysqli::real_connect -- mysqli_real_connect — mysql サ ... の接続をオープンする 説明 オブジェクト指向型 public mysqli::real_connect ( string $host = ? , string $use ... ring $socket = ? , int $flags = ? ): bool 手続き型 mysqli_real_connect ( mysqli $link , string $host = ? ...
https://man.plustar.jp/php/mysqli.real-connect.html - [similar]
実行する 5920
« Thread::join Worker » PHP Manual Thread 実行する Thread::start (PECL pthreads >= 2.0.0) Thread ... lse を返します。 例 例1 スレッドの開始 <?php class My extends Thread { public function run () { /** ... ... **/ } } $my = new My (); var_dump ( $my -> start ()); ?> 上の例 ...
https://man.plustar.jp/php/thread.start.html - [similar]
指定されたデータベース接続のユーザー名を変更する 5871
« mysqli::begin_transaction mysqli::character_set_name » PHP Manual mysqli 指定されたデータベース ... 接続のユーザー名を変更する mysqli::change_user mysqli_change_user (PHP 5, PHP 7, ... PHP 8) mysqli::change_user -- mysqli_change_user — 指定された ... ユーザー名を変更する 説明 オブジェクト指向型 public mysqli::change_user ( string $username , string $pass ... word , ? string $database ): bool 手続き型 mysqli_change_user ( mysqli $mysql , string $username ...
https://man.plustar.jp/php/mysqli.change-user.html - [similar]
ファイルに unified diff 形式のパッチを適用する 5833
« xdiff_file_patch_binary xdiff_file_rabdiff » PHP Manual xdiff 関数 ファイルに unified diff 形式 ... パッチをファイルに適用します。 <?php $old_version = 'my_script-1.0.php' ; $patch = 'my_script.patch' ; $er ... rors = xdiff_file_patch ( $old_version , $patch , 'my_script-1.1.php' ); if ( is_string ( $errors )) { e ... 、パッチを逆方向に適用します。 <?php $new_version = 'my_script-1.1.php' ; $patch = 'my_script.patch' ; $er ... rors = xdiff_file_patch ( $new_version , $patch , 'my_script-1.0.php' , XDIFF_PATCH_REVERSE ); if ( is_s ...
https://man.plustar.jp/php/function.xdiff-file-patch.html - [similar]
Phar アーカイブオブジェクトを作成する 5833
« Phar::compressFiles Phar::convertToData » PHP Manual Phar Phar アーカイブオブジェクトを作成する ... truct() の例 <?php try { $p = new Phar ( '/path/to/my.phar' , FilesystemIterator :: CURRENT_AS_FILEINFO ... | FilesystemIterator :: KEY_AS_FILENAME , 'my.phar' ); } catch ( UnexpectedValueException $e ) { ... die( 'my.phar をオープンできません' ); } catch ( BadMethodC ... これは動作します echo file_get_contents ( 'phar://my.phar/example.txt' ); // これも動作します echo file ...
https://man.plustar.jp/php/phar.construct.html - [similar]
PREV 1 2 3 4 5 6 7 8 9 10 11 12 NEXT