Nasıl PHP kullanarak XML içine DOM serialize?

0 Cevap php

Öyle Bir kullanıcı ile çalışmak için bir e-posta tüm html belge görebilirsiniz mekanik turk benim php web uygulaması bir soru formu html veri göndermek için çalışıyorum. Ben şimdiye kadar zorluk vardı. Aşağıda bağlantısı parçacığı, ben html5-lib.php kullanarak html verilerini ayrıştırmak için çalıştı, ama ben hala bu tamamlamak için bir adım eksik düşünüyorum.

İşte ben alıyorum geçerli hata var:

Catchable fatal error: Object of class DOMNodeList could not be converted to string in urlgoeshere.php on line 35

İşte ben çalışıyorum geçerli kod ...

$thequestion = '<a href="linkgoeshere" target="_blank">click here</a>';


$thequestion = HTML5_Parser::parseFragment($thequestion);

var_dump($thequestion);
echo $thequestion;
//htmlspecialchars($thequestion);

$QuestionXML = '<QuestionForm xmlns="http://mechanicalturk.amazonaws.com/AWSMechanicalTurkDataSchemas/2005-10-01/QuestionForm.xsd">
  <Question>
    <QuestionContent>
      <Text>'.$thequestion.'</Text> //<--- Line35
    </QuestionContent>
    <AnswerSpecification>
      <FreeTextAnswer/>
    </AnswerSpecification>
  </Question>
</QuestionForm> ';

Ayrıştırıcı Ben bu doğru gönderilmesi için yapmanız gereken ne ise ben% 100 emin değilim - Ben şimdiye kadar bu zor oldu şaşırdım - Ben yapmak istediğim bu xml türü belge aracılığıyla html göndermek.

This is somewhat of a continuation of another thread - http://stackoverflow.com/questions/3740257/what-php-code-will-help-me-parse-html-data-in-an-xml-form

0 Cevap