This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
// Copyright 1012 Gerald Schittenhelm | |
// http://schittenhelm.at | |
// MIT License | |
class VatID { | |
protected $findExp = '@vatResponseFormTable[^>]+>(.*?)</table>@s'; | |
protected $vatId = ""; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
// Copyright 1012 Gerald Schittenhelm | |
// http://schittenhelm.at | |
// MIT License | |
function timecrypt($string,$key,$lifetime=3600) { | |
$key = md5($key); | |
$result = ''; | |
for($i=0; $i<strlen ($string); $i++) { |