Question: Which of the following statement is the default exception constructor?
A
B
C
thrown Exception()
B
throw new Exception()
C
throw new $Exception()
Note: Not available
<?php $username="jasoN"; if(ereg"([^a-z])",$username)) echo "Username must be all lowercase!"; else echo "Username is all lowercase!"; ?>