f5569e4755
I think this dir shouldn't have anything non-necessary in the root.
19 linhas
335 B
PHP
19 linhas
335 B
PHP
<?php
|
|
|
|
class cls {
|
|
public $pub;
|
|
private $pri;
|
|
public function __construct() {
|
|
$this->pub = 11;
|
|
$this->pri = 12;
|
|
}
|
|
public function meth($x) {
|
|
$a = $this->pub.':'.$this->pri;
|
|
$b = $this->pub.':'.$this->pri;
|
|
$c = $this->pub.':'.$this->pri;
|
|
return $a.'-'.$b.'-'.$c;
|
|
}
|
|
}
|
|
|
|
error_log('eval_t.php loaded');
|