検索

phrase: max: clip:
target: order:
Results of 101 - 110 of about 1231 for function (0.012 sec.)
シャットダウン時に実行する関数を登録する 3704
« get_defined_functions register_tick_function » PHP Manual 関数処理 関数 シャットダウン時に実行 ... する関数を登録する register_shutdown_function (PHP 4, PHP 5, PHP 7, PHP 8) register_shutdown_fun ... ン時に実行する関数を登録する 説明 register_shutdown_function ( callable $callback , mixed ...$args ): ? bool ス ... するコールバック関数を登録します。 register_shutdown_function() は複数回コールする ことが可能で、登録された順に関 ... 数をキューの最後に追加するために、 register_shutdown_function() そのものをコールしても構いません。 パラメータ ca ...
https://man.plustar.jp/php/function.register-shutdown-function.html - [similar]
クラスの抽象化 3704
« static キーワード オブジェクト インターフェイス » PHP Manual クラスとオブジェクト クラスの抽象 ... スにこのメソッドの定義を強制する abstract protected function getValue (); abstract protected function prefixVal ... ue ( $prefix ); // Common method public function printOut () { print $this -> getValue () . "\n" ; ... s ConcreteClass1 extends AbstractClass { protected function getValue () { return "ConcreteClass1" ; } public f ... lass ConcreteClass2 extends AbstractClass { public function getValue () { return "ConcreteClass2" ; } public f ...
https://man.plustar.jp/php/language.oop5.abstract.html - [similar]
このクラスがイテレーション可能かを調べる 3704
« ReflectionClass::isInternal ReflectionClass::isIterateable » PHP Manual ReflectionClass このク ... p class IteratorClass implements Iterator { public function __construct () { } public function key () { } publ ... ic function current () { } function next () { } function valid ... () { } function rewind () { } } class DerivedClass extends Iterato ... rClass { } class NonIterator { } function dump_iterable ( $class ) { $reflection = new Refle ...
https://man.plustar.jp/php/reflectionclass.isiterable.html - [similar]
Calls callbacks for pending operations 3664
« ZooKeeper 関数 Zookeeper » PHP Manual ZooKeeper 関数 Calls callbacks for pending operations zo ... okeeper_dispatch (): void The zookeeper_dispatch() function calls the callbacks passwd by operations like Zook ... okeeper::exists() . 警告 Since version 0.4.0, this function must be called manually to achieve asynchronous op ... f your program. After PHP 7.1, you can ignore this function. This extension uses EG(vm_interrupt) to implement ... localhost:2181' ); $client -> get ( '/zookeeper' , function() { echo "Callback was called" . PHP_EOL ; }); whi ...
https://man.plustar.jp/php/function.zookeeper-dispatch.html - [similar]
可変関数 3664
« 戻り値 内部(ビルトイン)関数 » PHP Manual 関数 可変関数 可変関数 PHP は可変関数(variable function ... ー関数を使う必要があります。 例1 可変関数の例 <?php function foo () { echo "In foo()<br />\n" ; } function bar ... <br />\n" ; } // これは、echo のラッパー関数です。 function echoit ( $string ) { echo $string ; } $func = 'foo ... もできます。 例2 可変メソッドの例 <?php class Foo { function Variable () { $name = 'Bar' ; $this -> $name (); / ... / Bar() メソッドのコール } function Bar () { echo "This is Bar" ; } } $foo = new Foo ( ...
https://man.plustar.jp/php/functions.variable-functions.html - [similar]
Basic Gearman client and worker, submitting tasks 3664
« Basic Gearman client and worker, background GearmanClient » PHP Manual 例 Basic Gearman client ... $gmc -> error () . "\n" ; exit; } echo "DONE\n" ; function reverse_created ( $task ) { echo "CREATED: " . $ta ... sk -> jobHandle () . "\n" ; } function reverse_status ( $task ) { echo "STATUS: " . $task ... () . "/" . $task -> taskDenominator () . "\n" ; } function reverse_complete ( $task ) { echo "COMPLETE: " . $ ... jobHandle () . ", " . $task -> data () . "\n" ; } function reverse_fail ( $task ) { echo "FAILED: " . $task - ...
https://man.plustar.jp/php/gearman.examples-reverse-task.html - [similar]
Reduces the deque to a single value using a callback function 3647
« Ds\Deque::push Ds\Deque::remove » PHP Manual Deque Reduces the deque to a single value using a ... callback function Ds\Deque::reduce (PECL ds >= 1.0.0) Ds\Deque::redu ... duces the deque to a single value using a callback function 説明 public Ds\Deque::reduce ( callable $callback ... duces the deque to a single value using a callback function. パラメータ callback callback ( mixed $carry , mix ... ue = new \ Ds \ Deque ([ 1 , 2 , 3 ]); $callback = function( $carry , $value ) { return $carry * $value ; }; v ...
https://man.plustar.jp/php/ds-deque.reduce.html - [similar]
Reduces the sequence to a single value using a callback function 3647
« Ds\Sequence::push Ds\Sequence::remove » PHP Manual Sequence Reduces the sequence to a single v ... alue using a callback function Ds\Sequence::reduce (PECL ds >= 1.0.0) Ds\Sequence ... es the sequence to a single value using a callback function 説明 abstract public Ds\Sequence::reduce ( callabl ... es the sequence to a single value using a callback function. パラメータ callback callback ( mixed $carry , mix ... e = new \ Ds \ Vector ([ 1 , 2 , 3 ]); $callback = function( $carry , $value ) { return $carry * $value ; }; v ...
https://man.plustar.jp/php/ds-sequence.reduce.html - [similar]
Reduces the set to a single value using a callback function 3647
« Ds\Set::merge Ds\Set::remove » PHP Manual Set Reduces the set to a single value using a callba ... ck function Ds\Set::reduce (PECL ds >= 1.0.0) Ds\Set::reduce — ... Reduces the set to a single value using a callback function 説明 public Ds\Set::reduce ( callable $callback , ... Reduces the set to a single value using a callback function. パラメータ callback callback ( mixed $carry , mix ... $set = new \ Ds \ Set ([ 1 , 2 , 3 ]); $callback = function( $carry , $value ) { return $carry * $value ; }; v ...
https://man.plustar.jp/php/ds-set.reduce.html - [similar]
Reduces the vector to a single value using a callback function 3647
« Ds\Vector::push Ds\Vector::remove » PHP Manual Vector Reduces the vector to a single value usi ... ng a callback function Ds\Vector::reduce (PECL ds >= 1.0.0) Ds\Vector::re ... uces the vector to a single value using a callback function 説明 public Ds\Vector::reduce ( callable $callback ... uces the vector to a single value using a callback function. パラメータ callback callback ( mixed $carry , mix ... r = new \ Ds \ Vector ([ 1 , 2 , 3 ]); $callback = function( $carry , $value ) { return $carry * $value ; }; v ...
https://man.plustar.jp/php/ds-vector.reduce.html - [similar]
PREV 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 NEXT