PHP

3

Information will be added soon.

Share
  • Daniel
    2011-06-02 @ 21:56

    @Sharecash

    seems like this to me:

    $content = 'Link';
    //create some arbitrary HTML for the example

    $dom = new DOMDocument();
    //creates special DOM object

    $dom->loadHTML($content);
    //generates the DOM for the document $content

    $xpath = new DomXPath($dom);
    //creates [...]

  • Sharecash Bypass
    2011-04-14 @ 18:00

    Would love it if someone would further explain this to me?

  • bernd schimanski
    2010-12-23 @ 04:48

    Danke für das tolle Plugin. Eine wundervolle Idee.
    Ich wünsche Dir weiterhin kreative Ideen und maximale Erfolge, bei allem, was Du anpackst.

1

Wordpress rewrite their URLs in a beautiful way which makes them very user friendly. I’ve created a function that converts a string to be user friendly, the Wordpress way.

Share
  • mackan
    2012-04-05 @ 09:37

    Tack, detta var precis det jag letade efter

Get XML data with Xpath & Curl

2010-01-16 @ 14:58

This example is downloading data from an XML file from an RSS feed by using XPath. The XML file is downloaded with Curl, so make sure it is enabled on the server that runs the script. The titles are printed out, just to show that it works.

Share