You appear to be a bot. Output may be restricted
Description
Find the MD5 hash for the current source
Usage
$string = oiksc_parsed_source::query_md5_hash( $source );
Parameters
- $source
- ( array ) required – array of current source
Returns
string MD5 hash of current sourceSource
File name: oik-shortcodes/classes/class-oiksc-parsed-source.phpLines:
1 to 5 of 5
function query_md5_hash( $source ) { $source_string = implode( "", $source ); $md5_hash = md5( $source_string ); return( $md5_hash ); }View on GitHub