Skip to content

Instantly share code, notes, and snippets.

View TerranRich's full-sized avatar

Richard Brum TerranRich

View GitHub Profile
@TerranRich
TerranRich / PDO_Cheatsheet.php
Last active April 23, 2024 17:18 — forked from hanvari/PDO_Cheatsheet.php
PHP PDO Cheatsheet
<?php
/**
* Reference:
* http://code.tutsplus.com/tutorials/why-you-should-be-using-phps-pdo-for-database-access--net-12059
*/
function connect() {
/**
* No matter what error mode you set,
@cesarmiquel
cesarmiquel / drupal-8-cheatsheet.md
Last active May 3, 2024 14:26
Drupal 8/9/10 Cheatsheet

Drupal 8 Cheatsheet

Files, Images and Media

// Load file object
$file = File::load($fid);

// Get uri (public://foo/bar/baz.png)
$uri = $file-&gt;getFileUri();