我聲明有1個對象的類。調用方法與該對象是好的,但調用方法是不是一個對象導致沒有輸出..這裏它演示 如果它不是bug,那麼爲什麼沒有輸出
// defining simple class class Person{ function say_hello($name='world') { echo "hello {$name}";我在WebMatrix的平臺中使用PHP 5.2.17版本在IIS快遞。} } $instant1 = new Person(); $object2 = new Person(); echo get_class($object2); ?> <br/> <?php if(is_a($object2,'Person')) { //remeber to pass arguments echo "This object or instant is in that class"; } else { echo "No dude :("; } ?> <?php $instant1->say_hello('Paritosh'); echo " <br/>";
$ ob-> say_hello(); //沒有錯誤沒有輸出,即使沒有名稱爲$ ob的對象,下面的代碼沒有運行 //是錯誤還是任何概念?
echo「No output」;
$ object2-> say_hello();?>
更改PHP錯誤級別來顯示錯誤,警告 –
@shakti:這不是一個問題。我的問題是爲什麼沒有輸出? – Inactive