熱點推薦:
您现在的位置: 電腦知識網 >> 編程 >> PHP編程 >> 正文

php函數range() round()和list()如何使用

2022-06-13   來源: PHP編程 

  一>>

  range()函數快速創建數組的簡單方法使用low到high范圍的整數值填充數組函數將返回一個包含次范圍內所有整數的數組形式如下

  array range(int lowint high[int step])

  典型用法如下

  例子:建立個數字的數組(骰子)

  $die = range();

  建立所有雙數的數組

  $even = ();//步長為

  這個函數不僅僅可以用作數字還可以用作字母

  如

  $words = range(AZ);

  將建立包含A到Z的的所有字母的數組此處可以用於生成驗證碼函數

  二>>

  round()函數

  這個函數是怕我記混淆了這個函數和上面的哪個range()是天壤之別

  這個函數的作用是

  取浮點數的精度

  float round(float var[int preisin})

  典型用法

  例: $pi = ;

  round($pi);

  echo $pi;

  將輸出

  三>>

  list()函數

  list()函數可以在一次操作中從一個數組內提取多個值同時為變量賦值形式如下

  void list(mixed)

  典型用法

復制代碼 代碼如下:
<?php

$info = array(coffee brown caffeine);

// Listing all the variables
list($drink $color $power) = $info;
echo "$drink is $color and $power makes it specialn";

// Listing some of them
list($drink $power) = $info;
echo "$drink has $powern";

// Or lets skip to only the third one
list( $power) = $info;
echo "I need $power!n";

?> 上例摘自PHP手冊 可以用list()配合正則來切割字符串存入變量表 典型用法   list($name$occupation$color) = exolode("|"$line); 

From:http://tw.wingwit.com/Article/program/PHP/201311/21187.html
    推薦文章
    Copyright © 2005-2022 電腦知識網 Computer Knowledge   All rights reserved.