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



extract_from_markers › WordPress Function

Seit1.5.0
Veraltetn/v
extract_from_markers ( $filename, $marker )
Parameter: (2)
  • (string) $filename Filename to extract the strings from.
    Erforderlich: Ja
  • (string) $marker The marker to extract the strings from.
    Erforderlich: Ja
Gibt zurück:
  • (string[]) An array of strings from a file (.htaccess) from between BEGIN and END markers.
Definiert in:
Codex:

Extracts strings from between the BEGIN and END markers in the .htaccess file.



Quellcode

function extract_from_markers( $filename, $marker ) {
	$result = array();

	if ( ! file_exists( $filename ) ) {
		return $result;
	}

	$markerdata = explode( "\n", implode( '', file( $filename ) ) );

	$state = false;

	foreach ( $markerdata as $markerline ) {
		if ( str_contains( $markerline, '# END ' . $marker ) ) {
			$state = false;
		}

		if ( $state ) {
			if ( str_starts_with( $markerline, '#' ) ) {
				continue;
			}

			$result[] = $markerline;
		}

		if ( str_contains( $markerline, '# BEGIN ' . $marker ) ) {
			$state = true;
		}
	}

	return $result;
}