Skip to content

Instantly share code, notes, and snippets.

@shigemk2
Created February 23, 2013 16:17
Show Gist options
  • Save shigemk2/5020296 to your computer and use it in GitHub Desktop.
Save shigemk2/5020296 to your computer and use it in GitHub Desktop.
PHPの関数は大文字 小文字の区別なく呼び出してしまうという話
<?php
function hoge() {
echo 'hoge' . PHP_EOL;
}
hoge();
HOGE();
hoGe();
hoGE();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment