Yoast\WP\SEO\Helpers

Short_Link_Helper::get_php_version()privateYoast 1.0

Gets the current site's PHP version, without the extra info.

Метод класса: Short_Link_Helper{}

Хуков нет.

Возвращает

Строку. The PHP version.

Использование

// private - только в коде основоного (родительского) класса
$result = $this->get_php_version();

Код Short_Link_Helper::get_php_version() Yoast 22.4

private function get_php_version() {
	$version = \explode( '.', \PHP_VERSION );

	return (int) $version[0] . '.' . (int) $version[1];
}