function ARC_api_helper::get_hash_int_id in Taxonomy import/export via XML 6.2
Same name and namespace in other branches
- 5.2 arc/ARC_api_helper.php \ARC_api_helper::get_hash_int_id()
- 5 arc/ARC_api_helper.php \ARC_api_helper::get_hash_int_id()
- 6 arc/ARC_api_helper.php \ARC_api_helper::get_hash_int_id()
File
- arc/
ARC_api_helper.php, line 143
Class
Code
function get_hash_int_id($val = "", $sql = false) {
return $sql ? "CONV('" . substr(md5($val), 0, 15) . "', 16, 10)" : substr(md5($val), 0, 15);
}