ParagonIE_Sodium_Core32_Int32::__toString

Advertisement

Syntax Syntax

ParagonIE_Sodium_Core32_Int32::__toString()

Return Return

(string)

Source Source

File: wp-includes/sodium_compat/src/Core32/Int32.php

    public function __toString()
    {
        try {
            return $this->toString();
        } catch (TypeError $ex) {
            // PHP engine can't handle exceptions from __toString()
            return '';
        }
    }

Advertisement

Advertisement

Leave a Reply