PHP 提供了一系列內建函數用於執行各種任務,包括:字串操作(strcmp、strtoupper、strtolower)陣列處理(array_push、array_pop、in_array)數學運算(round、abs、max)檔案處理( fopen、fread、fclose)
PHP 內建函數介紹
PHP 內建函數是一組在PHP 中預先定義的函數,它們提供了處理各種任務的便利方法,例如字串操作、陣列處理、數學運算和文件處理。本文將介紹一些常用的內建函數,並透過實戰案例來展示它們的用法。
字串函數
$result = strcmp("Hello", "World"); // 结果为 -1,"Hello" 小于 "World"
$string = "Hello World"; $stringToUpper = strtoupper($string); // 结果为 "HELLO WORLD"
$string = "HELLO WORLD"; $stringToLower = strtolower($string); // 结果为 "hello world"
陣列函數
$array = [1, 2, 3]; array_push($array, 4); // 结果为 [1, 2, 3, 4]
$array = [1, 2, 3, 4]; $lastElement = array_pop($array); // 结果为 4,数组变为 [1, 2, 3]
$array = [1, 2, 3, 4]; if (in_array(2, $array)) { echo "2 exists in the array"; // 输出 "2 exists in the array" }
數學函數
$number = 3.14159; $roundedNumber = round($number, 2); // 结果为 3.14
$number = -5; $absoluteNumber = abs($number); // 结果为 5
$numbers = [1, 3, 5, 7, 9]; $maxNumber = max($numbers); // 结果为 9
檔案函數
$handle = fopen("myfile.txt", "r"); // 读模式打开 myfile.txt
$data = fread($handle, 100); // 从 myfile.txt 中读取前 100 个字节
fclose($handle); // 关闭 myfile.txt 文件句柄
以上是PHP 內建函數介紹的詳細內容。更多資訊請關注PHP中文網其他相關文章!