×
Create a new article
Write your page title here:
We currently have 3,189 articles on s23. Type your article name above or create one of the articles listed here!



    s23
    3,189Articles
    in:

    Dollar: Difference between revisions

    Content added Content deleted
    imported>mutante
    m (New page: <HighlightSyntax> <?php # Dollarwert in Euro, von xe.com -- mutante function dollar_euro() { $buffer=file_get_contents("http://www.xe.com/"); $pieces=explode("1 EUR =",$buffer); ...)
     
    imported>mutante
    m (Der Dollar kostet heute 1.42784 Euro.)
     
    Line 12: Line 12:
    ?>
    ?>
    </HighlightSyntax>
    </HighlightSyntax>

    edgar@cgn:~$ php dollar.php
    Der Dollar kostet heute 1.42784 Euro.

    [[Category:PHP]]
    [[Category:PHP]]

    Latest revision as of 20:21, 15 September 2008

    <HighlightSyntax> <?php

    1. Dollarwert in Euro, von xe.com -- mutante

    function dollar_euro() { $buffer=file_get_contents("http://www.xe.com/"); $pieces=explode("1 EUR =",$buffer);

    $pieces=explode("",$pieces[1]); $pieces=explode("",$pieces[1]); return $pieces[0]; } echo "Der Dollar kostet heute ".dollar_euro()." Euro.\n"; ?> </HighlightSyntax> edgar@cgn:~$ php dollar.php Der Dollar kostet heute 1.42784 Euro.

    Cookies help us deliver our services. By using our services, you agree to our use of cookies.
    Cookies help us deliver our services. By using our services, you agree to our use of cookies.