splitten

Einklappen
X
 
  • Filter
  • Zeit
  • Anzeigen
Alles löschen
neue Beiträge

  • splitten

    wie kann ich nachfolgendes in einzelne variablen splitten?
    PHP-Code:
    stdClass Object 
    [
    type] => 
    [encoding] => 
    [ifsubtype] => 
    [subtype] => ALTERNATIVE 
    [ifdescription] => 
    [ifid] => 
    [bytes] => 16165 
    [ifdisposition] => 
    [ifdparameters] => 
    [ifparameters] => 
    [parameters] => Array ( [0] => stdClass Object 
    [
    attribute] => BOUNDARY [value] =>  

    und so weiter ... 
    Signatur-Text ...

  • #2
    mit foreach durchlaufen

    Kommentar


    • #3
      bräuchte aber nur den bereich encoding aus der variable wie stelle ich das am besten an?
      Zuletzt geändert von dani_o; 24.02.2006, 20:58.
      Signatur-Text ...

      Kommentar


      • #4
        mit for(each) durchlaufen und eben nur den entsprechenden bereich behandeln.

        Kommentar


        • #5
          PHP-Code:
          foreach($object as $key=>$value){
              if(
          $key == 'encoding'){
                  echo 
          $key."\t\t".$value;
              }

          Geht aber gemäss Manual erst ab PHP5
          As of PHP 5, it is possible to iterate objects too.
          Gruss

          tobi
          Gutes Tutorial | PHP Manual | MySql Manual | PHP FAQ | Apache | Suchfunktion für eigene Seiten

          [color=red]"An error does not become truth by reason of multiplied propagation, nor does truth become error because nobody sees it."[/color]
          Mohandas Karamchand Gandhi (Mahatma Gandhi) (Source)

          Kommentar


          • #6
            habs so prob aba das geht nicht:
            PHP-Code:
            $coding $codings->parts[$part]->encoding
            Signatur-Text ...

            Kommentar


            • #7
              Original geschrieben von jahlives
              PHP-Code:
              foreach($object as $key=>$value){
                  if(
              $key == 'encoding'){
                      echo 
              $key."\t\t".$value;
                  }

              Geht aber gemäss Manual erst ab PHP5

              Gruss

              tobi
              oh thx das geht!
              Signatur-Text ...

              Kommentar

              Lädt...
              X