Skip to content

Commit

Permalink
DWF : bdd::json_decode()
Browse files Browse the repository at this point in the history
  • Loading branch information
legagneur-matthieu committed Feb 20, 2018
1 parent 2338679 commit 6d93acf
Showing 1 changed file with 12 additions and 2 deletions.
14 changes: 12 additions & 2 deletions dwf/class/bdd.class.php
Original file line number Diff line number Diff line change
Expand Up @@ -6,15 +6,15 @@
*
* @author LEGAGNEUR Matthieu <[email protected]>
*/
class bdd extends singleton{
class bdd extends singleton {

/**
* Instance de PDO
*
* @var PDO Instance de PDO
*/
private $_pdo;

/**
* Tableau de débogage
* @var array Tableau de débogage
Expand Down Expand Up @@ -92,6 +92,16 @@ public function verif_email($email) {
return boolval(filter_var($email, FILTER_VALIDATE_EMAIL));
}

/**
* Convertis un json provenant de la base de donné en tableau
*
* @param string $json json provenant de la base de donné
* @return array Tableau de donnée
*/
public function json_decode($json) {
return json_decode(strtr($json, ["&quot;" => '"']), true);
}

/**
* Exécute une requête type update, insert ou delete.
* Pour plus de securité: voir la méthode protect_var.
Expand Down

0 comments on commit 6d93acf

Please sign in to comment.