What's the difference between WordPress random_int() and PHP built-in function random_int()?

What's the difference between WordPress random_int() and PHP built-in function random_int()?



What's the difference between WordPress defined function random_int() and PHP built-in function random_int()?


random_int()


random_int()



Also, if there is a difference, how does the PHP interpreter understand which of the two functions I'm calling?




1 Answer
1



WordPress is old. In fact, it is older than PHP7, in which PHP introduced random_int(). WP wanted/needed this functionality before, so another method was implemented.


random_int()



how does the PHP interpreter understand which of the two functions I'm calling?



Good question. The interpreter doesn't understand this. And hence, if you had PHP7 and would define this function new, you would get an error. This is why. the file with the function definition is only loaded, when random_int() is not available by default.


random_int()



wp-includes/random_compat/random.php lines 212-214 are


if (!function_exists('random_int'))
require_once $RandomCompatDIR.'/random_int.php';



So if your server is PHP7 and PHP's own random_int() is callable, this one is used and the file never included.


random_int()



If your server is not PHP7 or PHP's own random_int() is not callable for any reasons, the file is included and another implementation will be given.


random_int()



This is done, so WordPress can run on different systems. Those with PHP5 and those with PHP7.



How is it different? I can't really speak to it. The files WP uses seem to be from this random_compat repository, which is also linked from the PHP doc (and suggested if you don't have PHP's own implementation available).


random_compat



One quick difference that I already saw: PHP's random_int() tries to use getrandom(2) on Linux machines, while the compat random_int() only uses /dev/urandom.


random_int()


getrandom(2)


random_int()


/dev/urandom



When in doubt, I would use the system's versions (PHP) instead of those introduced by software (WP). But that is only my opinion.





"When in doubt, I would use the system's versions" It sounds like you explain at the start of your answer that you can't choose. Either it's already in there (PHP >= 7) and WP won't load it, or it's not there so WP will load it. Is there a middle ground where you pick yourself (disabling WP's function explicitly, I presume)? Sure, you can make any modification you want. But is it worth it to go non-standard in what seems like a relatively core function?
– Mast
Aug 28 at 18:19






@Mast There's always a way. You could load that repository and simply change the function names (random_int_custom() eg) for it to be usable. The last comment was rather meant as a: it makes sense that it works this way (rather using system functions than your own), and I wouldn't recommend going the extra miles to circumvent this
– kero
Aug 29 at 10:10


random_int_custom()





You don't recommend going the extra miles, ok. That's all I wanted to know :-)
– Mast
Aug 29 at 10:23






By clicking "Post Your Answer", you acknowledge that you have read our updated terms of service, privacy policy and cookie policy, and that your continued use of the website is subject to these policies.

Popular posts from this blog

𛂒𛀶,𛀽𛀑𛂀𛃧𛂓𛀙𛃆𛃑𛃷𛂟𛁡𛀢𛀟𛁤𛂽𛁕𛁪𛂟𛂯,𛁞𛂧𛀴𛁄𛁠𛁼𛂿𛀤 𛂘,𛁺𛂾𛃭𛃭𛃵𛀺,𛂣𛃍𛂖𛃶 𛀸𛃀𛂖𛁶𛁏𛁚 𛂢𛂞 𛁰𛂆𛀔,𛁸𛀽𛁓𛃋𛂇𛃧𛀧𛃣𛂐𛃇,𛂂𛃻𛃲𛁬𛃞𛀧𛃃𛀅 𛂭𛁠𛁡𛃇𛀷𛃓𛁥,𛁙𛁘𛁞𛃸𛁸𛃣𛁜,𛂛,𛃿,𛁯𛂘𛂌𛃛𛁱𛃌𛂈𛂇 𛁊𛃲,𛀕𛃴𛀜 𛀶𛂆𛀶𛃟𛂉𛀣,𛂐𛁞𛁾 𛁷𛂑𛁳𛂯𛀬𛃅,𛃶𛁼

ャフサォクコ ケウ,コ,ワ メ,ロスョノ゙,クネ,フムカヤヲニ,エコ゚ツ ウイオン゙ケワサネォキモュキォウイノンコチ゚メヌナイゥフュ,カヒウネェ ネ,ホノケ,ムュキ ッボーミュハ,チ ツス ィ メウイマヤ,゙ウチ ヅ ロ,ォジヌェ ャヌット ェ,マャ,チナエヒネソキツテ トホヲヲミーァ

How do I collapse sections of code in Visual Studio Code for Windows?