検索

phrase: max: clip:
target: order:
Results of 231 - 240 of about 1231 for function (0.038 sec.)
Overload a VM opcode 3106
« uopz_implement uopz_redefine » PHP Manual Uopz 関数 Overload a VM opcode uopz_overload (PECL u ... erloads the specified opcode with the user defined function パラメータ opcode A valid opcode, see constants fo ... erload() example <?php uopz_overload ( ZEND_EXIT , function(){}); exit(); echo "Hello World" ; ?> 上の例の出力 ... Overload , a , overload , 関数 , callable , Uopz , function , example ...
https://man.plustar.jp/php/function.uopz-overload.html - [similar]
Define or return the exit code for the current running service 3106
« win32_send_custom_control win32_set_service_exit_mode » PHP Manual win32service 関数 Define or ... soft system error codes for more details 警告 This function work only in "cli" SAPI. On other SAPI this functi ... to version 1.0.0, if the SAPI is not "cli" , this function emits an E_ERROR level error. As of version 1.0.0, ... ce 関連キーワード: service , return , mode , not , function , Define , running , ServiceException , returned , ...
https://man.plustar.jp/php/function.win32-set-service-exit-code.html - [similar]
Swoole 関数 3106
« 定義済み定数 swoole_async_dns_lookup » PHP Manual Swoole Swoole 関数 Swoole 関数 目次 swoole_a ... ges to the log swoole_event_add — Add new callback functions of a socket into the EventLoop swoole_event_defer ... — Add callback function to the next event loop swoole_event_del — Remove a ... ll event callback functions of a socket swoole_event_exit — Exit the eventloo ... side swoole_event_set — Update the event callback functions of a socket swoole_event_wait — Start the event l ...
https://man.plustar.jp/php/ref.swoole-funcs.html - [similar]
declare 3089
« match return » PHP Manual 制御構造 declare declare (PHP 4, PHP 5, PHP 7, PHP 8) declare 文は、 ... せん。 tickごとに発生させるイベントは register_tick_function() を使用して指定します。詳細は以下の例を参照してく ... icks = 1 ); // tick イベントごとにコールされる関数 function tick_handler () { echo "tick_handler() called\n" ; ... } register_tick_function ( 'tick_handler' ); // tick イベント発生 $a = 1 ; ... int( $a ); // tick イベント発生 } ?> register_tick_function() および unregister_tick_function() も参照ください ...
https://man.plustar.jp/php/control-structures.declare.html - [similar]
メッセージを出力し、現在のスクリプトを終了する 3089
« eval get_browser » PHP Manual その他の関数 メッセージを出力し、現在のスクリプトを終了する exit ... デストラクタが実行される例 <?php class Foo { public function __destruct () { echo 'Destruct: ' . __METHOD__ . ' ... ()' . PHP_EOL ; } } function shutdown () { echo 'Shutdown: ' . __FUNCTION__ . ' ... . PHP_EOL ; } $foo = new Foo (); register_shutdown_function ( 'shutdown' ); exit(); echo 'これは出力されません ... 語構造は、 die() と等価です。 参考 register_shutdown_function() - シャットダウン時に実行する関数を登録する 関連キ ...
https://man.plustar.jp/php/function.exit.html - [similar]
ユーザー定義関数 3089
« 関数 関数の引数 » PHP Manual 関数 ユーザー定義関数 ユーザー定義関数 関数は次のような構文で定義 ... 。 例1 関数の使用法を説明するための擬似コード <?php function foo ( $arg_1 , $arg_2 , /* ..., */ $arg_n ) { echo ... r()はコールできます。 */ bar (); if ( $makefoo ) { function foo () { echo "I don't exist until program executi ... ールすることができます。 */ if ( $makefoo ) foo (); function bar () { echo "I exist immediately upon program st ... art.\n" ; } ?> 例3 関数の中の関数 <?php function foo () { function bar () { echo "I don't exist unt ...
https://man.plustar.jp/php/functions.user-defined.html - [similar]
Basic usage 3089
« 例 Basic Gearman client and worker, background » PHP Manual 例 Basic usage Basic usage 例1 Bas ... (localhost). $gmworker -> addServer (); # Register function "reverse" with the server. Change the worker funct ... or a faster worker with no output. $gmworker -> addFunction ( "reverse" , "reverse_fn" ); print "Waiting for j ... " . $gmworker -> returnCode () . "\n" ; break; } } function reverse_fn ( $job ) { echo "Received job: " . $job ... much simpler and less verbose version of the above function would be: function reverse_fn_fast ( $job ) { retu ...
https://man.plustar.jp/php/gearman.examples-reverse.html - [similar]
Description 3089
« Imagick::setPointSize Imagick::setRegistry » PHP Manual Imagick Description Imagick::setProgre ... he Imagick image. パラメータ callback The progress function to call. It should return true if image processing ... pan ): bool 警告 The values passed to the callback function are not consistent. In particular the span paramet ... tImagePath ())); $startTime = time (); $callback = function ( $offset , $span ) use ( $startTime , & $abortRea ... , processing , parameter , should , not , offset , function ...
https://man.plustar.jp/php/imagick.setprogressmonitor.html - [similar]
Provides an array or document to serialize as BSON 3089
« MongoDB\BSON\Serializable MongoDB\BSON\Unserializable » PHP Manual MongoDB\BSON\Serializable P ... ents MongoDB \ BSON \ Serializable { private $id ; function __construct () { $this -> id = new MongoDB \ BSON ... \ ObjectId ; } function bsonSerialize () { return [ '_id' => $this -> id , ... MyArray implements MongoDB \ BSON \ Serializable { function bsonSerialize () { return [ 1 , 2 , 3 ]; } } $bson ... ocument implements MongoDB \ BSON \ Serializable { function bsonSerialize () { return [ 'foo' => 'bar' ]; } } ...
https://man.plustar.jp/php/mongodb-bson-serializable.bsonserialize.html - [similar]
mysqlndプラグインの開発をはじめよう 3089
« mysqlnd のプラグインAPI OCI8 » PHP Manual MySQL Native Driver プラグインAPI mysqlndプラグインの ... す。 /* my_php_mysqlnd_plugin.c */ static PHP_MINIT_FUNCTION(mysqlnd_plugin) { /* globals, ini entries, resourc ... s proxy extends mysqlnd_plugin_connection { public function connect($host, ...) { .. } } mysqlnd_plugin_set_co ... ユーザースペースのオブジェクトメソッドは、 call_user_function() を使うか、 zend_call_method() を使って Zend Engi ... ( zval **object_pp, zend_class_entry *obj_ce, zend_function **fn_proxy, char *function_name, int function_name ...
https://man.plustar.jp/php/mysqlnd.plugin.developing.html - [similar]