検索

phrase: max: clip:
target: order:
Results of 381 - 390 of about 2443 for Array (0.272 sec.)
Moving average with variable period 2599
« trader_mama trader_max » PHP Manual Trader 関数 Moving average with variable period trader_mav ... ng average with variable period 説明 trader_mavp ( array $real , array $periods , int $minPeriod = ? , int ... $maxPeriod = ? , int $mAType = ? ): array パラメータ real 実数値の配列。 periods 実数値の配列 ... ies of constants should be used. 戻り値 Returns an array with calculated data or false on failure. 関連キー ... ド: period , Moving , variable , average , trader , array , mavp , int , 配列 , from ...
https://man.plustar.jp/php/function.trader-mavp.html - [similar]
実行中のジェネレータのトレースを取得する 2599
« ReflectionGenerator::getThis ReflectionFiber » PHP Manual ReflectionGenerator 実行中のジェネレ ... ( int $options = DEBUG_BACKTRACE_PROVIDE_OBJECT ): array 現在実行中のジェネレータのトレースを取得します。 パ ... ); 上の例の出力は、 たとえば以下のようになります。 array(2) { [0]=> array(4) { ["file"]=> string(18) "examp ... > int(8) ["function"]=> string(3) "foo" ["args"]=> array(0) { } } [1]=> array(4) { ["file"]=> string(18) "e ... int(12) ["function"]=> string(3) "bar" ["args"]=> array(0) { } } } 参考 ReflectionGenerator::getFunction() ...
https://man.plustar.jp/php/reflectiongenerator.gettrace.html - [similar]
ArrayObject クラス 2586
« その他のクラスおよびインターフェイス ArrayObject::append » PHP Manual その他のクラスおよびイン ... ターフェイス ArrayObject クラス ArrayObject クラス (PHP 5, PHP 7, PHP ... ジェクトを配列として動作させます。 クラス概要 class ArrayObject implements IteratorAggregate , ArrayAccess , ... /* 定数 */ const int STD_PROP_LIST = 1 ; const int ARRAY_AS_PROPS = 2 ; /* メソッド */ public __construct ( ... array | object $array = [] , int $flags = 0 , string $it ...
https://man.plustar.jp/php/class.arrayobject.html - [similar]
Associates all key-value pairs of a traversable object or array 2586
« Ds\Map::put Ds\Map::reduce » PHP Manual Map Associates all key-value pairs of a traversable ob ... ject or array Ds\Map::putAll (PECL ds >= 1.0.2) Ds\Map::putAll — ... tes all key-value pairs of a traversable object or array 説明 public Ds\Map::putAll ( mixed $pairs ): void ... tes all key-value pairs of a traversable object or array . 注意 : Keys of type object are supported. If an ... ered equal. パラメータ pairs traversable object or array . 戻り値 値を返しません。 例 例1 Ds\Map::putAll() ...
https://man.plustar.jp/php/ds-map.putall.html - [similar]
配列内の現在の要素を返す 2586
« count each » PHP Manual 配列 関数 配列内の現在の要素を返す current (PHP 4, PHP 5, PHP 7, PHP 8 ... current — 配列内の現在の要素を返す 説明 current ( array | object $array ): mixed 各配列は、"カレント"の要素 ... た最初の要素を指すように初期化されます。 パラメータ array 配列。 戻り値 current() 関数は、 単に内部ポインタが ... に対して最初に get_mangled_object_vars() を使うか、 ArrayIterator を使って下さい。 例 例1 current() と類似関 ... 数の使用例 <?php $transport = array( 'foot' , 'bike' , 'car' , 'plane' ); $mode = curr ...
https://man.plustar.jp/php/function.current.html - [similar]
コマンドを実行し、入出力用にファイルポインタを開く 2586
« proc_nice proc_terminate » PHP Manual プログラム実行関数 コマンドを実行し、入出力用にファイルポ ... 、入出力用にファイルポインタを開く 説明 proc_open ( array | string $command , array $descriptor_spec , array ... &$pipes , ? string $cwd = null , ? array $env_vars = null , ? array $options = null ): reso ... HP 7.4.0 以降、 command にはコマンドの引数も含めた array を渡せるようになりました。 この場合、プロセスは直接 ... 数のエスケープを全て行います。 注意 : Windows では、 array で渡されるコマンドライン引数のエスケープは、 コマン ...
https://man.plustar.jp/php/function.proc-open.html - [similar]
Create new MongoDB Manager 2586
« MongoDB\Driver\Manager::addSubscriber MongoDB\Driver\Manager::createClientEncryption » PHP Man ... construct ( string $uri = "mongodb://127.0.0.1/" , array $uriOptions = array() , array $driverOptions = arr ... ons in the MongoDB manual. authMechanismProperties array Properties for the selected authentication mechani ... in the URI string, this option is expressed as an array of key/value pairs. The keys and values in this ar ... MongoDB\Driver\ReadPreference . readPreferenceTags array Corresponds to the read preference's tagSets param ...
https://man.plustar.jp/php/mongodb-driver-manager.construct.html - [similar]
正規表現によるマッチングを行う 2577
« preg_match_all preg_quote » PHP Manual PCRE 関数 正規表現によるマッチングを行う preg_match (PH ... 明 preg_match ( string $pattern , string $subject , array &$matches = null , int $flags = 0 , int $offset = ... _r ( $matches ); ?> 上の例の出力は以下となります。 Array ( [0] => Array ( [0] => foobarbaz [1] => 0 ) [1] = ... > Array ( [0] => foo [1] => 0 ) [2] => Array ( [0] => bar ... [1] => 3 ) [3] => Array ( [0] => baz [1] => 6 ) ) PREG_UNMATCHED_AS_NULL こ ...
https://man.plustar.jp/php/function.preg-match.html - [similar]
内部イテレータを取得する 2564
« AppendIterator::getArrayIterator AppendIterator::getIteratorIndex » PHP Manual AppendIterator ... 例1 AppendIterator::getInnerIterator() の例 <?php $array_a = new ArrayIterator (array( 'a' => 'aardwolf' , ... 'b' => 'bear' , 'c' => 'capybara' )); $array_b = new RegexIterator ( $array_a , '/^[ac]/' ); $i ... ator = new AppendIterator ; $iterator -> append ( $array_a ); $iterator -> append ( $array_b ); foreach ( $ ...
https://man.plustar.jp/php/appenditerator.getinneriterator.html - [similar]
タイムゾーンの位置情報を返す 2564
« DateTimeZone::__construct DateTimeZone::getName » PHP Manual DateTimeZone タイムゾーンの位置情 ... ジェクト指向型 public DateTimeZone::getLocation (): array | false 手続き型 timezone_location_get ( DateTimeZ ... one $object ): array | false タイムゾーンの位置情報 (国コード、緯度/経度 ... on_get ( $tz )); ?> 上の例の出力は以下となります。 Array ( [country_code] => CZ [latitude] => 50.08333 [lon ... gitude] => 14.43333 [comments] => ) Array ( [country_code] => CZ [latitude] => 50.08333 [lon ...
https://man.plustar.jp/php/datetimezone.getlocation.html - [similar]