wc_sanitize_phone_number( string $phone )

Sanitize phone number.


Description Description

Allows only numbers and "+" (plus sign).


Parameters Parameters

$phone

(Required) Phone number.


Top ↑

Return Return

(string)


Top ↑

Source Source

File: includes/wc-formatting-functions.php

function wc_sanitize_phone_number( $phone ) {
	return preg_replace( '/[^\d+]/', '', $phone );
}

Top ↑

Changelog Changelog

Changelog
Version Description
3.6.0 Introduced.


Top ↑

User Contributed Notes User Contributed Notes

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