welche Code ist hier Correct ?

Einklappen
Dieses Thema ist geschlossen.
X
X
 
  • Filter
  • Zeit
  • Anzeigen
Alles löschen
neue Beiträge

  • welche Code ist hier Correct ?

    ich habe eine Kleine Test erhalten die ich lösen muß. Die sind bestimmt für euch sehr leicht zu lösen. Da ich aber nicht sosehr mit PHP zutun habe fallen die mir schon schwer. Würdet ihr mir da bissli Hilfe leisten und erklären wieso und weshalb so ist ?

    Einige von diesen Fragen :

    1.There’s error in this line:

    $$fp = @@fsockopen($host, 80, $errno, $errstr, $this->CONNECT_TIMEOUT);
    What is the correct code?
    a) $fp = @@fsockopen($host, 80, $errno, $errstr, $this->CONNECT_TIMEOUT);
    b) $$fp = @fsockopen($host, 80, $errno, $errstr, $this->CONNECT_TIMEOUT);
    c) $$fp = fsockopen($host, 80, $errno, $errstr, $this->$CONNECT_TIMEOUT);



    2. Following code doesn’t work in PHP4. Fix the error please.

    <?php
    class CAcApp {
    var $todays_date = date("Y-m-d");
    var $name = "John";
    var $owner = 'Fred ' . 'Jones';

    function CAcApp() {
    }

    function SomeOutput() {
    echo "I am CAcApp class and today is ".$todays_date.". My name is $name and my owner is $owner";
    }
    }
    ?>



    3 The variable $SUMME contains the value of an input field passed as POST variable and it’s value is “2048,56”. It is verified against the German regional settings. What transformation of $SUMME should be done to save its value into English mySQL DB table without losing the decimal part?

    a) $SUMME = strtr($SUMME,”,”,”.”);
    b) $SUMME = sprintf(“%10.2f”, $SUMME);
    c) $SUMME = strtr(sprintf(“%10.2f”, $_SUMME),”.”,”,”);

  • #2
    jippie, hausaufgaben...

    *move* nach Projekthilfe.

    Kommentar


    • #3
      Niemand ist in der Lage diese Fragen zu beantworten oder ?

      kann ich mir ganicht vorstellen.. Jungs das eilt sehr muss schon am Montag abgeben !! Bitte

      Kommentar


      • #4
        Original geschrieben von caddy
        Jungs das eilt sehr muss schon am Montag abgeben !! Bitte
        na dann hast du ja genug zeit, im manual nachzuschlagen: www.php.net/manual/de/funcref.php
        Kissolino.com

        Kommentar


        • #5
          Und weil heute so schön die Sonne scheint, kriegst Du sogar die direkten Links:

          http://de.php.net/manual/de/langref.php
          http://de.php.net/fsockopen
          http://de.php.net/manual/de/ref.classobj.php

          Bis Montag ist noch ne Menge Zeit!

          Kommentar

          Lädt...
          X