<html>
<body>
<?php
function writeMyName($fname)
{
echo $fname . "jeremy.<br />";
}
echo "My name is ";
writeMyName("lin");
echo "My name is ";
writeMyName("kobe");
echo "My name is ";
writeMyName("John");
?>
</body>
</html>
<body>
<?php
function writeMyName($fname)
{
echo $fname . "jeremy.<br />";
}
echo "My name is ";
writeMyName("lin");
echo "My name is ";
writeMyName("kobe");
echo "My name is ";
writeMyName("John");
?>
</body>
</html>
3664

被折叠的 条评论
为什么被折叠?



