[PHP-users 25812] class内でエラー
Tybalt of Capulet
ice-man @ tomato.ne.jp
2005年 6月 13日 (月) 16:43:30 JST
神崎と申します。
下記のようなクラスを2パターン作ったのですが、
パターン -2-では問題ないのに、パターン -1-ではエラーになります。
エラーメッセージは下記です。
Parse error: parse error, unexpected '(', expecting ',' or ';' in /xxx/test.php on line 3
基本的なことで申し訳ありませんがこれは何がいけないのでしょうか?
パターン -1-
<?php
class A {
var $nday = date("Y-m-d");
function test() {
// 中身
}
}
?>
パターン -2-
<?php
class A {
var $nday;
function test() {
$this->nday = date("Y-m-d");
// 中身
}
}
?>
PHP-users メーリングリストの案内