<!DOCTYPE html PUBLIC
"-//W3C//DTD XHTML 1.0 Strict//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html>
<head>
<title>Listing 6.3 Declaring a Function That Requires Arguments</title>
</head>
<body>
<div>
<?php
function printBR( $txt ) {
print ("$txt<br />\n");
}
printBR("This is a line");
printBR("This is a new line");
printBR("This is yet another line");
?>
</div>
</body>
</html>
Eredmény:
This is a line
This is a new line
This is yet another line
This is a new line
This is yet another line
Nincsenek megjegyzések:
Megjegyzés küldése