• 2022-06-16
    When you pass an array to a function, ______ is passed to the array parameter in the function.
    A: a copy of the array
    B: a copy of the first element
    C: the starting address of the array
    D: the length of the array
  • C

    内容

    • 0

      下面的程序执行后array的值为() A: array=[1,2,3,4,5,6] B: array=[1,2,3,4,5,6,7,8,9,10] C: array=6 D: array=10

    • 1

      定义数组Array(5,1to5)后,不存在的数组元素是()。 A: Array(0,0) B: Array(1,0) C: Array(0,1) D: Array(5,5)

    • 2

      定义数组Array(1to5,5)后,下列哪一个数组元素不存在() A: Array(1,1) B: Array(1,0) C: Array(0,1) D: Array(5,5)

    • 3

      以下程序的运行结果是( )。<?php$array=array("Php","asP","jAva","html");if(in_array("php",$array)){echo "php in array";}else{echo "php not in array";}?> A: php in array B: php not in array C: true D: false

    • 4

      下面哪个函数,可以用来判断变量$array是否是一个数组? A: is_array($array) B: is_object($array) C: is_numeric($array) D: is_scalar($array)