This file contains hidden or 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 | |
/** | |
* | |
* Extract all email address from any text content removing duplicated | |
* Return string formated as: TEXT, SQL or CSV | |
* @author Alexander Garzon | |
* | |
*/ | |
class emailXtractor { |
This file contains hidden or 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
array ( | |
'ALL' => 'Albania Lek', | |
'AFN' => 'Afghanistan Afghani', | |
'ARS' => 'Argentina Peso', | |
'AWG' => 'Aruba Guilder', | |
'AUD' => 'Australia Dollar', | |
'AZN' => 'Azerbaijan New Manat', | |
'BSD' => 'Bahamas Dollar', | |
'BBD' => 'Barbados Dollar', | |
'BDT' => 'Bangladeshi taka', |
This file contains hidden or 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
<select id="currencyList"> | |
<option value="USD" selected="selected" label="US dollar">USD</option> | |
<option value="EUR" label="Euro">EUR</option> | |
<option value="JPY" label="Japanese yen">JPY</option> | |
<option value="GBP" label="Pound sterling">GBP</option> | |
<option disabled>──────────</option> | |
<option value="AED" label="United Arab Emirates dirham">AED</option> | |
<option value="AFN" label="Afghan afghani">AFN</option> | |
<option value="ALL" label="Albanian lek">ALL</option> | |
<option value="AMD" label="Armenian dram">AMD</option> |