Skip to content

Instantly share code, notes, and snippets.

View zhengfan2014's full-sized avatar
🎯
专注

zhengfan2014

🎯
专注
View GitHub Profile
@zhengfan2014
zhengfan2014 / hexconvert.php
Last active August 10, 2021 08:01
进制转换,二进制与十进制互转,php版本
// eg: Twelve(29) => [1,1,1,0,1]
function Twelve($num)
{
$num = (int)$num;
$result = [];
if ($num == 2) {
$result = [0, 1];
} else {
while ($num>2) {
$result[]=$num%2;