PHP TZ setting length

前端 未结 4 1612
时光说笑
时光说笑 2020-12-20 20:55

I was wonder what is the maximum length of the timezone settings in PHP? I\'m storing the string in a database, and would like to keep the length as short as possible, but

4条回答
  •  天命终不由人
    2020-12-20 21:33

    Answer is 32. And here is the complete PHP code to find that:

     $maxlen)
            $maxlen = strlen($id);
    }
    
    echo "Max Length: $maxlen";
    
    /*
    Output:
    
    Max Length: 32
    
    */
    ?>
    

提交回复
热议问题