🎉
Who uses forums anymore?
This section allows you to view all posts made by this member. Note that you can only see posts made in areas you currently have access to.
Show posts Menu[00:52:48] [william@enterprise ~/Documents/Git/GitHub/javaop2]$ jruby --ng -S rake test
Loaded suite /Users/william/bin/jruby-1.6.3/bin/rake
Started
Testing D2DV.. local: 573e1c0c, remote: 573e1c0c
Testing D2XP.. local: 7264e3da, remote: 7264e3da
Testing STAR.. local: -5bab8e79, remote: -5bab8e79
Testing W2BN.. local: -3122f25d, remote: -3122f25d
Testing WAR3.. local: 32a227d6, remote: 32a227d6
Testing W3XP.. local: 32a227d6, remote: 32a227d6
.....
Finished in 1.061 seconds.
5 tests, 15 assertions, 0 failures, 0 errors
<?php if(!isset($_POST['array'])) { printf('<form act=' . $_SERVER['PHP_SELF'] . ' method="POST">'); printf('<textarea name="array" cols="100" rows="25"></textarea><br />'); printf('<input type="submit" name="submit" />'); printf('</form>'); } else { $data = str_replace(" ", "", $_POST['array']); preg_match_all("(\[.*\],)", $data, $data); $data = explode("],[", implode("", $data[0])); printf("<pre>"); for ($i = 0; $i < count($data); $i += 4) { printf("[%s],\t", $data[$i + 0]); printf("[%s],\t", $data[$i + 1]); printf("[%s],\t", $data[$i + 2]); printf("[%s]\n", $data[$i + 3]); } printf("</pre>"); } ?>
Page created in 0.242 seconds with 16 queries.