输入banner图图片脚本导航/分类

把整数转为二进制

<无详细内容>
  1. function int2b($int=0){
  2. if($int>0){
  3. return int2b(floor($int/2)).$int%2;
  4. }
  5. }