此函數numtoalpha如何輸出大於9的值的字母等效值? 結果,這樣的事情:10爲A,11爲B等....如何將數字轉換爲PHP中的字母?
PHP.net甚至沒有該功能,或者我沒有看正確的地方,但我確定它說功能。
<?php
$number = $_REQUEST["number"];
/*Create a condition that is true here to get us started*/
if ($number <=9)
{
echo $number;
}
elseif ($number >9 && $number <=35)
{
echo $number;
function numtoalpha($number)
{
echo $number;
}
echo"<br/>Print all the numbers from 10 to 35, with alphabetic equivalents:A for10,etc";
?>
不知道有關base_convert,感謝很酷的功能。 – Newb 2009-10-22 03:47:24