<?php class Test { public $property; } $test = new Test(); $test->property = "1"; var_dump(boolval($test->property)); $test->property = "0"; var_dump(boolval($test->property)); $test->property = 0; var_dump(boolval($test->property)); $test->property = true; var_dump(boolval($test->property));
You have javascript disabled. You will not be able to edit any code.