Newsgroups: php.internals Path: news.php.net Xref: news.php.net php.internals:98044 Return-Path: Mailing-List: contact internals-help@lists.php.net; run by ezmlm Delivered-To: mailing list internals@lists.php.net Received: (qmail 5535 invoked from network); 30 Jan 2017 16:29:52 -0000 Received: from unknown (HELO lists.php.net) (127.0.0.1) by localhost with SMTP; 30 Jan 2017 16:29:52 -0000 X-Host-Fingerprint: 82.132.243.21 unknown Received: from [82.132.243.21] ([82.132.243.21:19139] helo=localhost.localdomain) by pb1.pair.com (ecelerity 2.1.1.9-wez r(12769M)) with ESMTP id F4/07-51557-FF96F885 for ; Mon, 30 Jan 2017 11:29:52 -0500 Message-ID: To: internals@lists.php.net References: Date: Mon, 30 Jan 2017 16:29:43 +0000 User-Agent: Mozilla/5.0 (Macintosh; Intel Mac OS X 10.12; rv:49.0) Gecko/20100101 Firefox/49.0 SeaMonkey/2.46 MIME-Version: 1.0 In-Reply-To: Content-Type: text/plain; charset=UTF-8; format=flowed Content-Transfer-Encoding: 8bit X-Posted-By: 82.132.243.21 Subject: Re: Reseeding rand()/mt_rand() From: ajf@ajf.me (Andrea Faulds) Hi Christoph, Christoph M. Becker wrote: > Just a quick idea: > > > class PNRG { > public function __construct($seed = null) {…} > public function get() {…} > } > I've long favoured an API along these lines. One size does not fit all, you need two APIs for (non-crytographic) random numbers: - automatically-seeded, non-reproducible numbers (a global function like rand()) - manually-seeded, reproducible number sequences (objects) Currently we mix these two, and it's a mess. The easy solution would be a random number-generating object like you propose, to cover the second use-case. We could also introduce a non-manually-seedable global PRNG also, if desired. Perhaps as a static method of that class. One thought: it'd be nice if you had two different methods, one that mutates in places, and one that doesn't, i.e.: $prng1 = new PRNG(SEED); [$randomNumber, $prng2] = $prng2->getWithNewPRNG(); v.s.: $prng = new PRNG(SEED); $randomNumber = $prng->get(); $randomNumber2 = $prng->get(); Thanks! -- Andrea Faulds https://ajf.me/