wp_exif_frac2dec( string $str )

Convert a fraction string to a decimal.


Parameters

$str

(string) (Required)


Return

(int|float)


Source

File: wp-admin/includes/image.php

function wp_exif_frac2dec($str) {
	@list( $n, $d ) = explode( '/', $str );
	if ( !empty($d) )
		return $n / $d;
	return $str;
}


Changelog

Changelog
Version Description
WP-2.5.0 Introduced.