WC_Data_Store_WP::string_to_timestamp()
Converts a WP post date string into a timestamp.
Метод класса: WC_Data_Store_WP{}
Хуков нет.
Возвращает
int|null
. The date string converted to a timestamp or null.
Использование
// protected - в коде основоного (родительского) или дочернего класса $result = $this->string_to_timestamp( $time_string );
- $time_string(строка) (обязательный)
- The WP post date string.
Список изменений
С версии 4.8.0 | Введена. |
Код WC_Data_Store_WP::string_to_timestamp() WC Data Store WP::string to timestamp WC 9.2.3
protected function string_to_timestamp( $time_string ) { return '0000-00-00 00:00:00' !== $time_string ? wc_string_to_timestamp( $time_string ) : null; }