Alert: This function’s access is marked private. This means it is not intended for use by plugin or theme developers, only in other core functions. It is listed here for completeness.
Automator_Send_Webhook::binary_to_text( $binary )
Convert binary back to text
Contents
Parameters Parameters
- $binary
-
(Required)
Return Return
(string|null)
Source Source
File: src/core/lib/webhooks/class-automator-send-webhook.php
private function binary_to_text( $binary ) { $binaries = explode( ' ', $binary ); $string = null; foreach ( $binaries as $binary ) { $string .= pack( apply_filters( 'automator_send_webhook_binary_to_string_format', 'H*', $string ), dechex( bindec( $binary ) ) ); //phpcs:ignore PHPCompatibility.ParameterValues.NewPackFormat.NewFormatFound } return $string; }
Expand full source code Collapse full source code View on Github