日記
『自分で作るblogツール(PHP編)』修正リストEdit

このエントリーでは、『自分で作るblogツール(PHP編)』の誤植等の修正情報を掲載します。

ページ数 内容
p.89 show_template('htmlheader.tmpl', array('title' => 'HandMadeBlog'));

show_template('htmlheader.tmpl', array('title' => $entry_data['title']));
p.105 $line = fgets($fp);

$line = fgets($fp);
if (trim($line) == '') {continue;}
p.174 $description = strip_tags(render_entry_body($item); // HTML化とタグ削除

$description = strip_tags(render_entry_body($item)); // HTML化とタグ削除
p.72 (2005/4/29追加) return $fields[$name].'に不正な文字が使用されています。';

return $fields[$header].'に不正な文字が使用されています。';

『自分で作るblogツール(PHP編)』サポートエントリーに戻る

Published At2005-03-19 00:00Updated At2005-03-19 00:00