ActionScheduler_DBStore::hash_args()
Generate a hash from json_encoded $args using MD5 as this isn't for security.
Метод класса: ActionScheduler_DBStore{}
Хуков нет.
Возвращает
Строку
.
Использование
// protected - в коде основоного (родительского) или дочернего класса $result = $this->hash_args( $args );
- $args(строка) (обязательный)
- JSON encoded action args.
Код ActionScheduler_DBStore::hash_args() ActionScheduler DBStore::hash args WC 9.3.1
protected function hash_args( $args ) { return md5( $args ); }