3v4l.org

run code in 300+ PHP versions simultaneously
<?php if (!function_exists('random_bytes')) { /** * PHP 5.2.0 - 5.6.x way to implement random_bytes() * * In order of preference: * 1. mcrypt_create_iv($bytes, MCRYPT_CREATE_IV) * 2. fread() /dev/arandom if available * 3. fread() /dev/urandom if available * 4. COM('CAPICOM.Utilities.1')->GetRandom() * 5. openssl_random_pseudo_bytes() */ if (function_exists('mcrypt_create_iv') && version_compare(PHP_VERSION, '5.3.7') >= 0) { /** * Powered by ext/mcrypt * * @param int $bytes * @return string */ function random_bytes($bytes) { if (!is_int($bytes)) { throw new Exception( 'Length must be an integer' ); } if ($bytes < 1) { throw new Exception( 'Length must be greater than 0' ); } // See PHP bug #55169 for why 5.3.7 is required $buf = mcrypt_create_iv($bytes, MCRYPT_DEV_URANDOM); if ($buf !== false) { if (RandomCompat_strlen($buf) === $bytes) { return $buf; } } /** * If we reach here, PHP has failed us. */ throw new Exception( 'PHP failed to generate random data.' ); } } elseif (!ini_get('open_basedir') && (is_readable('/dev/arandom') || is_readable('/dev/urandom'))) { /** * Use /dev/arandom or /dev/urandom for random numbers * * @ref http://sockpuppet.org/blog/2014/02/25/safely-generate-random-numbers * * @param int $bytes * @return string */ function random_bytes($bytes) { static $fp = null; if ($fp === null) { if (is_readable('/dev/arandom')) { $fp = fopen('/dev/arandom', 'rb'); } else { $fp = fopen('/dev/urandom', 'rb'); } } if ($fp !== false) { $streamset = stream_set_read_buffer($fp, 0); if ($streamset === 0) { $remaining = $bytes; $buf = ''; do { $read = fread($fp, $remaining); if ($read === false) { // We cannot safely read from urandom. $buf = false; break; } // Decrease the number of bytes returned from remaining $remaining -= RandomCompat_strlen($read); $buf .= $read; } while ($remaining > 0); if ($buf !== false) { if (RandomCompat_strlen($buf) === $bytes) { /** * Return our random entropy buffer here: */ return $buf; } } } } /** * If we reach here, PHP has failed us. */ throw new Exception( 'PHP failed to generate random data.' ); } } elseif (extension_loaded('com_dotnet')) { /** * Windows with PHP < 5.3.0 will not have the function * openssl_random_pseudo_bytes() available, so let's use * CAPICOM to work around this deficiency. * * @param int $bytes * @return string */ function random_bytes($bytes) { $buf = ''; $util = new COM('CAPICOM.Utilities.1'); $execCount = 0; /** * Let's not let it loop forever. If we run N times and fail to * get N bytes of random data, then CAPICOM has failed us. */ do { $buf .= base64_decode($util->GetRandom($bytes, 0)); if (RandomCompat_strlen($buf) >= $bytes) { return RandomCompat_substr($buf, 0, $bytes); } ++$execCount; } while ($execCount < $bytes); /** * If we reach here, PHP has failed us. */ throw new Exception( 'PHP failed to generate random data.' ); } } elseif (function_exists('openssl_random_pseudo_bytes')) { /** * Since openssl_random_pseudo_bytes() uses openssl's * RAND_pseudo_bytes() API, which has been marked as deprecated by the * OpenSSL team, this is our last resort before failure. * * @ref https://www.openssl.org/docs/crypto/RAND_bytes.html * * @param int $bytes * @return string */ function random_bytes($bytes) { $secure = true; $buf = openssl_random_pseudo_bytes($bytes, $secure); if ($buf !== false && $secure) { if (RandomCompat_strlen($buf) === $bytes) { return $buf; } } /** * If we reach here, PHP has failed us. */ throw new Exception( 'PHP failed to generate random data.' ); } } else { /** * We don't have any more options, so let's throw an exception right now */ throw new Exception( 'There is no suitable CSPRNG installed on your system' ); } } var_dump( implode('-', [ bin2hex(random_bytes(4)), bin2hex(random_bytes(2)), bin2hex((random_bytes(1) & 0x0F) | 0x40) . bin2hex(random_bytes(1)), bin2hex((random_bytes(1) & 0x3F) | 0x80) . bin2hex(random_bytes(1)), bin2hex(random_bytes(12)) ]) );
Output for 8.0.0 - 8.0.30, 8.1.0 - 8.1.2, 8.1.4 - 8.1.9, 8.1.11 - 8.1.20, 8.1.22 - 8.1.28, 8.2.0 - 8.2.2, 8.2.4 - 8.2.14, 8.2.16 - 8.2.18, 8.3.0 - 8.3.6
Fatal error: Uncaught TypeError: Unsupported operand types: string & int in /in/i0k74:172 Stack trace: #0 {main} thrown in /in/i0k74 on line 172
Process exited with code 255.
Output for 8.1.3, 8.1.10, 8.1.21, 8.2.3, 8.2.15
Fatal error: Uncaught TypeError: Unsupported operand types: string & int in /in/i0k74:173 Stack trace: #0 {main} thrown in /in/i0k74 on line 173
Process exited with code 255.
Output for 7.4.33
Warning: A non-numeric value encountered in /in/i0k74 on line 172 Warning: A non-numeric value encountered in /in/i0k74 on line 173 string(54) "27a459a1-bcf7-3634cf-313238be-da62c7995cbb73e7e0936de1"
Output for 7.4.32
Warning: A non-numeric value encountered in /in/i0k74 on line 172 Warning: A non-numeric value encountered in /in/i0k74 on line 173 string(54) "850b7f4e-2b73-3634d9-313238a0-2b6c8149bd52e9018297a035"
Output for 7.4.30
Warning: A non-numeric value encountered in /in/i0k74 on line 172 Warning: A non-numeric value encountered in /in/i0k74 on line 173 string(54) "6a37e877-f442-363428-31323861-18bd3eceea9d1eb171d467aa"
Output for 7.4.29
Warning: A non-numeric value encountered in /in/i0k74 on line 172 Warning: A non-numeric value encountered in /in/i0k74 on line 173 string(54) "f3e21a84-93cb-363466-313238d9-376ffb6d1c98455a0ebdf634"
Output for 7.4.28
Warning: A non-numeric value encountered in /in/i0k74 on line 172 Warning: A non-numeric value encountered in /in/i0k74 on line 173 string(54) "8959b939-e6bd-36345c-3132380d-de9b1ef54409a22c0ca05646"
Output for 7.4.27
Warning: A non-numeric value encountered in /in/i0k74 on line 172 string(54) "88498d9f-67b9-36341b-3133314e-8d9eba6cb3d03c9e51883e14"
Output for 7.4.26
Warning: A non-numeric value encountered in /in/i0k74 on line 172 Warning: A non-numeric value encountered in /in/i0k74 on line 173 string(54) "48138f06-0b79-363448-3132382a-2a35e67e5a4013c13a26f8e9"
Output for 7.4.25
Warning: A non-numeric value encountered in /in/i0k74 on line 172 Warning: A non-numeric value encountered in /in/i0k74 on line 173 string(54) "f5340106-f128-363478-313238ab-e50c7e193e43a523f0f3a8f8"
Output for 7.4.24
Warning: A non-numeric value encountered in /in/i0k74 on line 172 Warning: A non-numeric value encountered in /in/i0k74 on line 173 string(54) "1a74a762-3bcb-3634ea-31323817-00983e227939bb7b2999fba3"
Output for 7.4.23
Warning: A non-numeric value encountered in /in/i0k74 on line 172 Warning: A non-numeric value encountered in /in/i0k74 on line 173 string(54) "db59b892-3ce6-363434-313238a2-d0da2620a0387498f79d81d6"
Output for 7.4.22
Warning: A non-numeric value encountered in /in/i0k74 on line 172 Warning: A non-numeric value encountered in /in/i0k74 on line 173 string(54) "a090f722-aefc-363446-31323892-03c7b6ca261f314de8e03782"
Output for 7.4.21
Warning: A non-numeric value encountered in /in/i0k74 on line 172 string(54) "0b2e7c94-9480-3634dd-313332b2-d7ea5c1a8d7c482618d7a15c"
Output for 7.4.20
Warning: A non-numeric value encountered in /in/i0k74 on line 172 Warning: A non-numeric value encountered in /in/i0k74 on line 173 string(54) "f35559d0-752b-363430-31323870-1b28850b7e4e491a6a74d5df"
Output for 7.4.19
Warning: A non-numeric value encountered in /in/i0k74 on line 172 Warning: A non-numeric value encountered in /in/i0k74 on line 173 string(54) "371694ed-c369-363432-313238e5-ba9e694a45fcaaecf5ae9926"
Output for 7.4.18
Warning: A non-numeric value encountered in /in/i0k74 on line 172 Warning: A non-numeric value encountered in /in/i0k74 on line 173 string(54) "7c4fdc6a-a029-3634d8-3132381a-1814535f30c89fa1626c7032"
Output for 7.4.16
Warning: A non-numeric value encountered in /in/i0k74 on line 172 Warning: A non-numeric value encountered in /in/i0k74 on line 173 string(54) "231b1b11-3c25-36342b-313238a4-74cfc23047fafe45f14ee4ad"
Output for 7.4.15
Warning: A non-numeric value encountered in /in/i0k74 on line 172 Warning: A non-numeric value encountered in /in/i0k74 on line 173 string(54) "45dfeabe-18c1-363461-313238f0-003ad77c39be6ad078f3ea3c"
Output for 7.4.14
Warning: A non-numeric value encountered in /in/i0k74 on line 172 Warning: A non-numeric value encountered in /in/i0k74 on line 173 string(54) "549b55cd-0ca6-363497-31323873-64696b79471ca08d1a8bcca0"
Output for 7.4.13
Warning: A non-numeric value encountered in /in/i0k74 on line 172 Warning: A non-numeric value encountered in /in/i0k74 on line 173 string(54) "2678cf6b-9afb-3634f6-313238d1-7179e4001d4652e71c294d5f"
Output for 7.4.12
Warning: A non-numeric value encountered in /in/i0k74 on line 172 Warning: A non-numeric value encountered in /in/i0k74 on line 173 string(54) "aeaead0a-b8f9-363404-313238b8-aa59ebf9f3675b4c2b7f96fc"
Output for 7.4.11
Warning: A non-numeric value encountered in /in/i0k74 on line 172 Warning: A non-numeric value encountered in /in/i0k74 on line 173 string(54) "0069ecbf-9ea6-363411-3132380b-4e8bec1284eb9f9a22b3b88c"
Output for 7.4.10
Warning: A non-numeric value encountered in /in/i0k74 on line 172 Warning: A non-numeric value encountered in /in/i0k74 on line 173 string(54) "34bd0a55-4655-3634c5-313238fd-301b6c20fd7a1e1b0147f35d"
Output for 7.4.9
Warning: A non-numeric value encountered in /in/i0k74 on line 172 Warning: A non-numeric value encountered in /in/i0k74 on line 173 string(54) "b41c1837-99a8-3634bc-313238b8-f8f62a664db4a53aec27b1da"
Output for 7.4.8
Warning: A non-numeric value encountered in /in/i0k74 on line 172 Warning: A non-numeric value encountered in /in/i0k74 on line 173 string(54) "0121f588-4703-3634c8-313238f7-ed46dbe143dafb402598f5a0"
Output for 7.4.7
Warning: A non-numeric value encountered in /in/i0k74 on line 172 string(54) "abbf50d8-c63f-3634f3-31333657-d36abcf612384a6944c4897e"
Output for 7.4.6
Warning: A non-numeric value encountered in /in/i0k74 on line 172 Warning: A non-numeric value encountered in /in/i0k74 on line 173 string(54) "c12a6f0f-82e2-3634eb-313238a7-55560a8fb29ca39158844781"
Output for 7.4.5
Warning: A non-numeric value encountered in /in/i0k74 on line 172 Warning: A non-numeric value encountered in /in/i0k74 on line 173 string(54) "017d0b25-d3e7-36347d-313238f2-405e1e0260a9d70379849011"
Output for 7.4.4
Warning: A non-numeric value encountered in /in/i0k74 on line 172 Warning: A non-numeric value encountered in /in/i0k74 on line 173 string(54) "c1283695-4796-363499-313238ac-28bc997d6fb74fe18a739ccd"
Output for 7.4.3
Warning: A non-numeric value encountered in /in/i0k74 on line 172 Warning: A non-numeric value encountered in /in/i0k74 on line 173 string(54) "c7266195-a195-36342c-31323846-d6e981f64a87db68aa03d98b"
Output for 7.4.2
Warning: A non-numeric value encountered in /in/i0k74 on line 172 Warning: A non-numeric value encountered in /in/i0k74 on line 173 string(54) "d4397e70-04d2-363465-313238ce-c484c73b3e3be4f1df846d3b"
Output for 7.4.1
Warning: A non-numeric value encountered in /in/i0k74 on line 172 Warning: A non-numeric value encountered in /in/i0k74 on line 173 string(54) "208e55fa-834a-36348c-31323888-c89277452a24272241c43ddb"
Output for 7.4.0
Warning: A non-numeric value encountered in /in/i0k74 on line 172 Warning: A non-numeric value encountered in /in/i0k74 on line 173 string(54) "89c4da6a-243e-363410-313238b0-c6a11d6bdc6ae4509ef7eca2"
Output for 7.3.33
Warning: A non-numeric value encountered in /in/i0k74 on line 172 Warning: A non-numeric value encountered in /in/i0k74 on line 173 string(54) "1d914e50-f8ba-3634b7-3132387e-529c5a9f704c9c5239cf2267"
Output for 7.3.32
Warning: A non-numeric value encountered in /in/i0k74 on line 172 Warning: A non-numeric value encountered in /in/i0k74 on line 173 string(54) "3a62769a-5abd-36345c-31323868-58a101fd320405e6229f135d"
Output for 7.3.31
Warning: A non-numeric value encountered in /in/i0k74 on line 172 Warning: A non-numeric value encountered in /in/i0k74 on line 173 string(54) "7414743c-4878-3634df-3132387f-a5475a6e2974f17bee59dacd"
Output for 7.3.30
Warning: A non-numeric value encountered in /in/i0k74 on line 172 Warning: A non-numeric value encountered in /in/i0k74 on line 173 string(54) "0501f89c-980d-36342e-31323856-7e8b4e44ab57d627ff9b4d61"
Output for 7.3.29
Warning: A non-numeric value encountered in /in/i0k74 on line 172 Warning: A non-numeric value encountered in /in/i0k74 on line 173 string(54) "676a1a6a-05a4-3634c7-31323810-b97ac65f1e378042fcf14cf2"
Output for 7.3.28
Warning: A non-numeric value encountered in /in/i0k74 on line 172 Warning: A non-numeric value encountered in /in/i0k74 on line 173 string(54) "7abffa91-93ed-3634bc-313238ad-7b7c68919ef79ff8f342c950"
Output for 7.3.27
Warning: A non-numeric value encountered in /in/i0k74 on line 173 string(54) "90cd2036-7bce-36348c-3132383d-309cde678139175b91562de9"
Output for 7.3.26
Warning: A non-numeric value encountered in /in/i0k74 on line 172 Warning: A non-numeric value encountered in /in/i0k74 on line 173 string(54) "c00c7238-dbcf-3634e3-31323882-ec8ea0f669d6a4976733c76a"
Output for 7.3.25
Warning: A non-numeric value encountered in /in/i0k74 on line 172 Warning: A non-numeric value encountered in /in/i0k74 on line 173 string(54) "71458ee4-a2fe-363458-313238d4-3783225156273a04f42f0aed"
Output for 7.3.24
Warning: A non-numeric value encountered in /in/i0k74 on line 172 Warning: A non-numeric value encountered in /in/i0k74 on line 173 string(54) "b0bfab03-efc0-363453-3132384a-60e2a8fc5db9eab1b7f49b45"
Output for 7.3.23
Warning: A non-numeric value encountered in /in/i0k74 on line 172 Warning: A non-numeric value encountered in /in/i0k74 on line 173 string(54) "c7354838-58da-3634cb-313238f1-e5c9818663224714176dccb7"
Output for 7.3.22
Warning: A non-numeric value encountered in /in/i0k74 on line 172 Warning: A non-numeric value encountered in /in/i0k74 on line 173 string(54) "b9127199-5028-36341f-313238aa-70f8aeffdf036b86ef82586e"
Output for 7.3.21
Warning: A non-numeric value encountered in /in/i0k74 on line 172 Warning: A non-numeric value encountered in /in/i0k74 on line 173 string(54) "2f39501b-af92-363465-3132381c-ca2f13a8d47c2d3c27833d51"
Output for 7.3.20
Warning: A non-numeric value encountered in /in/i0k74 on line 172 Warning: A non-numeric value encountered in /in/i0k74 on line 173 string(54) "ef3f618d-91b2-36346c-31323839-7faadd9bfd80adba841ecc1e"
Output for 7.3.19
Warning: A non-numeric value encountered in /in/i0k74 on line 172 Warning: A non-numeric value encountered in /in/i0k74 on line 173 string(54) "a12ec175-f16f-3634d4-31323846-fe46654ec6c305c735ca4127"
Output for 7.3.18
Warning: A non-numeric value encountered in /in/i0k74 on line 172 Warning: A non-numeric value encountered in /in/i0k74 on line 173 string(54) "7224fca2-ee1f-3634b8-31323833-ae77d38d29cc5ad7c76ab189"
Output for 7.3.17
Warning: A non-numeric value encountered in /in/i0k74 on line 172 Warning: A non-numeric value encountered in /in/i0k74 on line 173 string(54) "30d48d1d-9e2c-3634a0-313238d1-c9af95ac8b43effc5963b86e"
Output for 7.3.16
Warning: A non-numeric value encountered in /in/i0k74 on line 172 Warning: A non-numeric value encountered in /in/i0k74 on line 173 string(54) "bef1ad70-cd5c-36347a-313238a4-90edca99d0ce2a79b8954e4b"
Output for 7.3.15
Warning: A non-numeric value encountered in /in/i0k74 on line 172 Warning: A non-numeric value encountered in /in/i0k74 on line 173 string(54) "4cb44678-8ecf-3634b8-313238b8-b2cd67f6429ab6c45b87cc2f"
Output for 7.3.14
Warning: A non-numeric value encountered in /in/i0k74 on line 172 Warning: A non-numeric value encountered in /in/i0k74 on line 173 string(54) "30ae352b-b4b2-3634e9-313238a0-9c92ed24ee8b541edf866c20"
Output for 7.3.13
Warning: A non-numeric value encountered in /in/i0k74 on line 172 Warning: A non-numeric value encountered in /in/i0k74 on line 173 string(54) "7ffcd289-c08e-3634c1-31323857-5539e8ade8857befe18acaec"
Output for 7.3.12
Warning: A non-numeric value encountered in /in/i0k74 on line 172 Warning: A non-numeric value encountered in /in/i0k74 on line 173 string(54) "d26b4704-8c5d-363462-313238db-c5cb31ffc3e50d5b6bf64d65"
Output for 7.3.11
Warning: A non-numeric value encountered in /in/i0k74 on line 172 Warning: A non-numeric value encountered in /in/i0k74 on line 173 string(54) "1f1b304b-6533-3634bb-313238ee-00ab753a762c9ead1587cfc8"
Output for 7.3.10
Warning: A non-numeric value encountered in /in/i0k74 on line 173 string(54) "b4954a1f-f69e-363533-31323818-fa03c46c4ccd02ab5f13fc67"
Output for 7.3.9
Warning: A non-numeric value encountered in /in/i0k74 on line 172 Warning: A non-numeric value encountered in /in/i0k74 on line 173 string(54) "9e7814a1-4460-363478-31323899-8302b5d0875d082668f4270c"
Output for 7.3.8
Warning: A non-numeric value encountered in /in/i0k74 on line 172 Warning: A non-numeric value encountered in /in/i0k74 on line 173 string(54) "e5aa51be-91bd-363446-3132388d-52f4fec7a7e81a78c7dbc673"
Output for 7.3.7
Warning: A non-numeric value encountered in /in/i0k74 on line 172 Warning: A non-numeric value encountered in /in/i0k74 on line 173 string(54) "62fcf65f-354a-363498-3132388e-18756695464aeb1c71f0e63f"
Output for 7.3.6
Warning: A non-numeric value encountered in /in/i0k74 on line 172 Warning: A non-numeric value encountered in /in/i0k74 on line 173 string(54) "60824e7a-ada3-3634d2-31323832-a0b2ef9784717842562e14f6"
Output for 7.3.5
Warning: A non-numeric value encountered in /in/i0k74 on line 172 Warning: A non-numeric value encountered in /in/i0k74 on line 173 string(54) "9cc63920-9aa0-363458-313238c4-707acca52db74a443b7c0788"
Output for 7.3.4
Warning: A non-numeric value encountered in /in/i0k74 on line 172 Warning: A non-numeric value encountered in /in/i0k74 on line 173 string(54) "f5d34ad2-c653-3634ee-3132383c-696e027b220e33dfe354ee33"
Output for 7.3.3
Warning: A non-numeric value encountered in /in/i0k74 on line 172 Warning: A non-numeric value encountered in /in/i0k74 on line 173 string(54) "a40c29f8-f397-36340e-31323842-54b834da3eba0dbea76e42d3"
Output for 7.3.2
Warning: A non-numeric value encountered in /in/i0k74 on line 172 string(54) "0d97b7e1-a1d1-3634b4-313337ca-f294dd63c000cec6700427fd"
Output for 7.3.1
Warning: A non-numeric value encountered in /in/i0k74 on line 172 Warning: A non-numeric value encountered in /in/i0k74 on line 173 string(54) "a44cf80e-39db-36341a-313238b5-8bbd87b09b149cf2ca1bf8f2"
Output for 7.3.0
Warning: A non-numeric value encountered in /in/i0k74 on line 172 Warning: A non-numeric value encountered in /in/i0k74 on line 173 string(54) "f9deac60-eb43-36344a-3132388c-bcca7797de2193b05dc2fbc2"
Output for 7.2.34
Warning: A non-numeric value encountered in /in/i0k74 on line 172 Warning: A non-numeric value encountered in /in/i0k74 on line 173 string(54) "40359c73-52d3-3634f0-313238a0-67e234532fed74e4d61f9e4c"
Output for 7.2.33
Warning: A non-numeric value encountered in /in/i0k74 on line 172 Warning: A non-numeric value encountered in /in/i0k74 on line 173 string(54) "ba8ce565-a11c-3634ea-3132386a-35d976298963d4a438912cbb"
Output for 7.2.32
Warning: A non-numeric value encountered in /in/i0k74 on line 172 Warning: A non-numeric value encountered in /in/i0k74 on line 173 string(54) "b606fbac-b44d-363432-313238c7-a581ae27bfb0af0e7148b327"
Output for 7.2.31
Warning: A non-numeric value encountered in /in/i0k74 on line 172 Warning: A non-numeric value encountered in /in/i0k74 on line 173 string(54) "9def2b54-2b6e-36341b-313238bd-7d1520a6449972c287eeb546"
Output for 7.2.30
Warning: A non-numeric value encountered in /in/i0k74 on line 172 Warning: A non-numeric value encountered in /in/i0k74 on line 173 string(54) "13458ea8-3dde-363482-313238b1-cc3b66f41d30c8eb80e5b10d"
Output for 7.2.29
Warning: A non-numeric value encountered in /in/i0k74 on line 172 Warning: A non-numeric value encountered in /in/i0k74 on line 173 string(54) "a8642d1c-7ce2-363441-3132383d-0562343f2345a6e5369a4731"
Output for 7.2.28
Warning: A non-numeric value encountered in /in/i0k74 on line 172 Warning: A non-numeric value encountered in /in/i0k74 on line 173 string(54) "82c6390f-5c35-363457-313238a4-75b88ee7cf456c8febc10391"
Output for 7.2.27
Warning: A non-numeric value encountered in /in/i0k74 on line 172 Warning: A non-numeric value encountered in /in/i0k74 on line 173 string(54) "8ab17a2e-57b1-36349e-31323842-023052e6fe53d0186136573c"
Output for 7.2.26
Warning: A non-numeric value encountered in /in/i0k74 on line 172 Warning: A non-numeric value encountered in /in/i0k74 on line 173 string(54) "842f2144-34b7-36343e-313238bb-cf84174c05a90bcc3d5a7c95"
Output for 7.2.25
Warning: A non-numeric value encountered in /in/i0k74 on line 172 Warning: A non-numeric value encountered in /in/i0k74 on line 173 string(54) "876b64d1-5a5e-3634c5-313238cd-a5ec32eebe09c47cbf34598b"
Output for 7.2.24
Warning: A non-numeric value encountered in /in/i0k74 on line 172 Warning: A non-numeric value encountered in /in/i0k74 on line 173 string(54) "0a96556f-d956-363458-31323870-2d9b451161b5f7276f8f2055"
Output for 7.2.23
Warning: A non-numeric value encountered in /in/i0k74 on line 172 Warning: A non-numeric value encountered in /in/i0k74 on line 173 string(54) "197f9760-af27-363446-3132382e-e456b5e36bc0d314ce2bf05b"
Output for 7.2.22
Warning: A non-numeric value encountered in /in/i0k74 on line 172 Warning: A non-numeric value encountered in /in/i0k74 on line 173 string(54) "2ede7356-636e-363424-31323879-b7c006fca304a8e342a04839"
Output for 7.2.21
Warning: A non-numeric value encountered in /in/i0k74 on line 172 Warning: A non-numeric value encountered in /in/i0k74 on line 173 string(54) "7ea99eec-4f40-3634cf-313238ba-5227354e080fa78a4843d3d1"
Output for 7.2.20
Warning: A non-numeric value encountered in /in/i0k74 on line 172 Warning: A non-numeric value encountered in /in/i0k74 on line 173 string(54) "38de3ba8-6e01-36340e-313238f7-1221cb1da8b7be9ce40060aa"
Output for 7.2.19
Warning: A non-numeric value encountered in /in/i0k74 on line 172 Warning: A non-numeric value encountered in /in/i0k74 on line 173 string(54) "e161ea6a-a44f-3634ea-313238c8-8cb05a3d86c578c3e15d568d"
Output for 7.2.18
Warning: A non-numeric value encountered in /in/i0k74 on line 172 Warning: A non-numeric value encountered in /in/i0k74 on line 173 string(54) "2e2f486a-45d1-363449-313238fd-94dbc958d543fa21525abec0"
Output for 7.2.17
Warning: A non-numeric value encountered in /in/i0k74 on line 172 Warning: A non-numeric value encountered in /in/i0k74 on line 173 string(54) "aa06add3-7965-3634c7-31323888-bc320ab50b88ad8867616bc7"
Output for 7.2.16
Warning: A non-numeric value encountered in /in/i0k74 on line 172 Warning: A non-numeric value encountered in /in/i0k74 on line 173 string(54) "02476e6c-a91b-363461-313238a6-52a0641a4a78e08d92dd2819"
Output for 7.2.15
Warning: A non-numeric value encountered in /in/i0k74 on line 172 Warning: A non-numeric value encountered in /in/i0k74 on line 173 string(54) "e63f5a8d-923c-3634f9-3132385e-65e6d73dac5e97e3c59e0062"
Output for 7.2.14
Warning: A non-numeric value encountered in /in/i0k74 on line 172 Warning: A non-numeric value encountered in /in/i0k74 on line 173 string(54) "058c6672-3bca-3634e1-31323841-1e2833ae42102fdd6c23d976"
Output for 7.2.13
Warning: A non-numeric value encountered in /in/i0k74 on line 172 Warning: A non-numeric value encountered in /in/i0k74 on line 173 string(54) "a8fabc46-22d1-363444-313238d5-b2b6e18cdb1b89622aa2e561"
Output for 7.2.12
Warning: A non-numeric value encountered in /in/i0k74 on line 172 Warning: A non-numeric value encountered in /in/i0k74 on line 173 string(54) "fdf8675e-7633-363496-313238ca-1e020ad6cea1ee465dcaca65"
Output for 7.2.11
Warning: A non-numeric value encountered in /in/i0k74 on line 172 Warning: A non-numeric value encountered in /in/i0k74 on line 173 string(54) "bb70d0e4-dc09-3634e8-3132389c-2d901ae703afdc1ab725e4db"
Output for 7.2.10
Warning: A non-numeric value encountered in /in/i0k74 on line 172 Warning: A non-numeric value encountered in /in/i0k74 on line 173 string(54) "31821de2-4cf1-363481-3132384a-ec25aef583e756e6c051c17c"
Output for 7.2.9
Warning: A non-numeric value encountered in /in/i0k74 on line 172 Warning: A non-numeric value encountered in /in/i0k74 on line 173 string(54) "45f39746-bb71-36346c-31323826-39f51c46f755b9ba55e391d1"
Output for 7.2.8
Warning: A non-numeric value encountered in /in/i0k74 on line 172 Warning: A non-numeric value encountered in /in/i0k74 on line 173 string(54) "2275d8f9-675c-363401-3132382d-8acea9758328ea1968860735"
Output for 7.2.7
Warning: A non-numeric value encountered in /in/i0k74 on line 172 Warning: A non-numeric value encountered in /in/i0k74 on line 173 string(54) "8191ec91-d939-36346b-313238bb-ffdd1309fb5d90960721f4c6"
Output for 7.2.6
Warning: A non-numeric value encountered in /in/i0k74 on line 172 Warning: A non-numeric value encountered in /in/i0k74 on line 173 string(54) "5d9ab65e-0ee0-36341b-31323851-03ac5931f923939353e9fcb2"
Output for 7.2.5
Warning: A non-numeric value encountered in /in/i0k74 on line 172 Warning: A non-numeric value encountered in /in/i0k74 on line 173 string(54) "39f2fa6d-ca53-3634ca-31323873-c50537d9ba4f7d1d6323f910"
Output for 7.2.4
Warning: A non-numeric value encountered in /in/i0k74 on line 172 Warning: A non-numeric value encountered in /in/i0k74 on line 173 string(54) "bfead3d9-eef4-36340e-3132380b-47484b28cb45aa1e2ae3054f"
Output for 7.2.3
Warning: A non-numeric value encountered in /in/i0k74 on line 172 Warning: A non-numeric value encountered in /in/i0k74 on line 173 string(54) "d370c29b-72eb-36342f-31323852-2b7103123206e6a7ed94b43e"
Output for 7.2.2
Warning: A non-numeric value encountered in /in/i0k74 on line 172 Warning: A non-numeric value encountered in /in/i0k74 on line 173 string(54) "5f63913b-3064-3634b4-313238e4-1b273ff94a3171eab969f70e"
Output for 7.2.1
Warning: A non-numeric value encountered in /in/i0k74 on line 172 Warning: A non-numeric value encountered in /in/i0k74 on line 173 string(54) "fd06c359-2aeb-36349e-3132382c-45d7f75998aa8f4edbcd5900"
Output for 7.2.0
Warning: A non-numeric value encountered in /in/i0k74 on line 172 Warning: A non-numeric value encountered in /in/i0k74 on line 173 string(54) "300b485e-c48e-363493-31323864-436b63019ccc36e37f2b9350"
Output for 7.1.33
Warning: A non-numeric value encountered in /in/i0k74 on line 172 Warning: A non-numeric value encountered in /in/i0k74 on line 173 string(54) "d81873f2-c67a-3634cd-31323804-b1bddfc328fd6b2b5fd34c84"
Output for 7.1.32
Warning: A non-numeric value encountered in /in/i0k74 on line 172 Warning: A non-numeric value encountered in /in/i0k74 on line 173 string(54) "688e4237-673e-363426-313238eb-3be8841d6cd6baa881561546"
Output for 7.1.31
Warning: A non-numeric value encountered in /in/i0k74 on line 172 Warning: A non-numeric value encountered in /in/i0k74 on line 173 string(54) "cf4c5dca-288d-363444-3132383b-61daa2217a37c33a39da7fb6"
Output for 7.1.30
Warning: A non-numeric value encountered in /in/i0k74 on line 172 Warning: A non-numeric value encountered in /in/i0k74 on line 173 string(54) "49e06894-3c50-363491-313238c2-e70bb4920d8d76f9de95dfd1"
Output for 7.1.29
Warning: A non-numeric value encountered in /in/i0k74 on line 172 Warning: A non-numeric value encountered in /in/i0k74 on line 173 string(54) "ee154fa8-d98c-3634aa-31323851-ccbac6a9a9ff99959017654d"
Output for 7.1.28
Warning: A non-numeric value encountered in /in/i0k74 on line 172 Warning: A non-numeric value encountered in /in/i0k74 on line 173 string(54) "0d2fc442-940a-3634ac-313238a1-59352a57f9ee679d6d23c909"
Output for 7.1.27
Warning: A non-numeric value encountered in /in/i0k74 on line 172 Warning: A non-numeric value encountered in /in/i0k74 on line 173 string(54) "1985d5e7-b518-3634c0-3132389a-9e5f9c7d0de486454b77fa49"
Output for 7.1.26
Warning: A non-numeric value encountered in /in/i0k74 on line 172 Warning: A non-numeric value encountered in /in/i0k74 on line 173 string(54) "fbbe76d9-4e91-363420-31323805-a34e916ecc0a340e761cb320"
Output for 7.1.25
Warning: A non-numeric value encountered in /in/i0k74 on line 172 Warning: A non-numeric value encountered in /in/i0k74 on line 173 string(54) "8e4bd2ad-9af4-3634f0-3132385e-802be996795e424052f6b828"
Output for 7.1.24
Warning: A non-numeric value encountered in /in/i0k74 on line 172 Warning: A non-numeric value encountered in /in/i0k74 on line 173 string(54) "673a11bd-d9ae-3634d6-31323863-5ac3dd11d5d28b2dabb1910a"
Output for 7.1.23
Warning: A non-numeric value encountered in /in/i0k74 on line 172 Warning: A non-numeric value encountered in /in/i0k74 on line 173 string(54) "e58e70c8-dfa6-3634e4-313238ac-43f3798e363e39fcfeaa7e8e"
Output for 7.1.22
Warning: A non-numeric value encountered in /in/i0k74 on line 172 Warning: A non-numeric value encountered in /in/i0k74 on line 173 string(54) "4975867c-348a-363445-313238c8-65e26809cb128bb0ec60a7c6"
Output for 7.1.21
Warning: A non-numeric value encountered in /in/i0k74 on line 172 Warning: A non-numeric value encountered in /in/i0k74 on line 173 string(54) "4c736d95-4e4f-3634b9-31323809-fb3aeca89038c27a0acf6b69"
Output for 7.1.20
Warning: A non-numeric value encountered in /in/i0k74 on line 172 Warning: A non-numeric value encountered in /in/i0k74 on line 173 string(54) "27280d1a-a8f6-36347a-31323884-b11e5cab418ac950973be796"
Output for 7.1.19
Warning: A non-numeric value encountered in /in/i0k74 on line 172 Warning: A non-numeric value encountered in /in/i0k74 on line 173 string(54) "06990517-4dd0-3634ce-31323825-da7cccb0ace4740b3b651a56"
Output for 7.1.18
Warning: A non-numeric value encountered in /in/i0k74 on line 172 Warning: A non-numeric value encountered in /in/i0k74 on line 173 string(54) "cd4f1973-31e1-3634bc-31323863-f2477336cf0bcdabcb7e8121"
Output for 7.1.17
Warning: A non-numeric value encountered in /in/i0k74 on line 172 Warning: A non-numeric value encountered in /in/i0k74 on line 173 string(54) "24efe175-8115-3634f2-313238f5-fc36d8633e68d9feaba277e5"
Output for 7.1.16
Warning: A non-numeric value encountered in /in/i0k74 on line 172 Warning: A non-numeric value encountered in /in/i0k74 on line 173 string(54) "f9c6913f-e37c-363491-313238d5-4d4002e13bbc5f0f9241181d"
Output for 7.1.15
Warning: A non-numeric value encountered in /in/i0k74 on line 172 Warning: A non-numeric value encountered in /in/i0k74 on line 173 string(54) "279324f2-bf22-36345d-31323894-8f3e7bd6efc983b4c196ec3f"
Output for 7.1.14
Warning: A non-numeric value encountered in /in/i0k74 on line 172 Warning: A non-numeric value encountered in /in/i0k74 on line 173 string(54) "e86e15fc-12f2-363424-3132381e-89f000d24eff71ecb14787ee"
Output for 7.1.13
Warning: A non-numeric value encountered in /in/i0k74 on line 172 Warning: A non-numeric value encountered in /in/i0k74 on line 173 string(54) "42ddf3d8-8013-3634fd-313238ee-328b684dcb527d4558fb7ed6"
Output for 7.1.12
Warning: A non-numeric value encountered in /in/i0k74 on line 172 Warning: A non-numeric value encountered in /in/i0k74 on line 173 string(54) "0326a1b8-65ae-363413-31323856-e7ccc0e50267f86d9c08a513"
Output for 7.1.11
Warning: A non-numeric value encountered in /in/i0k74 on line 172 Warning: A non-numeric value encountered in /in/i0k74 on line 173 string(54) "30b08e6d-3465-363463-3132388d-c06a12a4721939a07b29bb56"
Output for 7.1.10
Warning: A non-numeric value encountered in /in/i0k74 on line 172 Warning: A non-numeric value encountered in /in/i0k74 on line 173 string(54) "a89ab351-ce9e-3634b0-31323851-8f646308439e17db29134227"
Output for 7.1.9
Warning: A non-numeric value encountered in /in/i0k74 on line 172 Warning: A non-numeric value encountered in /in/i0k74 on line 173 string(54) "0ddb81e1-ed90-36341d-313238a3-28d0db54ccf1884bb0cc0666"
Output for 7.1.8
Warning: A non-numeric value encountered in /in/i0k74 on line 172 Warning: A non-numeric value encountered in /in/i0k74 on line 173 string(54) "32066019-6005-36344c-31323896-8d141ad5201978e3e3b81600"
Output for 7.1.7
Warning: A non-numeric value encountered in /in/i0k74 on line 172 Warning: A non-numeric value encountered in /in/i0k74 on line 173 string(54) "1a56e73a-67e2-363492-313238ef-7308ab4e64fa3b4517fe9553"
Output for 7.1.6
Warning: A non-numeric value encountered in /in/i0k74 on line 172 Warning: A non-numeric value encountered in /in/i0k74 on line 173 string(54) "b974ae3c-554b-3634a0-31323859-509bd5366e404bea625a5ea0"
Output for 7.1.5
Warning: A non-numeric value encountered in /in/i0k74 on line 172 Warning: A non-numeric value encountered in /in/i0k74 on line 173 string(54) "05e8e940-4e2f-363425-313238f7-134a58765557c500cde1be61"
Output for 7.1.4
Warning: A non-numeric value encountered in /in/i0k74 on line 172 Warning: A non-numeric value encountered in /in/i0k74 on line 173 string(54) "185af384-350b-363403-313238cc-d79f1afb2d677b6d70b3fb79"
Output for 7.1.3
Warning: A non-numeric value encountered in /in/i0k74 on line 172 Warning: A non-numeric value encountered in /in/i0k74 on line 173 string(54) "b49a40e2-056c-363492-31323836-11ecb5c3df5e067f956dac65"
Output for 7.1.2
Warning: A non-numeric value encountered in /in/i0k74 on line 172 Warning: A non-numeric value encountered in /in/i0k74 on line 173 string(54) "9287d619-c248-3634fe-31323892-8b33f55e8df1eb98856cec7c"
Output for 7.1.1
Warning: A non-numeric value encountered in /in/i0k74 on line 172 string(54) "47c40731-fb4c-36349b-31333717-b1ad4d37aae73958917669dd"
Output for 7.1.0
Warning: A non-numeric value encountered in /in/i0k74 on line 172 Warning: A non-numeric value encountered in /in/i0k74 on line 173 string(54) "f513000e-5b6f-363426-313238c7-3eb8b9070a0fa446b2fd8dd6"
Output for 7.0.33
string(54) "7062268d-50b1-363450-313238fa-9ee87a9acf373efc5b07227c"
Output for 7.0.32
string(54) "da3f4d0b-5013-3634a4-3132387a-280f65f6ffc6d0a3d71b0347"
Output for 7.0.31
string(54) "83e0f406-a6a6-3634da-31323812-c6f6842b5d9f4dc353a39425"
Output for 7.0.30
string(54) "6cd4d53b-b5f9-3634c3-3132388f-0417cd724867a87275809a66"
Output for 7.0.29
string(54) "26cc80b3-7b2d-36341c-313238bf-c7aac51745ad9616512b8e62"
Output for 7.0.28
string(54) "8f1843dc-0e5f-3634d2-31323869-f990cb2b1f89fd5251e5e617"
Output for 7.0.27
string(54) "e15d789c-2b3c-363401-3132380d-fe11304b2e1497c45b511c58"
Output for 7.0.26
string(54) "3d2232bf-b6f5-3634b2-313238b0-de4b9469a325b98ccb53aedd"
Output for 7.0.25
string(54) "5077c714-cf0b-3634cf-313238f3-fd7e233d740eda749a69f849"
Output for 7.0.24
string(54) "9a943860-32e4-363484-313238a4-3f1e9a566480c67fe15a89a2"
Output for 7.0.23
string(54) "cc8b85af-3cfe-36349a-31323898-b4ed7d716b25c0c7f7a19d7c"
Output for 7.0.22
string(54) "946dc29e-7b01-36349f-313238a1-62a4588d3130653eac5d89bd"
Output for 7.0.21
string(54) "5671f2f5-7ce6-3634ff-313238a9-4e86cede1e4ab8b258669498"
Output for 7.0.20
string(54) "0685ef4a-ce9e-363421-31323876-601b673e0248689e9b813faf"
Output for 7.0.19
string(54) "fefc2ee9-049b-3634a2-313238b8-def3c1f666350866d503ce8e"
Output for 7.0.18
string(54) "63d069dd-939a-363449-31323894-16783f6278809482c175fda7"
Output for 7.0.17
string(54) "5d8aa0a5-5144-363408-3132380b-0bbc63c1e7d3b659fbe387e3"
Output for 7.0.16
string(54) "fdc76431-f124-363470-3132384e-4647b7cfcc970add43976f69"
Output for 7.0.15
string(54) "85e19480-9065-363416-31323831-c8891524e7ed389ffe357809"
Output for 7.0.14
string(54) "2c9684bc-5298-363408-313238f2-4c6a047b81b2df90cd44e24a"
Output for 7.0.13
string(54) "1a2ca9b7-ad53-363441-313238e7-66d50535b6593fd23760fd9c"
Output for 7.0.12
string(54) "ae6ace7d-fe41-363423-3132384b-d9f84738863d9689972dfa35"
Output for 7.0.11
string(54) "ccbdace6-c7e2-36347f-31323855-5e44aef74e6ccde08862a827"
Output for 7.0.10
string(54) "645495e5-7a73-3634d5-3132381c-3cab4f2ccfec0d9c451a86b5"
Output for 7.0.9
string(54) "587b6dfc-a8c3-363435-3132380f-a9634065f37f76301b34c568"
Output for 7.0.8
string(54) "58e98a8f-1d69-3634db-3132388c-f62f258de2e4d31dbc888d3a"
Output for 7.0.7
string(54) "3b4f5349-b4db-363406-31323866-ab80e7c7f2a87a913e536110"
Output for 7.0.6
string(54) "b86cda1a-e357-36343c-31323897-2164b546f07269a0adbfbdb1"
Output for 7.0.5
string(54) "974d5dff-4dcf-3634a7-31323852-1adba0f2595e84dc23dd70d9"
Output for 7.0.4
string(54) "b59e1853-d853-363403-313238c2-0c203cc8b18398b0e03bf523"
Output for 7.0.3
string(54) "ca587589-2321-3634f0-313238b8-db44f7a4837e1d412088d3f6"
Output for 7.0.2
string(54) "ae976bc9-3d0b-36346b-31323824-e7f7cf4d4ca5f828e0928521"
Output for 7.0.1
string(54) "43aa7cbf-6274-3732be-31323889-34318cc013a60775970c7df4"
Output for 7.0.0
string(54) "d2922cf2-16ad-363477-3132382a-11198d303f0d449be5ff6ca2"
Output for 5.5.0 - 5.5.38, 5.6.0 - 5.6.40
Fatal error: Uncaught exception 'Exception' with message 'There is no suitable CSPRNG installed on your system' in /in/i0k74:162 Stack trace: #0 {main} thrown in /in/i0k74 on line 162
Process exited with code 255.
Output for 5.4.0 - 5.4.45
Fatal error: Call to undefined function RandomCompat_strlen() in /in/i0k74 on line 79
Process exited with code 255.

preferences:
73.16 ms | 676 KiB | 5 Q