getid3_lyrics3::IntString2Bool

Advertisement

Syntax Syntax

getid3_lyrics3::IntString2Bool( string $char )

Parameters Parameters

$char

(Required)

Return Return

(bool|null)

Source Source

File: wp-includes/ID3/module.tag.lyrics3.php

	 */
	public function IntString2Bool($char) {
		if ($char == '1') {
			return true;
		} elseif ($char == '0') {
			return false;
		}
		return null;

Advertisement

Advertisement

Leave a Reply