Archive | /wp-includes/functions.php RSS feed for this section

debug_fopen

Open the file handle for debugging.This function is used for XMLRPC feature, but it is general purpose enough to be used in anywhere.

776

Continue reading

debug_fclose

Close the debugging file handle.Technically, this can be used to close any file handle when the global $debug is set to 1 or true.

774

Continue reading

dead_db

Load custom DB error or display WordPress DB error.If a file exists in the wp-content directory named db-error.php, then it will be loaded instead of displaying the WordPress DB error. If it is not found, then the WordPress DB error will be displayed instead.

770

Continue reading

date_i18n

Retrieve the date in localized format, based on timestamp.If the locale specifies the locale month and weekday, then the locale will take over the format for the date. If it isn’t, then the date format string will be used instead.

762

Continue reading

current_time

Retrieve the current time based on specified type.The ‘mysql’ type will return the time in the format for MySQL DATETIME field. The ‘timestamp’ type will return the current timestamp.

754

Continue reading