wpseek.com
Eine auf WordPress spezialiserte Suchmaschine für Entwickler und Theme-Autoren



_cleanup_header_comment › WordPress Function

Seit2.8.0
Veraltetn/v
_cleanup_header_comment ( $str )
Zugriff:
  • private
Parameter:
  • (string) $str Header comment to clean up.
    Erforderlich: Ja
Siehe:
Gibt zurück:
  • (string)
Definiert in:
Codex:

Strips close comment and close php tags from file headers used by WP.



Quellcode

function _cleanup_header_comment( $str ) {
	return trim( preg_replace( '/\s*(?:\*\/|\?>).*/', '', $str ) );
}