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 | |
| /* | |
| * File: CurrencyConverter.php | |
| * Author: Simon Jarvis | |
| * Copyright: 2005 Simon Jarvis | |
| * Date: 10/12/05 | |
| * Link: http://www.white-hat-web-design.co.uk/articles/php-currency-conversion.php | |
| * | |
| * This program is free software; you can redistribute it and/or |
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 | |
| $currency_symbols = array( | |
| 'AED' => 'د.إ', // ? | |
| 'AFN' => 'Af', | |
| 'ALL' => 'Lek', | |
| 'AMD' => '', | |
| 'ANG' => 'ƒ', | |
| 'AOA' => 'Kz', // ? | |
| 'ARS' => '$', | |
| 'AUD' => '$', |
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 | |
| /** | |
| * PDO SINGLETON CLASS | |
| * | |
| * @author Tony Landis | |
| * @link http://www.tonylandis.com | |
| * @license Use how you like it, just please don't remove or alter this PHPDoc | |
| */ | |
| class sdb |
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 | |
| namespace ACompany\AnAppName\Dao\PdoImpl; | |
| /** | |
| * PDOConnection is a singleton implementation. | |
| * getConnection() returning an instance of PDO connection. | |
| * | |
| * <code> | |
| * Example usage: |