icingaweb2-module-director/library/Director/Util.php

24 lines
394 B
PHP
Raw Normal View History

2015-06-23 14:37:23 +02:00
<?php
namespace Icinga\Module\Director;
use Zend_Db_Expr;
class Util
{
public static function pgBinEscape($binary)
{
return new Zend_Db_Expr("'" . pg_escape_bytea($binary) . "'");
}
public static function hex2binary($bin)
{
return pack('H*', $bin);
}
public static function binary2hex($hex)
{
return end(unpack('H*', $hex));
}
}