Skip to content

Instantly share code, notes, and snippets.

@laiso
Created January 21, 2010 11:40
Show Gist options
  • Save laiso/282741 to your computer and use it in GitHub Desktop.
Save laiso/282741 to your computer and use it in GitHub Desktop.
<?php
$someValue = "Hello";
$somevalue = "World";
function helloworld($say){
echo $say.PHP_EOL;
}
// Fatal error: Cannot redeclare helloWorld()
/*
function helloWorld(){
echo $hello.PHP_EOL;
}
*/
helloWorld($someValue);//Hello
helloWorld($somevalue);//World
helloworld($someValue);//Hello
helloworld($somevalue);//World
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment