Skip to content

Instantly share code, notes, and snippets.

@szepeviktor
Created February 23, 2021 16:43
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save szepeviktor/e1e724a936fe5f8ec117536ef9231fa6 to your computer and use it in GitHub Desktop.
Save szepeviktor/e1e724a936fe5f8ec117536ef9231fa6 to your computer and use it in GitHub Desktop.
Display all PHP Sodium constants
<?php
foreach(get_defined_constants() as $name => $value) {
if (substr($name, 0, 7) !== 'SODIUM_') continue;
printf('%s = %s%s', $name, $value, "\n");
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment