ord函式-php

林堯彬發表於2016-03-09

摘錄自http://php.net/manual/zh/function.ord.php

 

(PHP 4, PHP 5, PHP 7)

ord — 返回字元的 ASCII 碼值

說明

int ord ( string $string )

返回字串 string 第一個字元的 ASCII 碼值。

該函式是 chr() 的互補函式。

引數

 

string

一個字元。

返回值

返回整型的 ASCII 碼值。

範例

 

Example #1 ord() 範例

<?php
$str = "\n";
if (ord($str) == 10) {
    echo "The first character of \$str is a line feed.\n";
}
?>
 
 
 
------------------------------------------
在匯出excle時碰到,獲取行的ASCII碼值,例如行A。

轉載於:https://www.cnblogs.com/yangcclg/p/5256850.html

相關文章