WP_Importer::cmpr_strlen( string $a, string $b )

Sort by strlen, longest string first


Description Description


Parameters Parameters

$a

(string) (Required)

$b

(string) (Required)


Top ↑

Return Return

(int)


Top ↑

Source Source

File: wp-admin/includes/class-wp-importer.php

	public function cmpr_strlen( $a, $b ) {
		return strlen( $b ) - strlen( $a );
	}

Top ↑

User Contributed Notes User Contributed Notes

You must log in before being able to contribute a note or feedback.