wpseek.com
				A WordPress-centric search engine for devs and theme authors
			extract_from_markers › WordPress Function
Since1.5.0
Deprecatedn/a
› extract_from_markers ( $filename, $marker )
| Parameters: (2) | 
 | 
| Returns: | 
 | 
| Defined at: | 
 | 
| Codex: | 
Extracts strings from between the BEGIN and END markers in the .htaccess file.
Related Functions: insert_with_markers, get_date_from_gmt, get_gmt_from_date, wp_extract_urls, get_bookmarks
	Source
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;
}