這篇文章給大家介紹strnatcmp()函數(shù)怎么在php中使用,內(nèi)容非常詳細,感興趣的小伙伴們可以參考借鑒,希望對大家能有所幫助。
我們提供的服務有:網(wǎng)站制作、成都網(wǎng)站建設、微信公眾號開發(fā)、網(wǎng)站優(yōu)化、網(wǎng)站認證、北屯ssl等。為1000+企事業(yè)單位解決了網(wǎng)站和推廣的問題。提供周到的售前咨詢和貼心的售后服務,是有科學管理、有技術的北屯網(wǎng)站制作公司Definition and Usage
定義和用法
The strnatcmp() function compares two strings using a "natural" algorithm.
strnatcmp()函數(shù)的作用是:用自然運算法則比較字符串(大小寫敏感)。
In a natural algorithm, the number 2 is less than the number 10. In computer sorting, 10 is less than 2, because the first number in "10" is less than 2.
在“自然運算法則”中,2比10小。在計算機序列當中,10比2小,因為“10”中的第一個數(shù)字是“1”,它小于2。
This function returns:
這個函數(shù)將返回下列值:
?0 - if the two strings are equal
0 – 如果字符串相等
?<0 - if string1 is less than string2
<0 – 如果string1小于string2
?>0 - if string1 is greater than string2
>0 – 如果string1大于string2
Syntax
語法
復制代碼 代碼如下:
strnatcmp(string1,string2)
Parameter參數(shù) | Description描述 |
---|---|
string1 | Required. Specifies the first string to compare 必要參數(shù)。指定參與比較的第一個字符串對象 |
string2 | Required. Specifies the second string to compare 必要參數(shù)。指定參數(shù)比較的第二個字符串對象 |
Tips and Notes
注意點
Note: The strnatcmp() is case-sensitive.
注意:strnatcmp()函數(shù)是區(qū)分大小寫的。
--------------------------------------------------------------------------------
Example
案例
復制代碼 代碼如下:
<?phpecho strnatcmp("2Hello world!","10Hello world!");echo "<br />";echo strnatcmp("10Hello world!","2Hello world!");?>
The output of the code above will be:
上述代碼將輸出下面的結(jié)果:-1 1
關于strnatcmp()函數(shù)怎么在php中使用就分享到這里了,希望以上內(nèi)容可以對大家有一定的幫助,可以學到更多知識。如果覺得文章不錯,可以把它分享出去讓更多的人看到。
標題名稱:strnatcmp()函數(shù)怎么在php中使用-創(chuàng)新互聯(lián)
地址分享:http://jinyejixie.com/article28/dishcp.html
成都網(wǎng)站建設公司_創(chuàng)新互聯(lián),為您提供電子商務、App設計、定制開發(fā)、虛擬主機、動態(tài)網(wǎng)站、商城網(wǎng)站
聲明:本網(wǎng)站發(fā)布的內(nèi)容(圖片、視頻和文字)以用戶投稿、用戶轉(zhuǎn)載內(nèi)容為主,如果涉及侵權請盡快告知,我們將會在第一時間刪除。文章觀點不代表本網(wǎng)站立場,如需處理請聯(lián)系客服。電話:028-86922220;郵箱:631063699@qq.com。內(nèi)容未經(jīng)允許不得轉(zhuǎn)載,或轉(zhuǎn)載時需注明來源: 創(chuàng)新互聯(lián)
猜你還喜歡下面的內(nèi)容