PHP 数组函数 extract() PHP 数组函数 end() PHP 数组函数 in_array() PHP 数组函数 extract() <?php $size = "large"; $input = array("color" => "blue", "size" => "medium", "shape" => "sphere"); extract($input, EXTR_PREFIX_SAME, "bbcx"); echo "$color, $size, $shape, $bbcx_size"; ?> PHP 数组函数 end() PHP 数组函数 in_array()