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.
2 の累乗では、次のようになります。
2^n = 16
nどうすればphp内で見つけることができますか?
n
ありがとう
log()基本引数を取ります。
log()
log(16, 2)です4。
log(16, 2)
4
<?php $x = 1024; $num = 2; $y = log($x, $num); echo $y; ?>
y=10を与える