Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
このJavaコードは、タイムスタンプをLong値に変換します。
Long.toString(new Timestamp(System.currentTimeMillis()).getTime(), 36)
その結果h0zgkwm7、エンコードされたタイムスタンプで値を取得しています。
h0zgkwm7
PHPでタイムスタンプにデコードするにはどうすればよいですか?
三十六進法でエンコードしたようです。
あなたはそれをそのように解読することができます...
$decNumber = base_convert($str, 36, 10);