我在理解OOP中的範圍時遇到了一些麻煩。我想要的是$ foo-> test_item()打印 「的TestString」 ......現在它只是失敗:PHP基礎知識:無法處理類內的範圍
警告:缺少參數1測試:: test_item()
謝謝很多!
<?php
class testing {
public $vari = "teststring";
function test_item($vari){ //$this->vari doesn't work either
print $vari;
}
}
$foo = new testing();
$foo->test_item();
?>
@Georgo內的變量非常感謝您回答......我知道,這不是那麼聰明。我想用這個來測試一下... – Jurudocs 2012-03-05 13:53:15