商城二次開發學習筆記 20140701

2021-06-22 14:12:29 字數 1047 閱讀 5682

1.strtolower() 函式把字串轉換為小寫。

strtolower(string)
引數

描述string

必需。規定要轉換的字串。

<?php

echostrtolower("hello world!");

?>

輸出:

hello world!

2.substr() 函式返回字串的一部分。

substr(string,start,length)
引數

描述string

必需。規定要返回其中一部分的字串。

start

必需。規定在字串的何處開始。

length

可選。規定要返回的字串長度。預設是直到字串的結尾。

<?php

echosubstr("hello world!",6);

?>

輸出:

world!
<?php

echosubstr("hello world!",6,5);

?>

輸出:

world

3.strrpos()

函式查詢字串在另乙個字串中最後一次出現的位置。

如果成功,則返回位置,否則返回 false。

strrpos(string,find,start)
引數

描述string

必需。規定被搜尋的字串。

find

必需。規定要查詢的字元。

start

可選。規定開始搜尋的位置。

<?php

echostrrpos("hello world!","wo");

?>

輸出:

6

postek二次開發 POSTEK二次開發介面

例項簡介 例項截圖 核心 using system using system.collections.generic using system.componentmodel using system.data using system.drawing using system.text using ...

CAD二次開發 學習筆記(2)

cad二次開發 學習筆記 2 三點法畫圓的預備知識 點徑法和兩點法相對比較簡單,不作詳述 思路 兩個點向式方程 聯立求出圓心座標表示式 注意事項 上述表示式中,分母可能為0 如果圓的平面在xy平面,那麼z座標表示式的分母則為0,會導致錯誤 有兩種解決方案 等效的 方案一 在使用座標表示式之前對分母進...

phpcms二次開發學習

1 新建模組就是phpcms modules 目錄下面新建資料夾,資料夾名即為模組名。template 模組後台管理的模板檔案,通過 this admin tpl 方法呼叫 除此之外,經常還有install資料夾和uninstall資料夾。具體參照安裝原始碼包。3 模組的實現機制。控制器 即模組內的...