Skip to content

Instantly share code, notes, and snippets.

@gibbs
gibbs / drupal_current.php
Created April 10, 2013 12:55
Get the installed version of Drupal
<?php
/**
* Get Drupal 7 current version
*/
$version = NULL;
$version_file = 'includes/bootstrap.inc';
// Path to installation
$install_path = '/home/user/website.com/public_html';
@gibbs
gibbs / drupal_latest.php
Created April 10, 2013 12:46
Get latest Drupal version
<?php
/**
* Get Drupal latest version
*/
$latest = NULL;
$url = 'http://updates.drupal.org/release-history/drupal/7.x';
$context = stream_context_create(array(
'http' => array(
@gibbs
gibbs / currency_symbols.php
Last active April 3, 2024 10:09
An array of currency symbols as HTML entities
<?php
$currency_symbols = array(
'AED' => '&#1583;.&#1573;', // ?
'AFN' => '&#65;&#102;',
'ALL' => '&#76;&#101;&#107;',
'AMD' => '',
'ANG' => '&#402;',
'AOA' => '&#75;&#122;', // ?
'ARS' => '&#36;',
'AUD' => '&#36;',