opcache.file_cache=/tmp
--FILE--
<?php
-
-if (PHP_VERSION_ID >= 70000) {
- echo "Done";
- return;
-}
-
if (!is_callable('random_bytes')) {
try {
} catch (com_exception $e) {
throw new Exception(
'There is no suitable CSPRNG installed on your system'
);
- return '';
}
}
+echo 'Done';
--EXPECT--
Done
Testing xpath() with invalid XML
--SKIPIF--
<?php
-if (PHP_MAJOR_VERSION < 7) die("skip this test is for PHP 7+ only");
if (PHP_INT_SIZE != 4) die("skip this test is for 32bit platforms only");
?>
--FILE--
--SKIPIF--
<?php
if (!extension_loaded('simplexml')) die('skip simplexml extension not loaded');
-if (PHP_MAJOR_VERSION < 7) die("skip this test is for PHP 7+ only");
if (PHP_INT_SIZE != 8) die("skip this test is for 64bit platforms only");
?>
--FILE--