PHP userland backwards compatibility layer that emulates PHP 5.5+ core functions.

⌈⌋ ⎇ branch:  upgrade.php


Artifact [4680ad86ef]

Artifact 4680ad86ef2b9d150b75ec3abc8985114dc204d3:

  • File doc/tests1all/str_shuffle.phpt — part of check-in [51e3884900] at 2010-06-22 17:03:27 on branch trunk — upgradephp-15 (user: mario size: 151)

--TEST--
str_shuffle
--FILE--
str_shuffle("ABCDEF") == "<?php

srand(17);
echo str_shuffle("ABCDEF");

?>"
--EXPECT--
str_shuffle("ABCDEF") == "FBCEAD"