PHP
 Computer >> コンピューター >  >> プログラミング >> PHP

PHPのarray_fill_keys()関数


array_fill_keys()関数は、キーを指定して配列に値を入力します。満たされた配列を返します。

構文

array_fill_keys(keys, values)

パラメータ

  • キー- キーとして使用される値の配列。

  • 値- 塗りつぶしに使用される値。

戻る

array_fill_keys()関数は、塗りつぶされた配列を返します。

<?php
   $arr = array('p', 'q', 'r');
   $res = array_fill_keys($arr, demo);
   print_r($res)
?>

出力

Array (
   [p] => demo
   [q] => demo
   [r] => demo
)

別の例を見てみましょう。

<?php
   $arr = array('a', 'b', 'c', 1, 2, 3, 'steve', 'tom', 4, 5);
   $res = array_fill_keys($arr, demo);
   print_r($res)
?>

出力

Array (
   [a] => demo
   [b] => demo
   [c] => demo
   [1] => demo
   [2] => demo
   [3] => demo
   [steve] => demo
   [tom] => demo
   [4] => demo
   [5] => demo
)

  1. PHP log()関数

    定義と使用法 ログ ()関数は、数値の自然対数を計算します。 対数は、対数の逆数です。 10 2の場合 =100、それはlog 10を意味します 100=2。自然対数はオイラー数eで計算されます ベースとして。 PHPでは、事前定義された定数 M_E 2.7182818284590452354であるeの値を与える たとえば、exp(4.60517018599)=100(e 4.60517018599 とも同じです) =100)。したがって、log e 100 =4.60517018599 PHPでは、 log e log()で表されます 関数 構文 log ( f

  2. PHPのget_parent_class()関数

    get_parent_class()は、オブジェクトまたはクラスの親クラス名を取得します。 構文 get_parent_class(object) パラメータ オブジェクト −テストされたオブジェクトまたはクラスの名前。 戻る get_parent_class()関数は、クラスの親クラスの名前を返します。 例 以下は例です- <?php class Demo {    function Demo() {    } } class Demo2 extends Demo {    function Demo2() {