PHP(一) 常用函式 語言分類

2021-08-22 13:47:07 字數 822 閱讀 4796

require('x.php')  // 在當前位置包含指定檔案中的內容

@ // 放在一行的開頭,用於壓制此行的警告訊息

die() // 終止頁面的執行,輸出乙個錯誤訊息

mysqli_insert_id($conn) // 返回剛剛執行的insert語句產生的自增編號

mysqli_affected_rows($conn)  // 返回剛剛執行的dml語句影響的行數

mysqli_fetch_row($result)  // 從結果集中抓取一行(索引陣列)

mysqli_fetch_assoc($result)  // 從結果集中抓取一行(關聯陣列)

mysqli_fetch_all($result, mysqli_assoc) // 從結果集中抓取所有記錄行

(1)ddl: data define language,資料定義語言——定義列

drop  create  alter  truncate

(2)dml: data manipulate language,資料操作語言——操作行

insert  delete  update            

mysqli_query()的返回值:失敗:false  成功:true

(3)dql: data query language,資料查詢語言

select

mysqli_query()的返回值:失敗:false  成功:查詢結果集描述物件

(4)dcl: data control language,資料控制語言——控制使用者許可權

grant  revoke

PHP 函式語法介紹一

複製 如下 function getadder x adder 程式設計客棧getadder 8 echo adder 2 prints 10 在這裡,getadder 函式建立乙個封閉使用引數 關鍵字 使用 勢力越來越變數上下文 ngktlf 它需要額外的引數 y和返回到呼叫。這種功能可以儲存,因...

Python 常用函式,語法

這裡記錄一些我用python深度學習的七七八八常用函式或者小技巧啥啥的吧 畢竟好記性不如爛筆頭 嗯 會再更噠 1.strip string1.strip string2 一句話來說就是去除字串string1裡面包含的字串行string2 str 00000003210runoob0123000000...

slq 不常用函式 語法

1 with as with as短語,可以稱作為子查詢部分 subquery factoring 可以定義乙個sql片斷,該sql片斷會被整個sql語句用到 例如 巢狀查詢 select from table1 where id in select id from table1 where nam...