PHP, DOMdocument and xPath to spar an xml file

Code sur écran d'ordinateur

When we have to process a very large XML, it is unfortunately not possible to use SimpleXML. Fortunately for this, we can use DOMDocument. To do this, just load the desired file and initialize xpath on it with DOMXPath. $document – new DOMDocument(); $document-load ($file); $xpath – new DOMXPath ($document); If the XML in question … Read more

PHP and simpleXML

Code sur écran d'ordinateur

When you want to process an XML file in PHP, there are two possibilities: either we use SimpleXML or we go through DOMDocument. In this article I will deal more specifically with SimpleXML. To load a file, just use the simplexml_load_file method $xml – simplexml_load_file ($file); By doing so, you get a SimpleXMLElement. If the … Read more

Javascript – How to add jQuery from a Javascript file

Lignes de code HTML

When you create a javascript file, you may want to make sure you can use jQuery. To avoid having it twice and maybe introducing incompatibilities, just add this at the beginning of the javascript file: if (typeof jQuery ‘undefined’) var script – document.createElement (‘script’); script.src – ‘http://ajax.googleapis.com/ajax/libs/jquery/1.10.2/jquery.min.js’; script.type – ‘text/javascript’; document.getElementsByTagName (‘head’)[0].appendChild (script); }

PHP – CodeIgniter how to create and use a model

MacBook avec code sur un bureau

Looking at the structure of CodeIgniter we see that there is a folder called application/models. It is in this one that we will create our model. For a model to be usable as such, it must extend CI_Model. class ScoresModel extends CI_Model function __construct Call the Model constructor parent::__construct(); $this-load-database(; } function getAllScores() $query – … Read more

PHP – Create a REST API with CodeIgniter

Code sur écran d'ordinateur

Introduction CodeIgniter is a fairly simple framework for PHP. Compared to its big brothers such as Zend or Yii, it has the advantage of being small and very simple to get to grips with. For me, currently the best for small projects such as creating a REST-API. Installation To start, go download the official version … Read more

WordPress – how to retrieve the ID from a given meta

Code sur écran d'ordinateur

With WordPress, it is common to use the get_post_meta($post, $meta_key) method in order to retrieve the value of a given meta. However for the ID, there is no ready-made method. The best solution I’ve found so far: $mid – $wpdb-get_var ($wpdb–prepare ("SELECT meta_id FROM $wpdb–postmeta WHERE post_id – %d AND meta_key – %s," $post, $meta-key);