PHP – dns_get_mx() Function
The PHP dns_get_mx() function is an alias of the getmxrr() function.
The PHP do keyword creates a loop which always runs at least once. It is used together with the while keyword to create a do…while loop.
The PHP dns_get_record() function gets the DNS resource records associated with the specified hostname.
The PHP easter_date() function returns the Unix timestamp for midnight on Easter of the current year, or a given year if specified.
The PHP easter_days() function returns the number of days after March 21, that the Easter Day is in the current year, or a given year if specified.
The PHP echo keyword is used to output text, and can output multiple strings separated by commas.
The PHP else keyword specifies a block of code which should run when the condition of an if statement is not met.
The PHP elseif keyword tests a new condition if the condition of a previous if or elseif statement was not met.
The PHP empty keyword acts as a function which returns true if a variable does not exist, or if its value is considered empty.
The PHP end() function moves the internal pointer to the last element in the array and outputs that element.
The PHP enddeclare keyword is used to close a declare block which was started using the declare syntax.
The PHP endfor keyword is used to close the code block of a for loop which was started using the for syntax.
The PHP endforeach keyword is used to close the code block of a foreach loop which was started using the foreach syntax.
The PHP endif keyword is used to mark the end of an if conditional which was started with the if, or elseif syntax.
The PHP endswitch keyword is used to mark the end of a switch conditional which was started with the switch syntax.
The PHP error_get_last() function returns the last error that occurred (as an associative array).
The PHP error_log() function sends an error message to a log, to a file, or to a mail account.
The PHP error_reporting() function specifies which errors are reported.
The PHP eval() function evaluates a string as PHP code (must be valid PHP code, not contain a return statement, and must end with semicolon).
The PHP Exception() constructor is used to create an Exception object and set some of its properties.