PHP試験 上級

PHP 試験 上級 関数_001

<html><head> <meta charset="UTF-8"> <style> .img{} .img > img{width: 50%; height: auto;} </style></head> <body> </body></html>

PHP 試験 上級 メモ 配列_001

PHP 関数メモ

function img($file, $alt) { $s = '<p class="img"><img'; $s .= ' src="' . $file . '"'; $s .= 'alt="' . $alt . '"'; $s .= '/></p>'; return $s;} function top_link() { echo '<a href="index.html">TOP PAGE</a>'; } top_link(); echo '<br>';print_footer();echo '<br>';make_html(); ?>