php筆記之:php函數range() round()和list()的使用說明

來源:互聯網
上載者:User

一>>

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

array range(int low,int high[,int step])

典型用法如下

例子:建立1-6的6個數位數組(骰子)

$die = range(0,6);

建立0-30所有雙數的數組

$even = (0,20,2);//步長為2

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

$words = range('A','Z');

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

二>>

round()函數

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

這個函數的作用是

取浮點數的精度

float round(float var[,int preisin})

典型用法

例: $pi = 3.141592653;

round($pi,4);

echo $pi;

將輸出 3.1415

三>>

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 special.\n";

// Listing some of them
list($drink, , $power) = $info;
echo "$drink has $power.\n";

// Or let's skip to only the third one
list( , , $power) = $info;
echo "I need $power!\n";

?>

上例摘自PHP手冊 可以用list()配合正則來切割字串存入變數表 典型用法 list($name,$occupation,$color) = exolode("|",$line);
相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.