
Recently I discovered, that you cannot use exit and die as class methodes. For example
<?php
class test{
public function exit(){
}
}
?>
You well get a parser error. Well exit and die are php functions, but waht about time()?
<?php
class test2{
public function time(){
}
}
?>
Has no parser error.
Recent comments
1 year 18 weeks ago
1 year 27 weeks ago
1 year 31 weeks ago
2 years 2 weeks ago
2 years 6 weeks ago
2 years 6 weeks ago
2 years 13 weeks ago
2 years 13 weeks ago
2 years 13 weeks ago
2 years 14 weeks ago