Skip to content

Instantly share code, notes, and snippets.

<script src="//code.jquery.com/jquery-3.0.0.slim.min.js"></script>
<script>
$(document).ready(function () {
$('.gist-meta').hide();
$('.gist-file').css('border-bottom', 'none');
@joe0402
joe0402 / Test.php
Last active October 19, 2018 12:59
<?php
function Hello($str) {
echo "$str World";
}
for($i=0; $i<10; $i++) {
Hello("Hello");
}
echo "Ende"