Get the solution ↓↓↓
The Data come from a XML file to diplay them on a HTML site. I need to extract only the Picture URL??s in " " from all elemnts in my array for Output. I have try that with preg_match but i dont get any result. What i doing wrong in my code?
public function xmlParserPICtn():string
{
$valuesPICtn = $this->xml->xpath("//OBJEKT[@ID='91727']//PICTURE");
$searchpattern="@SRC=(.*)width@";
preg_match($searchpattern, $valuesPICtn, $valuesPICt); //Search-String
foreach ($valuesPICt as $PICelements)
{
$display .= '<li>';
$display .= ''.$PICelements->PIC.'';
$display .= '</li>';
}
$display .= '';
return $display;
}
<?xml version="1.0" encoding="utf-8"?>
<OBJEKT ID="91727">
<PICTURE ID="7">
<ID>7</ID>
<PIC><IMG SRC="https://d1.cloudfront.net/00722.jpg" width="640" height="480" BORDER=0></PIC>
</PICTURE>
<PICTURE ID="11">
<ID>11</ID>
<PIC><IMG SRC="https://d1.cloudfront.net/01123.jpg" width="640" height="480" BORDER=0></PIC>
</PICTURE>
<PICTURE ID="2">
<ID>2</ID>
<PIC><IMG SRC="https://d1.cloudfront.net/00224.jpg" width="640" height="480" BORDER=0></PIC>
</PICTURE>
<PICTURE ID="9">
<ID>9</ID>
<PIC><IMG SRC="https://d1.cloudfront.net/00925.jpg" width="640" height="480" BORDER=0></PIC>
</PICTURE>
</OBJEKT> the first problem is variable name preg_match($searchpattern, $valuesPICtnN, $valuesPICt); and correct is $valuesPICtn
Even so, it doesn't solve the final problem!!!!
As you have already converted the XML from string to object.
Just use the code below that I tested and it works.
$content = '<?xml version="1.0" encoding="utf-8"?><OBJEKT ID="91727"><PICTURE ID="7"><ID>7</ID><PIC><IMG SRC="https://d1.cloudfront.net/00722.jpg" width="640" height="480" BORDER=0></PIC></PICTURE><PICTURE ID="11"><ID>11</ID><PIC><IMG SRC="https://d1.cloudfront.net/01123.jpg" width="640" height="480" BORDER=0></PIC></PICTURE><PICTURE ID="2"><ID>2</ID><PIC><IMG SRC="https://d1.cloudfront.net/00224.jpg" width="640" height="480" BORDER=0></PIC></PICTURE><PICTURE ID="9"><ID>9</ID><PIC><IMG SRC="https://d1.cloudfront.net/00925.jpg" width="640" height="480" BORDER=0></PIC></PICTURE></OBJEKT>';
$xml = simplexml_load_string($content);
$valuesPICtn = $xml->xpath("//OBJEKT//PICTURE");
$display = '';
foreach ($valuesPICtn as $PICelements) {
$display .= '<li>';
$display .= ''.$PICelements->PIC.'';
$display .= '</li>';
}
echo "<ul>";
echo $display;
echo "</ul>";
You just need to filter all as occurrences with this $valuesPICtn = $xml->xpath("/OBJEKT//PICTURE");
and then then
foreach ($valuesPICtn the $PICelements) {
...
Our community is visited by hundreds of web development professionals every day. Ask your question and get a quick answer for free.
Find the answer in similar questions on our website.
Do you know the answer to this question? Write a quick response to it. With your help, we will make our community stronger.
PHP (from the English Hypertext Preprocessor - hypertext preprocessor) is a scripting programming language for developing web applications. Supported by most hosting providers, it is one of the most popular tools for creating dynamic websites.
The PHP scripting language has gained wide popularity due to its processing speed, simplicity, cross-platform, functionality and distribution of source codes under its own license.
https://www.php.net/
HTML (English "hyper text markup language" - hypertext markup language) is a special markup language that is used to create sites on the Internet.
Browsers understand html perfectly and can interpret it in an understandable way. In general, any page on the site is html-code, which the browser translates into a user-friendly form. By the way, the code of any page is available to everyone.
https://www.w3.org/html/
Welcome to the Q&A site for web developers. Here you can ask a question about the problem you are facing and get answers from other experts. We have created a user-friendly interface so that you can quickly and free of charge ask a question about a web programming problem. We also invite other experts to join our community and help other members who ask questions. In addition, you can use our search for questions with a solution.
Ask about the real problem you are facing. Describe in detail what you are doing and what you want to achieve.
Our goal is to create a strong community in which everyone will support each other. If you find a question and know the answer to it, help others with your knowledge.