- bool setcookie ( string $name [, string $value [, int $expire = 0 [, string $path [, string $domain [, bool $secure = false [, bool $httponly = false ]]]]]] )
- explain:This requires that you place calls to this function prior to any output, including and tags as well as any whitespace.
- exampleample: setcookie("TestCookie", $value, time() 3600);
-
-
- bool define ( string $name , mixed $value [, bool $case_insensitive = false ] ) //定義一個常數
- const CONSTANT = 'Hello World'; //實用關鍵字const定義一個常數,效果一樣
-
- example:define("CONSTANT", "Hello world.");
-
- bool defined ( string $name ) //檢查一個常數是否存在
-
-
- bool isset ( mixed $var [, mixed $... ] ) //檢查一個變數是否存在
-
- void unset ( mixed $var [, mixed $... ] ) //釋放一個變數
-
-
- bool function_exists ( string $function_name ) //檢查一個函數是否存在
-
-
- string get_class ([ object $obj ] ) //取得一個物件的所屬類別名稱
-
- array get_object_vars ( object $obj ) //傳回由物件屬性組成的關聯陣列
-
- bool file_exists ( string $filename ) // 檢查檔案或目錄是否存在
-
-
-
- 比較運算子
- $a == $b等於,如果類型轉換後$a 等於$b。
- $a === $b全等,如果 $a 等於 $b,且它們的型別也相同。
- $a != $b不等,如果型別轉換後 $a 不等於 $b。
- $a $b不等,如果型別轉換後 $a 不等於 $b。
- $a !== $b不全等,如果 $a 不等於 $b,或它們的型別不同。
- $a $a > $b大於,如果 $a 嚴格大於 $b。
- $a $a >= $b大於等於,如果 $a 大於或等於 $b。
-
-
- PHP 支援一個錯誤控制運算子:@。當將其放置在一個 PHP 表達式之前,該表達式可能產生的任何錯誤訊息都會被忽略。
-
- 執行運算子 , 反引號運算子在啟動了安全模式或關閉了 shell_exec() 時是無效的。
- $output = `ls -al`;
- echo "";
- ?>
-
- 字串運算子有兩個字串(string)運算子。第一個是連接運算子("."),它會傳回其左右參數連接後的字串。第二個是連接賦值運算子(".="),它將右邊參數附加到左邊的參數之後。
-
- 陣列運算子
-
- $a $b合併 $a 和 $b 的聯合。
- $a == $b相等 如果 $a 和 $b 有相同的鍵/值對則為 TRUE。
- $a === $b全等 如果 $a 和 $b 具有相同的鍵/值對且順序和類型都相同則為 TRUE。
- $a != $b不等 如果 $a 不等於 $b 則為 TRUE。
- $a $b不等 如果 $a 不等於 $b 則為 TRUE。
- $a !== $b不全等 如果 $a 不全等於 $b 則為 TRUE。
-
-
- 類型運算子instanceof 用來決定一個PHP 變數是否屬於某一類class 的實例:
- class MyClass{}
- class NotMyClass{}
- class MyClass{}
- class NotMyClass{}
- class MyClass{}
- class NotMyClass{}
- class MyClass{}
- class NotMyClass{}
- class MyClass{}
- class NotMyClass{}
- $a = new MyClass;
- var_dump($a instanceof MyClass);
- var_dump($a instanceof NotMyClass);
- ?>
- 以上程式會輸出:
- bool(true)
- bool(false)
-
-
- bool is_a ( object $object , string $class_name [, bool $allow_string = FALSE ] ) //如果物件屬於該類別或該類別是此物件的父類別則傳回TRUE
-
-
-
- foreach循環陣列或物件
- foreach (array_expression as $value)
- statement
- foreach (array_expression as $key => $value)
- statement
- require 和include幾乎完全一樣,除了處理失敗的方式不同之外。 require在出錯時產生 E_COMPILE_ERROR等級的錯誤。換句話說將導致腳本中止而 include只產生警告(E_WARNING),腳本會繼續運行。 include 'vars.php'; require_once 語句和 require語句完全相同,唯一差異是 PHP 會檢查該檔案是否已經被包含過,如果是則不會再包含。 goto: (相對於C語就是一個閹割品) goto運算子可以用來跳到程式中的另一個位置。此目標位置可以用目標名稱加上冒號來標記,而跳轉指令是 goto 之後接上目標位置的標記。
- PHP 中的 goto有一定限制,目標位置只能位於同一個檔案和作用域,也就是說無法跳出一個函數或類別方法,也無法跳入另一個函數。也無法跳入任何循環或 switch 結構中。
- 可以跳出迴圈或 switch,通常的用法是用 goto取代多層的 break。
- goto a;
- echo 'Foo';
- a:
- echo 'Bar';
- ?>
- 以上程式會輸出:
- Bar
複製程式碼
|
php
本網站聲明
本文內容由網友自願投稿,版權歸原作者所有。本站不承擔相應的法律責任。如發現涉嫌抄襲或侵權的內容,請聯絡admin@php.cn
作者最新文章
-
2024-10-22 09:46:29
-
2024-10-13 13:53:41
-
2024-10-12 12:15:51
-
2024-10-11 22:47:31
-
2024-10-11 19:36:51
-
2024-10-11 15:50:41
-
2024-10-11 15:07:41
-
2024-10-11 14:21:21
-
2024-10-11 12:59:11
-
2024-10-11 12:17:31