Skip to content

Instantly share code, notes, and snippets.

@neojou
Created April 19, 2014 07:42
Show Gist options
  • Save neojou/11077110 to your computer and use it in GitHub Desktop.
Save neojou/11077110 to your computer and use it in GitHub Desktop.
PHP function test
<?php
function showName()
{
return 'PHP';
}
header("Content-Type:text/html; charset=utf-8");
echo 'The script language is ' . showName() . '!';
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment