「PHP」関数を書くサンプルコード

サンプルコード
<?php
function writeName()
{
echo “This is a test data";
}

echo “My name is “;
writeName();
?>

結果
My name is This is a test data

Software

Posted by arkgame