WP_Filesystem_SSH2::touch()publicWP 2.7.0

Sets the access and modification times of a file.

Note: Not implemented.

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

Хуков нет.

Возвращает

null. Ничего (null).

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

$WP_Filesystem_SSH2 = new WP_Filesystem_SSH2();
$WP_Filesystem_SSH2->touch( $file, $time, $atime );
$file(строка) (обязательный)
Path to file.
$time(int)
Modified time to set for file.
$atime(int)
Access time to set for file.

Список изменений

С версии 2.7.0 Введена.

Код WP_Filesystem_SSH2::touch() WP 6.4.3

public function touch( $file, $time = 0, $atime = 0 ) {
	// Not implemented.
}