标签: php function
private function test($t) { var_dump($t); } public function try() { $this->test('<test>hello'); }
当调用try()时,输出:hello而不是<test>hello为什么?
<test>hello
我使用PHP 5.5。