Skip to content

Instantly share code, notes, and snippets.

@pelagisk
Created August 8, 2012 22:50
Show Gist options
  • Select an option

  • Save pelagisk/3299539 to your computer and use it in GitHub Desktop.

Select an option

Save pelagisk/3299539 to your computer and use it in GitHub Desktop.
Exempel 1 PHP
<?php
function test($argument1, $argument2) {
echo $argument1 . $argument2;
}
/* kalla funktionen */
test('hej', 'då');
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment