البرمجة

فارق في طول عناصر XML: تحليل الاختلاف بين الشفرات

In the provided HTML and JavaScript code snippets, you have two separate files attempting to read an XML file named “book3.xml” and determine the length of its child nodes. The discrepancy in the results, where the first file outputs “3” and the second file outputs “7,” can be attributed to the differences in the methods used to parse and access the XML content in each case.

Let’s delve into the details:

First Code Snippet:

html
html> <html> <body> <p id="demo">p> <script> var x, i, xmlDoc; var txt = ""; var text = "" + "Everyday Italian" + "Giada De Laurentiis" + "2005" + ""; parser = new DOMParser(); xmlDoc = parser.parseFromString(text, "text/xml"); x = xmlDoc.documentElement.childNodes; document.write(x.length); script> body> html>

In this snippet, you manually create an XML string (text) and parse it using DOMParser. The resulting xmlDoc contains only one child node, which is the element. Hence, x.length will be equal to 1.

Second Code Snippet:

html
html> <html lang="en"> <head> <meta charset="UTF-8"> <title>DOM XMLtitle> <script language="javascript" type="text/javascript"> xhttp = new XMLHttpRequest(); xhttp.onreadystatechange = function () { if (xhttp.readyState == 4 && xhttp.status == 200) { xmlDoc = xhttp.responseXML; x = xmlDoc.documentElement.childNodes; document.write(x.length); } }; xhttp.open('get', 'book3.xml', true); xhttp.send(); script> head> <body> body> html>

In this snippet, you use an XMLHttpRequest to fetch the content of “book3.xml.” The length of x is the number of child nodes of the root element in “book3.xml.” In your case, “book3.xml” has three child nodes: </code>, <code><author></code>, and <code><year></code>, resulting in <code>x.length</code> being 3.</p><div class="stream-item stream-item-in-post stream-item-inline-post aligncenter"><div class="stream-item-size" style=""> <div class="stream-item stream-item-in-post stream-item-in-post-1"><div> <!-- defults --> <ins class="adsbygoogle" style="display:block" data-ad-client="ca-pub-3293364314201893" data-ad-slot="2303082872" data-ad-format="auto" data-full-width-responsive="true"></ins> <script> (adsbygoogle = window.adsbygoogle || []).push({}); </script> </div> </div> </div></div> <h3>Discrepancy Explanation:</h3> <p>The difference in the results arises from the distinct methods of XML content creation and retrieval in each code snippet. The first snippet manually constructs an XML string, while the second one fetches an external XML file.</p><div class="stream-item stream-item-in-post stream-item-inline-post aligncenter"><div class="stream-item-size" style=""> <div class="stream-item stream-item-in-post stream-item-in-post-1"><div> <!-- defults --> <ins class="adsbygoogle" style="display:block" data-ad-client="ca-pub-3293364314201893" data-ad-slot="2303082872" data-ad-format="auto" data-full-width-responsive="true"></ins> <script> (adsbygoogle = window.adsbygoogle || []).push({}); </script> </div> </div> </div></div> <p>If you aim for consistency in results, ensure that the XML content generated or retrieved is the same in both cases. Review the content of “book3.xml” and confirm its structure and child nodes. Additionally, consider handling asynchronous operations appropriately to ensure accurate results in your second code snippet.</p><div class="stream-item stream-item-in-post stream-item-inline-post aligncenter"><div class="stream-item-size" style=""> <div class="stream-item stream-item-in-post stream-item-in-post-1"><div> <!-- defults --> <ins class="adsbygoogle" style="display:block" data-ad-client="ca-pub-3293364314201893" data-ad-slot="2303082872" data-ad-format="auto" data-full-width-responsive="true"></ins> <script> (adsbygoogle = window.adsbygoogle || []).push({}); </script> </div> </div> </div></div> </div> </div> <h2>المزيد من المعلومات</h2> <p><img decoding="async" src="https://it-solutions.center/pic/more_info.png" class="center"></p> <div data-message-author-role="assistant" data-message-id="53cdab3c-cf1f-4dbc-b857-8d9b8b697f7b" class="min-h-[20px] text-message flex flex-col items-start gap-3 whitespace-pre-wrap break-words [.text-message+&]:mt-5 overflow-x-auto"> <div class="markdown prose w-full break-words dark:prose-invert light"> <p>لفهم المزيد من المعلومات حول الفارق في نتائج الشفرتين، يمكننا التعمق في التحليل:</p> <h3>التحليل الأول:</h3> <p>في الكود الأول، تقوم بإنشاء نص XML يدويًا باستخدام متغير <code>text</code>. هذا النص يحتوي على عنصر واحد فقط هو <code><book></code>، ولا توجد عناصر فرعية أخرى داخله. عند استخدام <code>DOMParser</code> لتحليل هذا النص، يتم إنشاء وثيقة XML (<code>xmlDoc</code>) تحتوي على عنصر واحد فقط كطفل للعنصر الجذري.</p> <h3>التحليل الثاني:</h3> <p>في الكود الثاني، تستخدم <code>XMLHttpRequest</code> لجلب محتوى ملف “book3.xml” من الخادم. عند استخدام <code>responseXML</code> لتحليل المحتوى، يتم إنشاء وثيقة XML (<code>xmlDoc</code>) تمثل محتوى الملف. في هذا السياق، يحتوي ملف “book3.xml” على ثلاثة عناصر فرعية داخل عنصر الكتاب.</p> <h3>السبب في الاختلاف:</h3> <p>الفرق في النتائج يعود إلى الفارق في هياكل البيانات. في الكود الأول، يتم إنشاء نص XML بشكل يدوي ويحتوي على عنصر واحد فقط. أما في الكود الثاني، يتم جلب محتوى XML الفعلي من ملف “book3.xml” الذي يحتوي على ثلاثة عناصر فرعية.</p><div class="stream-item stream-item-in-post stream-item-inline-post aligncenter"><div class="stream-item-size" style=""> <div class="stream-item stream-item-in-post stream-item-in-post-1"><div> <!-- defults --> <ins class="adsbygoogle" style="display:block" data-ad-client="ca-pub-3293364314201893" data-ad-slot="2303082872" data-ad-format="auto" data-full-width-responsive="true"></ins> <script> (adsbygoogle = window.adsbygoogle || []).push({}); </script> </div> </div> </div></div> <h3>الحل المقترح:</h3> <ol> <li> <p><strong>تأكد من محتوى “book3.xml”:</strong> قم بفحص محتوى ملف “book3.xml” للتأكد من أن هناك ثلاثة عناصر داخل <code><book></code> كما هو موضح في المثال الثالث الذي قدمته.</p> </li> <li> <p><strong>معالجة العمليات الغير متزامنة:</strong> التأكد من التعامل بشكل صحيح مع العمليات الغير متزامنة. قم بتأكيد أن الطلب باستخدام <code>XMLHttpRequest</code> قد اكتمل بنجاح قبل تحليل المحتوى.</p> </li> <li> <p><strong>التحقق من هيكل البيانات:</strong> قم بمقارنة هياكل البيانات في الكودين وتأكد من تطابقها أو توافقها بحسب الحاجة.</p> </li> </ol> <p>باتخاذ هذه الخطوات، يمكنك فهم وتصحيح الاختلاف في النتائج بين الشفرتين.</p> </div> </div></p> <div class="stream-item stream-item-below-post-content"><div class="stream-item-size" style=""> <div class="stream-item stream-item-in-post stream-item-in-post-1"><div> <!-- defults --> <ins class="adsbygoogle" style="display:block" data-ad-client="ca-pub-3293364314201893" data-ad-slot="2303082872" data-ad-format="auto" data-full-width-responsive="true"></ins> <script> (adsbygoogle = window.adsbygoogle || []).push({}); </script> </div> </div> </div></div><div class="post-bottom-meta post-bottom-tags post-tags-modern"><div class="post-bottom-meta-title"><span class="tie-icon-tags" aria-hidden="true"></span> الوسوم</div><span class="tagcloud"><a href="https://it-solutions.center/tag/xml/" rel="tag">XML</a> <a href="https://it-solutions.center/tag/%d8%aa%d8%ad%d9%84%d9%8a%d9%84/" rel="tag">تحليل</a> <a href="https://it-solutions.center/tag/%d8%b4%d9%81%d8%b1%d8%a7%d8%aa/" rel="tag">شفرات</a> <a href="https://it-solutions.center/tag/%d8%b7%d9%88%d9%84-%d8%b9%d9%86%d8%a7%d8%b5%d8%b1/" rel="tag">طول عناصر</a> <a href="https://it-solutions.center/tag/%d9%81%d8%a7%d8%b1%d9%82/" rel="tag">فارق</a></span></div> </div><!-- .entry-content /--> <div id="post-extra-info"> <div class="theiaStickySidebar"> <div id="share-buttons-top" class="share-buttons share-buttons-top"> <div class="share-links share-centered icons-only share-rounded"> <a href="https://www.facebook.com/sharer.php?u=https://it-solutions.center/%d8%a7%d9%84%d8%a8%d8%b1%d9%85%d8%ac%d8%a9/%d9%81%d8%a7%d8%b1%d9%82-%d9%81%d9%8a-%d8%b7%d9%88%d9%84-%d8%b9%d9%86%d8%a7%d8%b5%d8%b1-xml-%d8%aa%d8%ad%d9%84%d9%8a%d9%84-%d8%a7%d9%84%d8%a7%d8%ae%d8%aa%d9%84%d8%a7%d9%81-%d8%a8%d9%8a%d9%86-%d8%a7/" rel="external noopener nofollow" title="فيسبوك" target="_blank" class="facebook-share-btn " data-raw="https://www.facebook.com/sharer.php?u={post_link}"> <span class="share-btn-icon tie-icon-facebook"></span> <span class="screen-reader-text">فيسبوك</span> </a> <a href="https://twitter.com/intent/tweet?text=%D9%81%D8%A7%D8%B1%D9%82%20%D9%81%D9%8A%20%D8%B7%D9%88%D9%84%20%D8%B9%D9%86%D8%A7%D8%B5%D8%B1%20XML%3A%20%D8%AA%D8%AD%D9%84%D9%8A%D9%84%20%D8%A7%D9%84%D8%A7%D8%AE%D8%AA%D9%84%D8%A7%D9%81%20%D8%A8%D9%8A%D9%86%20%D8%A7%D9%84%D8%B4%D9%81%D8%B1%D8%A7%D8%AA&url=https://it-solutions.center/%d8%a7%d9%84%d8%a8%d8%b1%d9%85%d8%ac%d8%a9/%d9%81%d8%a7%d8%b1%d9%82-%d9%81%d9%8a-%d8%b7%d9%88%d9%84-%d8%b9%d9%86%d8%a7%d8%b5%d8%b1-xml-%d8%aa%d8%ad%d9%84%d9%8a%d9%84-%d8%a7%d9%84%d8%a7%d8%ae%d8%aa%d9%84%d8%a7%d9%81-%d8%a8%d9%8a%d9%86-%d8%a7/" rel="external noopener nofollow" title="X" target="_blank" class="twitter-share-btn " data-raw="https://twitter.com/intent/tweet?text={post_title}&url={post_link}"> <span class="share-btn-icon tie-icon-twitter"></span> <span class="screen-reader-text">X</span> </a> <a href="https://www.linkedin.com/shareArticle?mini=true&url=https://it-solutions.center/%d8%a7%d9%84%d8%a8%d8%b1%d9%85%d8%ac%d8%a9/%d9%81%d8%a7%d8%b1%d9%82-%d9%81%d9%8a-%d8%b7%d9%88%d9%84-%d8%b9%d9%86%d8%a7%d8%b5%d8%b1-xml-%d8%aa%d8%ad%d9%84%d9%8a%d9%84-%d8%a7%d9%84%d8%a7%d8%ae%d8%aa%d9%84%d8%a7%d9%81-%d8%a8%d9%8a%d9%86-%d8%a7/&title=%D9%81%D8%A7%D8%B1%D9%82%20%D9%81%D9%8A%20%D8%B7%D9%88%D9%84%20%D8%B9%D9%86%D8%A7%D8%B5%D8%B1%20XML%3A%20%D8%AA%D8%AD%D9%84%D9%8A%D9%84%20%D8%A7%D9%84%D8%A7%D8%AE%D8%AA%D9%84%D8%A7%D9%81%20%D8%A8%D9%8A%D9%86%20%D8%A7%D9%84%D8%B4%D9%81%D8%B1%D8%A7%D8%AA" rel="external noopener nofollow" title="لينكدإن" target="_blank" class="linkedin-share-btn " data-raw="https://www.linkedin.com/shareArticle?mini=true&url={post_full_link}&title={post_title}"> <span class="share-btn-icon tie-icon-linkedin"></span> <span class="screen-reader-text">لينكدإن</span> </a> <a href="https://www.tumblr.com/share/link?url=https://it-solutions.center/%d8%a7%d9%84%d8%a8%d8%b1%d9%85%d8%ac%d8%a9/%d9%81%d8%a7%d8%b1%d9%82-%d9%81%d9%8a-%d8%b7%d9%88%d9%84-%d8%b9%d9%86%d8%a7%d8%b5%d8%b1-xml-%d8%aa%d8%ad%d9%84%d9%8a%d9%84-%d8%a7%d9%84%d8%a7%d8%ae%d8%aa%d9%84%d8%a7%d9%81-%d8%a8%d9%8a%d9%86-%d8%a7/&name=%D9%81%D8%A7%D8%B1%D9%82%20%D9%81%D9%8A%20%D8%B7%D9%88%D9%84%20%D8%B9%D9%86%D8%A7%D8%B5%D8%B1%20XML%3A%20%D8%AA%D8%AD%D9%84%D9%8A%D9%84%20%D8%A7%D9%84%D8%A7%D8%AE%D8%AA%D9%84%D8%A7%D9%81%20%D8%A8%D9%8A%D9%86%20%D8%A7%D9%84%D8%B4%D9%81%D8%B1%D8%A7%D8%AA" rel="external noopener nofollow" title="‏Tumblr" target="_blank" class="tumblr-share-btn " data-raw="https://www.tumblr.com/share/link?url={post_link}&name={post_title}"> <span class="share-btn-icon tie-icon-tumblr"></span> <span class="screen-reader-text">‏Tumblr</span> </a> <a href="https://pinterest.com/pin/create/button/?url=https://it-solutions.center/%d8%a7%d9%84%d8%a8%d8%b1%d9%85%d8%ac%d8%a9/%d9%81%d8%a7%d8%b1%d9%82-%d9%81%d9%8a-%d8%b7%d9%88%d9%84-%d8%b9%d9%86%d8%a7%d8%b5%d8%b1-xml-%d8%aa%d8%ad%d9%84%d9%8a%d9%84-%d8%a7%d9%84%d8%a7%d8%ae%d8%aa%d9%84%d8%a7%d9%81-%d8%a8%d9%8a%d9%86-%d8%a7/&description=%D9%81%D8%A7%D8%B1%D9%82%20%D9%81%D9%8A%20%D8%B7%D9%88%D9%84%20%D8%B9%D9%86%D8%A7%D8%B5%D8%B1%20XML%3A%20%D8%AA%D8%AD%D9%84%D9%8A%D9%84%20%D8%A7%D9%84%D8%A7%D8%AE%D8%AA%D9%84%D8%A7%D9%81%20%D8%A8%D9%8A%D9%86%20%D8%A7%D9%84%D8%B4%D9%81%D8%B1%D8%A7%D8%AA&media=" rel="external noopener nofollow" title="بينتيريست" target="_blank" class="pinterest-share-btn " data-raw="https://pinterest.com/pin/create/button/?url={post_link}&description={post_title}&media={post_img}"> <span class="share-btn-icon tie-icon-pinterest"></span> <span class="screen-reader-text">بينتيريست</span> </a> <a href="https://reddit.com/submit?url=https://it-solutions.center/%d8%a7%d9%84%d8%a8%d8%b1%d9%85%d8%ac%d8%a9/%d9%81%d8%a7%d8%b1%d9%82-%d9%81%d9%8a-%d8%b7%d9%88%d9%84-%d8%b9%d9%86%d8%a7%d8%b5%d8%b1-xml-%d8%aa%d8%ad%d9%84%d9%8a%d9%84-%d8%a7%d9%84%d8%a7%d8%ae%d8%aa%d9%84%d8%a7%d9%81-%d8%a8%d9%8a%d9%86-%d8%a7/&title=%D9%81%D8%A7%D8%B1%D9%82%20%D9%81%D9%8A%20%D8%B7%D9%88%D9%84%20%D8%B9%D9%86%D8%A7%D8%B5%D8%B1%20XML%3A%20%D8%AA%D8%AD%D9%84%D9%8A%D9%84%20%D8%A7%D9%84%D8%A7%D8%AE%D8%AA%D9%84%D8%A7%D9%81%20%D8%A8%D9%8A%D9%86%20%D8%A7%D9%84%D8%B4%D9%81%D8%B1%D8%A7%D8%AA" rel="external noopener nofollow" title="‏Reddit" target="_blank" class="reddit-share-btn " data-raw="https://reddit.com/submit?url={post_link}&title={post_title}"> <span class="share-btn-icon tie-icon-reddit"></span> <span class="screen-reader-text">‏Reddit</span> </a> <a href="fb-messenger://share?app_id=5303202981&display=popup&link=https://it-solutions.center/%d8%a7%d9%84%d8%a8%d8%b1%d9%85%d8%ac%d8%a9/%d9%81%d8%a7%d8%b1%d9%82-%d9%81%d9%8a-%d8%b7%d9%88%d9%84-%d8%b9%d9%86%d8%a7%d8%b5%d8%b1-xml-%d8%aa%d8%ad%d9%84%d9%8a%d9%84-%d8%a7%d9%84%d8%a7%d8%ae%d8%aa%d9%84%d8%a7%d9%81-%d8%a8%d9%8a%d9%86-%d8%a7/&redirect_uri=https://it-solutions.center/%d8%a7%d9%84%d8%a8%d8%b1%d9%85%d8%ac%d8%a9/%d9%81%d8%a7%d8%b1%d9%82-%d9%81%d9%8a-%d8%b7%d9%88%d9%84-%d8%b9%d9%86%d8%a7%d8%b5%d8%b1-xml-%d8%aa%d8%ad%d9%84%d9%8a%d9%84-%d8%a7%d9%84%d8%a7%d8%ae%d8%aa%d9%84%d8%a7%d9%81-%d8%a8%d9%8a%d9%86-%d8%a7/" rel="external noopener nofollow" title="ماسنجر" target="_blank" class="messenger-mob-share-btn messenger-share-btn " data-raw="fb-messenger://share?app_id=5303202981&display=popup&link={post_link}&redirect_uri={post_link}"> <span class="share-btn-icon tie-icon-messenger"></span> <span class="screen-reader-text">ماسنجر</span> </a> <a href="https://www.facebook.com/dialog/send?app_id=5303202981&display=popup&link=https://it-solutions.center/%d8%a7%d9%84%d8%a8%d8%b1%d9%85%d8%ac%d8%a9/%d9%81%d8%a7%d8%b1%d9%82-%d9%81%d9%8a-%d8%b7%d9%88%d9%84-%d8%b9%d9%86%d8%a7%d8%b5%d8%b1-xml-%d8%aa%d8%ad%d9%84%d9%8a%d9%84-%d8%a7%d9%84%d8%a7%d8%ae%d8%aa%d9%84%d8%a7%d9%81-%d8%a8%d9%8a%d9%86-%d8%a7/&redirect_uri=https://it-solutions.center/%d8%a7%d9%84%d8%a8%d8%b1%d9%85%d8%ac%d8%a9/%d9%81%d8%a7%d8%b1%d9%82-%d9%81%d9%8a-%d8%b7%d9%88%d9%84-%d8%b9%d9%86%d8%a7%d8%b5%d8%b1-xml-%d8%aa%d8%ad%d9%84%d9%8a%d9%84-%d8%a7%d9%84%d8%a7%d8%ae%d8%aa%d9%84%d8%a7%d9%81-%d8%a8%d9%8a%d9%86-%d8%a7/" rel="external noopener nofollow" title="ماسنجر" target="_blank" class="messenger-desktop-share-btn messenger-share-btn " data-raw="https://www.facebook.com/dialog/send?app_id=5303202981&display=popup&link={post_link}&redirect_uri={post_link}"> <span class="share-btn-icon tie-icon-messenger"></span> <span class="screen-reader-text">ماسنجر</span> </a> <a href="https://api.whatsapp.com/send?text=%D9%81%D8%A7%D8%B1%D9%82%20%D9%81%D9%8A%20%D8%B7%D9%88%D9%84%20%D8%B9%D9%86%D8%A7%D8%B5%D8%B1%20XML%3A%20%D8%AA%D8%AD%D9%84%D9%8A%D9%84%20%D8%A7%D9%84%D8%A7%D8%AE%D8%AA%D9%84%D8%A7%D9%81%20%D8%A8%D9%8A%D9%86%20%D8%A7%D9%84%D8%B4%D9%81%D8%B1%D8%A7%D8%AA%20https://it-solutions.center/%d8%a7%d9%84%d8%a8%d8%b1%d9%85%d8%ac%d8%a9/%d9%81%d8%a7%d8%b1%d9%82-%d9%81%d9%8a-%d8%b7%d9%88%d9%84-%d8%b9%d9%86%d8%a7%d8%b5%d8%b1-xml-%d8%aa%d8%ad%d9%84%d9%8a%d9%84-%d8%a7%d9%84%d8%a7%d8%ae%d8%aa%d9%84%d8%a7%d9%81-%d8%a8%d9%8a%d9%86-%d8%a7/" rel="external noopener nofollow" title="واتساب" target="_blank" class="whatsapp-share-btn " data-raw="https://api.whatsapp.com/send?text={post_title}%20{post_link}"> <span class="share-btn-icon tie-icon-whatsapp"></span> <span class="screen-reader-text">واتساب</span> </a> <a href="https://telegram.me/share/url?url=https://it-solutions.center/%d8%a7%d9%84%d8%a8%d8%b1%d9%85%d8%ac%d8%a9/%d9%81%d8%a7%d8%b1%d9%82-%d9%81%d9%8a-%d8%b7%d9%88%d9%84-%d8%b9%d9%86%d8%a7%d8%b5%d8%b1-xml-%d8%aa%d8%ad%d9%84%d9%8a%d9%84-%d8%a7%d9%84%d8%a7%d8%ae%d8%aa%d9%84%d8%a7%d9%81-%d8%a8%d9%8a%d9%86-%d8%a7/&text=%D9%81%D8%A7%D8%B1%D9%82%20%D9%81%D9%8A%20%D8%B7%D9%88%D9%84%20%D8%B9%D9%86%D8%A7%D8%B5%D8%B1%20XML%3A%20%D8%AA%D8%AD%D9%84%D9%8A%D9%84%20%D8%A7%D9%84%D8%A7%D8%AE%D8%AA%D9%84%D8%A7%D9%81%20%D8%A8%D9%8A%D9%86%20%D8%A7%D9%84%D8%B4%D9%81%D8%B1%D8%A7%D8%AA" rel="external noopener nofollow" title="تيلقرام" target="_blank" class="telegram-share-btn " data-raw="https://telegram.me/share/url?url={post_link}&text={post_title}"> <span class="share-btn-icon tie-icon-paper-plane"></span> <span class="screen-reader-text">تيلقرام</span> </a> <a href="viber://forward?text=%D9%81%D8%A7%D8%B1%D9%82%20%D9%81%D9%8A%20%D8%B7%D9%88%D9%84%20%D8%B9%D9%86%D8%A7%D8%B5%D8%B1%20XML%3A%20%D8%AA%D8%AD%D9%84%D9%8A%D9%84%20%D8%A7%D9%84%D8%A7%D8%AE%D8%AA%D9%84%D8%A7%D9%81%20%D8%A8%D9%8A%D9%86%20%D8%A7%D9%84%D8%B4%D9%81%D8%B1%D8%A7%D8%AA%20https://it-solutions.center/%d8%a7%d9%84%d8%a8%d8%b1%d9%85%d8%ac%d8%a9/%d9%81%d8%a7%d8%b1%d9%82-%d9%81%d9%8a-%d8%b7%d9%88%d9%84-%d8%b9%d9%86%d8%a7%d8%b5%d8%b1-xml-%d8%aa%d8%ad%d9%84%d9%8a%d9%84-%d8%a7%d9%84%d8%a7%d8%ae%d8%aa%d9%84%d8%a7%d9%81-%d8%a8%d9%8a%d9%86-%d8%a7/" rel="external noopener nofollow" title="ڤايبر" target="_blank" class="viber-share-btn " data-raw="viber://forward?text={post_title}%20{post_link}"> <span class="share-btn-icon tie-icon-phone"></span> <span class="screen-reader-text">ڤايبر</span> </a> <a href="https://line.me/R/msg/text/?%D9%81%D8%A7%D8%B1%D9%82%20%D9%81%D9%8A%20%D8%B7%D9%88%D9%84%20%D8%B9%D9%86%D8%A7%D8%B5%D8%B1%20XML%3A%20%D8%AA%D8%AD%D9%84%D9%8A%D9%84%20%D8%A7%D9%84%D8%A7%D8%AE%D8%AA%D9%84%D8%A7%D9%81%20%D8%A8%D9%8A%D9%86%20%D8%A7%D9%84%D8%B4%D9%81%D8%B1%D8%A7%D8%AA%20https://it-solutions.center/%d8%a7%d9%84%d8%a8%d8%b1%d9%85%d8%ac%d8%a9/%d9%81%d8%a7%d8%b1%d9%82-%d9%81%d9%8a-%d8%b7%d9%88%d9%84-%d8%b9%d9%86%d8%a7%d8%b5%d8%b1-xml-%d8%aa%d8%ad%d9%84%d9%8a%d9%84-%d8%a7%d9%84%d8%a7%d8%ae%d8%aa%d9%84%d8%a7%d9%81-%d8%a8%d9%8a%d9%86-%d8%a7/" rel="external noopener nofollow" title="لاين" target="_blank" class="line-share-btn " data-raw="https://line.me/R/msg/text/?{post_title}%20{post_link}"> <span class="share-btn-icon tie-icon-line"></span> <span class="screen-reader-text">لاين</span> </a> <a href="mailto:?subject=%D9%81%D8%A7%D8%B1%D9%82%20%D9%81%D9%8A%20%D8%B7%D9%88%D9%84%20%D8%B9%D9%86%D8%A7%D8%B5%D8%B1%20XML%3A%20%D8%AA%D8%AD%D9%84%D9%8A%D9%84%20%D8%A7%D9%84%D8%A7%D8%AE%D8%AA%D9%84%D8%A7%D9%81%20%D8%A8%D9%8A%D9%86%20%D8%A7%D9%84%D8%B4%D9%81%D8%B1%D8%A7%D8%AA&body=https://it-solutions.center/%d8%a7%d9%84%d8%a8%d8%b1%d9%85%d8%ac%d8%a9/%d9%81%d8%a7%d8%b1%d9%82-%d9%81%d9%8a-%d8%b7%d9%88%d9%84-%d8%b9%d9%86%d8%a7%d8%b5%d8%b1-xml-%d8%aa%d8%ad%d9%84%d9%8a%d9%84-%d8%a7%d9%84%d8%a7%d8%ae%d8%aa%d9%84%d8%a7%d9%81-%d8%a8%d9%8a%d9%86-%d8%a7/" rel="external noopener nofollow" title="مشاركة عبر البريد" target="_blank" class="email-share-btn " data-raw="mailto:?subject={post_title}&body={post_link}"> <span class="share-btn-icon tie-icon-envelope"></span> <span class="screen-reader-text">مشاركة عبر البريد</span> </a> <a href="#" rel="external noopener nofollow" title="طباعة" target="_blank" class="print-share-btn " data-raw="#"> <span class="share-btn-icon tie-icon-print"></span> <span class="screen-reader-text">طباعة</span> </a> </div><!-- .share-links /--> </div><!-- .share-buttons /--> </div> </div> <div class="clearfix"></div> <script id="tie-schema-json" type="application/ld+json">{"@context":"http:\/\/schema.org","@type":"BlogPosting","dateCreated":"2024-02-13T15:49:50+03:00","datePublished":"2024-02-13T15:49:50+03:00","dateModified":"2024-02-13T15:49:50+03:00","headline":"\u0641\u0627\u0631\u0642 \u0641\u064a \u0637\u0648\u0644 \u0639\u0646\u0627\u0635\u0631 XML: \u062a\u062d\u0644\u064a\u0644 \u0627\u0644\u0627\u062e\u062a\u0644\u0627\u0641 \u0628\u064a\u0646 \u0627\u0644\u0634\u0641\u0631\u0627\u062a","name":"\u0641\u0627\u0631\u0642 \u0641\u064a \u0637\u0648\u0644 \u0639\u0646\u0627\u0635\u0631 XML: \u062a\u062d\u0644\u064a\u0644 \u0627\u0644\u0627\u062e\u062a\u0644\u0627\u0641 \u0628\u064a\u0646 \u0627\u0644\u0634\u0641\u0631\u0627\u062a","keywords":"XML,\u062a\u062d\u0644\u064a\u0644,\u0634\u0641\u0631\u0627\u062a,\u0637\u0648\u0644 \u0639\u0646\u0627\u0635\u0631,\u0641\u0627\u0631\u0642","url":"https:\/\/it-solutions.center\/%d8%a7%d9%84%d8%a8%d8%b1%d9%85%d8%ac%d8%a9\/%d9%81%d8%a7%d8%b1%d9%82-%d9%81%d9%8a-%d8%b7%d9%88%d9%84-%d8%b9%d9%86%d8%a7%d8%b5%d8%b1-xml-%d8%aa%d8%ad%d9%84%d9%8a%d9%84-%d8%a7%d9%84%d8%a7%d8%ae%d8%aa%d9%84%d8%a7%d9%81-%d8%a8%d9%8a%d9%86-%d8%a7\/","description":"In the provided HTML and JavaScript code snippets, you have two separate files attempting to read an XML file named \"book3.xml\" and determine the length of its child nodes. The discrepancy in the resu","copyrightYear":"2024","articleSection":"\u0627\u0644\u0628\u0631\u0645\u062c\u0629","articleBody":"In the provided HTML and JavaScript code snippets, you have two separate files attempting to read an XML file named \"book3.xml\" and determine the length of its child nodes. The discrepancy in the results, where the first file outputs \"3\" and the second file outputs \"7,\" can be attributed to the differences in the methods used to parse and access the XML content in each case.Let's delve into the details:First Code Snippet:htmlCopy code\n\n \n \n \n var x, i, xmlDoc;\n var txt = \"\";\n var text =\n \"\" +\n \"Everyday Italian\" +\n \"Giada De Laurentiis\" +\n \"2005\" +\n \"\";\n parser = new DOMParser();\n xmlDoc = parser.parseFromString(text, \"text\/xml\");\n x = xmlDoc.documentElement.childNodes;\n document.write(x.length);\n \n \n\nIn this snippet, you manually create an XML string (text) and parse it using DOMParser. The resulting xmlDoc contains only one child node, which is the element. Hence, x.length will be equal to 1.Second Code Snippet:htmlCopy code\n\n \n \n DOM XML\n \n xhttp = new XMLHttpRequest();\n xhttp.onreadystatechange = function () {\n if (xhttp.readyState == 4 && xhttp.status == 200) {\n xmlDoc = xhttp.responseXML;\n x = xmlDoc.documentElement.childNodes;\n document.write(x.length);\n }\n };\n xhttp.open('get', 'book3.xml', true);\n xhttp.send();\n \n \n \n \n\nIn this snippet, you use an XMLHttpRequest to fetch the content of \"book3.xml.\" The length of x is the number of child nodes of the root element in \"book3.xml.\" In your case, \"book3.xml\" has three child nodes: , , and , resulting in x.length being 3.Discrepancy Explanation:The difference in the results arises from the distinct methods of XML content creation and retrieval in each code snippet. The first snippet manually constructs an XML string, while the second one fetches an external XML file.If you aim for consistency in results, ensure that the XML content generated or retrieved is the same in both cases. Review the content of \"book3.xml\" and confirm its structure and child nodes. Additionally, consider handling asynchronous operations appropriately to ensure accurate results in your second code snippet.\u0627\u0644\u0645\u0632\u064a\u062f \u0645\u0646 \u0627\u0644\u0645\u0639\u0644\u0648\u0645\u0627\u062a\n\n\u0644\u0641\u0647\u0645 \u0627\u0644\u0645\u0632\u064a\u062f \u0645\u0646 \u0627\u0644\u0645\u0639\u0644\u0648\u0645\u0627\u062a \u062d\u0648\u0644 \u0627\u0644\u0641\u0627\u0631\u0642 \u0641\u064a \u0646\u062a\u0627\u0626\u062c \u0627\u0644\u0634\u0641\u0631\u062a\u064a\u0646\u060c \u064a\u0645\u0643\u0646\u0646\u0627 \u0627\u0644\u062a\u0639\u0645\u0642 \u0641\u064a \u0627\u0644\u062a\u062d\u0644\u064a\u0644:\u0627\u0644\u062a\u062d\u0644\u064a\u0644 \u0627\u0644\u0623\u0648\u0644:\u0641\u064a \u0627\u0644\u0643\u0648\u062f \u0627\u0644\u0623\u0648\u0644\u060c \u062a\u0642\u0648\u0645 \u0628\u0625\u0646\u0634\u0627\u0621 \u0646\u0635 XML \u064a\u062f\u0648\u064a\u064b\u0627 \u0628\u0627\u0633\u062a\u062e\u062f\u0627\u0645 \u0645\u062a\u063a\u064a\u0631 text. \u0647\u0630\u0627 \u0627\u0644\u0646\u0635 \u064a\u062d\u062a\u0648\u064a \u0639\u0644\u0649 \u0639\u0646\u0635\u0631 \u0648\u0627\u062d\u062f \u0641\u0642\u0637 \u0647\u0648 \u060c \u0648\u0644\u0627 \u062a\u0648\u062c\u062f \u0639\u0646\u0627\u0635\u0631 \u0641\u0631\u0639\u064a\u0629 \u0623\u062e\u0631\u0649 \u062f\u0627\u062e\u0644\u0647. \u0639\u0646\u062f \u0627\u0633\u062a\u062e\u062f\u0627\u0645 DOMParser \u0644\u062a\u062d\u0644\u064a\u0644 \u0647\u0630\u0627 \u0627\u0644\u0646\u0635\u060c \u064a\u062a\u0645 \u0625\u0646\u0634\u0627\u0621 \u0648\u062b\u064a\u0642\u0629 XML (xmlDoc) \u062a\u062d\u062a\u0648\u064a \u0639\u0644\u0649 \u0639\u0646\u0635\u0631 \u0648\u0627\u062d\u062f \u0641\u0642\u0637 \u0643\u0637\u0641\u0644 \u0644\u0644\u0639\u0646\u0635\u0631 \u0627\u0644\u062c\u0630\u0631\u064a.\u0627\u0644\u062a\u062d\u0644\u064a\u0644 \u0627\u0644\u062b\u0627\u0646\u064a:\u0641\u064a \u0627\u0644\u0643\u0648\u062f \u0627\u0644\u062b\u0627\u0646\u064a\u060c \u062a\u0633\u062a\u062e\u062f\u0645 XMLHttpRequest \u0644\u062c\u0644\u0628 \u0645\u062d\u062a\u0648\u0649 \u0645\u0644\u0641 \"book3.xml\" \u0645\u0646 \u0627\u0644\u062e\u0627\u062f\u0645. \u0639\u0646\u062f \u0627\u0633\u062a\u062e\u062f\u0627\u0645 responseXML \u0644\u062a\u062d\u0644\u064a\u0644 \u0627\u0644\u0645\u062d\u062a\u0648\u0649\u060c \u064a\u062a\u0645 \u0625\u0646\u0634\u0627\u0621 \u0648\u062b\u064a\u0642\u0629 XML (xmlDoc) \u062a\u0645\u062b\u0644 \u0645\u062d\u062a\u0648\u0649 \u0627\u0644\u0645\u0644\u0641. \u0641\u064a \u0647\u0630\u0627 \u0627\u0644\u0633\u064a\u0627\u0642\u060c \u064a\u062d\u062a\u0648\u064a \u0645\u0644\u0641 \"book3.xml\" \u0639\u0644\u0649 \u062b\u0644\u0627\u062b\u0629 \u0639\u0646\u0627\u0635\u0631 \u0641\u0631\u0639\u064a\u0629 \u062f\u0627\u062e\u0644 \u0639\u0646\u0635\u0631 \u0627\u0644\u0643\u062a\u0627\u0628.\u0627\u0644\u0633\u0628\u0628 \u0641\u064a \u0627\u0644\u0627\u062e\u062a\u0644\u0627\u0641:\u0627\u0644\u0641\u0631\u0642 \u0641\u064a \u0627\u0644\u0646\u062a\u0627\u0626\u062c \u064a\u0639\u0648\u062f \u0625\u0644\u0649 \u0627\u0644\u0641\u0627\u0631\u0642 \u0641\u064a \u0647\u064a\u0627\u0643\u0644 \u0627\u0644\u0628\u064a\u0627\u0646\u0627\u062a. \u0641\u064a \u0627\u0644\u0643\u0648\u062f \u0627\u0644\u0623\u0648\u0644\u060c \u064a\u062a\u0645 \u0625\u0646\u0634\u0627\u0621 \u0646\u0635 XML \u0628\u0634\u0643\u0644 \u064a\u062f\u0648\u064a \u0648\u064a\u062d\u062a\u0648\u064a \u0639\u0644\u0649 \u0639\u0646\u0635\u0631 \u0648\u0627\u062d\u062f \u0641\u0642\u0637. \u0623\u0645\u0627 \u0641\u064a \u0627\u0644\u0643\u0648\u062f \u0627\u0644\u062b\u0627\u0646\u064a\u060c \u064a\u062a\u0645 \u062c\u0644\u0628 \u0645\u062d\u062a\u0648\u0649 XML \u0627\u0644\u0641\u0639\u0644\u064a \u0645\u0646 \u0645\u0644\u0641 \"book3.xml\" \u0627\u0644\u0630\u064a \u064a\u062d\u062a\u0648\u064a \u0639\u0644\u0649 \u062b\u0644\u0627\u062b\u0629 \u0639\u0646\u0627\u0635\u0631 \u0641\u0631\u0639\u064a\u0629.\u0627\u0644\u062d\u0644 \u0627\u0644\u0645\u0642\u062a\u0631\u062d:\u062a\u0623\u0643\u062f \u0645\u0646 \u0645\u062d\u062a\u0648\u0649 \"book3.xml\": \u0642\u0645 \u0628\u0641\u062d\u0635 \u0645\u062d\u062a\u0648\u0649 \u0645\u0644\u0641 \"book3.xml\" \u0644\u0644\u062a\u0623\u0643\u062f \u0645\u0646 \u0623\u0646 \u0647\u0646\u0627\u0643 \u062b\u0644\u0627\u062b\u0629 \u0639\u0646\u0627\u0635\u0631 \u062f\u0627\u062e\u0644 \u0643\u0645\u0627 \u0647\u0648 \u0645\u0648\u0636\u062d \u0641\u064a \u0627\u0644\u0645\u062b\u0627\u0644 \u0627\u0644\u062b\u0627\u0644\u062b \u0627\u0644\u0630\u064a \u0642\u062f\u0645\u062a\u0647.\u0645\u0639\u0627\u0644\u062c\u0629 \u0627\u0644\u0639\u0645\u0644\u064a\u0627\u062a \u0627\u0644\u063a\u064a\u0631 \u0645\u062a\u0632\u0627\u0645\u0646\u0629: \u0627\u0644\u062a\u0623\u0643\u062f \u0645\u0646 \u0627\u0644\u062a\u0639\u0627\u0645\u0644 \u0628\u0634\u0643\u0644 \u0635\u062d\u064a\u062d \u0645\u0639 \u0627\u0644\u0639\u0645\u0644\u064a\u0627\u062a \u0627\u0644\u063a\u064a\u0631 \u0645\u062a\u0632\u0627\u0645\u0646\u0629. \u0642\u0645 \u0628\u062a\u0623\u0643\u064a\u062f \u0623\u0646 \u0627\u0644\u0637\u0644\u0628 \u0628\u0627\u0633\u062a\u062e\u062f\u0627\u0645 XMLHttpRequest \u0642\u062f \u0627\u0643\u062a\u0645\u0644 \u0628\u0646\u062c\u0627\u062d \u0642\u0628\u0644 \u062a\u062d\u0644\u064a\u0644 \u0627\u0644\u0645\u062d\u062a\u0648\u0649.\u0627\u0644\u062a\u062d\u0642\u0642 \u0645\u0646 \u0647\u064a\u0643\u0644 \u0627\u0644\u0628\u064a\u0627\u0646\u0627\u062a: \u0642\u0645 \u0628\u0645\u0642\u0627\u0631\u0646\u0629 \u0647\u064a\u0627\u0643\u0644 \u0627\u0644\u0628\u064a\u0627\u0646\u0627\u062a \u0641\u064a \u0627\u0644\u0643\u0648\u062f\u064a\u0646 \u0648\u062a\u0623\u0643\u062f \u0645\u0646 \u062a\u0637\u0627\u0628\u0642\u0647\u0627 \u0623\u0648 \u062a\u0648\u0627\u0641\u0642\u0647\u0627 \u0628\u062d\u0633\u0628 \u0627\u0644\u062d\u0627\u062c\u0629.\u0628\u0627\u062a\u062e\u0627\u0630 \u0647\u0630\u0647 \u0627\u0644\u062e\u0637\u0648\u0627\u062a\u060c \u064a\u0645\u0643\u0646\u0643 \u0641\u0647\u0645 \u0648\u062a\u0635\u062d\u064a\u062d \u0627\u0644\u0627\u062e\u062a\u0644\u0627\u0641 \u0641\u064a \u0627\u0644\u0646\u062a\u0627\u0626\u062c \u0628\u064a\u0646 \u0627\u0644\u0634\u0641\u0631\u062a\u064a\u0646.","publisher":{"@id":"#Publisher","@type":"Organization","name":"\u0645\u0631\u0643\u0632 \u062d\u0644\u0648\u0644 \u062a\u0643\u0646\u0648\u0644\u0648\u062c\u064a\u0627 \u0627\u0644\u0645\u0639\u0644\u0648\u0645\u0627\u062a","logo":{"@type":"ImageObject","url":"https:\/\/it-solutions.center\/wp-content\/uploads\/2023\/09\/it-solutions-center-high-resolution-logo-white-on-transparent-background.png"},"sameAs":["https:\/\/www.facebook.com\/it.solu.center"]},"sourceOrganization":{"@id":"#Publisher"},"copyrightHolder":{"@id":"#Publisher"},"mainEntityOfPage":{"@type":"WebPage","@id":"https:\/\/it-solutions.center\/%d8%a7%d9%84%d8%a8%d8%b1%d9%85%d8%ac%d8%a9\/%d9%81%d8%a7%d8%b1%d9%82-%d9%81%d9%8a-%d8%b7%d9%88%d9%84-%d8%b9%d9%86%d8%a7%d8%b5%d8%b1-xml-%d8%aa%d8%ad%d9%84%d9%8a%d9%84-%d8%a7%d9%84%d8%a7%d8%ae%d8%aa%d9%84%d8%a7%d9%81-%d8%a8%d9%8a%d9%86-%d8%a7\/","breadcrumb":{"@id":"#Breadcrumb"}},"author":{"@type":"Person","name":"IT-Solutions","url":"https:\/\/it-solutions.center\/author\/ayoob\/"},"image":{"@type":"ImageObject","url":"https:\/\/it-solutions.center\/wp-content\/uploads\/2023\/10\/it-solutions-center-high-resolution-logo.png","width":2000,"height":1500}}</script> <div id="share-buttons-bottom" class="share-buttons share-buttons-bottom"> <div class="share-links share-centered icons-only share-rounded"> <a href="https://www.facebook.com/sharer.php?u=https://it-solutions.center/%d8%a7%d9%84%d8%a8%d8%b1%d9%85%d8%ac%d8%a9/%d9%81%d8%a7%d8%b1%d9%82-%d9%81%d9%8a-%d8%b7%d9%88%d9%84-%d8%b9%d9%86%d8%a7%d8%b5%d8%b1-xml-%d8%aa%d8%ad%d9%84%d9%8a%d9%84-%d8%a7%d9%84%d8%a7%d8%ae%d8%aa%d9%84%d8%a7%d9%81-%d8%a8%d9%8a%d9%86-%d8%a7/" rel="external noopener nofollow" title="فيسبوك" target="_blank" class="facebook-share-btn " data-raw="https://www.facebook.com/sharer.php?u={post_link}"> <span class="share-btn-icon tie-icon-facebook"></span> <span class="screen-reader-text">فيسبوك</span> </a> <a href="https://twitter.com/intent/tweet?text=%D9%81%D8%A7%D8%B1%D9%82%20%D9%81%D9%8A%20%D8%B7%D9%88%D9%84%20%D8%B9%D9%86%D8%A7%D8%B5%D8%B1%20XML%3A%20%D8%AA%D8%AD%D9%84%D9%8A%D9%84%20%D8%A7%D9%84%D8%A7%D8%AE%D8%AA%D9%84%D8%A7%D9%81%20%D8%A8%D9%8A%D9%86%20%D8%A7%D9%84%D8%B4%D9%81%D8%B1%D8%A7%D8%AA&url=https://it-solutions.center/%d8%a7%d9%84%d8%a8%d8%b1%d9%85%d8%ac%d8%a9/%d9%81%d8%a7%d8%b1%d9%82-%d9%81%d9%8a-%d8%b7%d9%88%d9%84-%d8%b9%d9%86%d8%a7%d8%b5%d8%b1-xml-%d8%aa%d8%ad%d9%84%d9%8a%d9%84-%d8%a7%d9%84%d8%a7%d8%ae%d8%aa%d9%84%d8%a7%d9%81-%d8%a8%d9%8a%d9%86-%d8%a7/" rel="external noopener nofollow" title="X" target="_blank" class="twitter-share-btn " data-raw="https://twitter.com/intent/tweet?text={post_title}&url={post_link}"> <span class="share-btn-icon tie-icon-twitter"></span> <span class="screen-reader-text">X</span> </a> <a href="https://www.linkedin.com/shareArticle?mini=true&url=https://it-solutions.center/%d8%a7%d9%84%d8%a8%d8%b1%d9%85%d8%ac%d8%a9/%d9%81%d8%a7%d8%b1%d9%82-%d9%81%d9%8a-%d8%b7%d9%88%d9%84-%d8%b9%d9%86%d8%a7%d8%b5%d8%b1-xml-%d8%aa%d8%ad%d9%84%d9%8a%d9%84-%d8%a7%d9%84%d8%a7%d8%ae%d8%aa%d9%84%d8%a7%d9%81-%d8%a8%d9%8a%d9%86-%d8%a7/&title=%D9%81%D8%A7%D8%B1%D9%82%20%D9%81%D9%8A%20%D8%B7%D9%88%D9%84%20%D8%B9%D9%86%D8%A7%D8%B5%D8%B1%20XML%3A%20%D8%AA%D8%AD%D9%84%D9%8A%D9%84%20%D8%A7%D9%84%D8%A7%D8%AE%D8%AA%D9%84%D8%A7%D9%81%20%D8%A8%D9%8A%D9%86%20%D8%A7%D9%84%D8%B4%D9%81%D8%B1%D8%A7%D8%AA" rel="external noopener nofollow" title="لينكدإن" target="_blank" class="linkedin-share-btn " data-raw="https://www.linkedin.com/shareArticle?mini=true&url={post_full_link}&title={post_title}"> <span class="share-btn-icon tie-icon-linkedin"></span> <span class="screen-reader-text">لينكدإن</span> </a> <a href="https://www.tumblr.com/share/link?url=https://it-solutions.center/%d8%a7%d9%84%d8%a8%d8%b1%d9%85%d8%ac%d8%a9/%d9%81%d8%a7%d8%b1%d9%82-%d9%81%d9%8a-%d8%b7%d9%88%d9%84-%d8%b9%d9%86%d8%a7%d8%b5%d8%b1-xml-%d8%aa%d8%ad%d9%84%d9%8a%d9%84-%d8%a7%d9%84%d8%a7%d8%ae%d8%aa%d9%84%d8%a7%d9%81-%d8%a8%d9%8a%d9%86-%d8%a7/&name=%D9%81%D8%A7%D8%B1%D9%82%20%D9%81%D9%8A%20%D8%B7%D9%88%D9%84%20%D8%B9%D9%86%D8%A7%D8%B5%D8%B1%20XML%3A%20%D8%AA%D8%AD%D9%84%D9%8A%D9%84%20%D8%A7%D9%84%D8%A7%D8%AE%D8%AA%D9%84%D8%A7%D9%81%20%D8%A8%D9%8A%D9%86%20%D8%A7%D9%84%D8%B4%D9%81%D8%B1%D8%A7%D8%AA" rel="external noopener nofollow" title="‏Tumblr" target="_blank" class="tumblr-share-btn " data-raw="https://www.tumblr.com/share/link?url={post_link}&name={post_title}"> <span class="share-btn-icon tie-icon-tumblr"></span> <span class="screen-reader-text">‏Tumblr</span> </a> <a href="https://pinterest.com/pin/create/button/?url=https://it-solutions.center/%d8%a7%d9%84%d8%a8%d8%b1%d9%85%d8%ac%d8%a9/%d9%81%d8%a7%d8%b1%d9%82-%d9%81%d9%8a-%d8%b7%d9%88%d9%84-%d8%b9%d9%86%d8%a7%d8%b5%d8%b1-xml-%d8%aa%d8%ad%d9%84%d9%8a%d9%84-%d8%a7%d9%84%d8%a7%d8%ae%d8%aa%d9%84%d8%a7%d9%81-%d8%a8%d9%8a%d9%86-%d8%a7/&description=%D9%81%D8%A7%D8%B1%D9%82%20%D9%81%D9%8A%20%D8%B7%D9%88%D9%84%20%D8%B9%D9%86%D8%A7%D8%B5%D8%B1%20XML%3A%20%D8%AA%D8%AD%D9%84%D9%8A%D9%84%20%D8%A7%D9%84%D8%A7%D8%AE%D8%AA%D9%84%D8%A7%D9%81%20%D8%A8%D9%8A%D9%86%20%D8%A7%D9%84%D8%B4%D9%81%D8%B1%D8%A7%D8%AA&media=" rel="external noopener nofollow" title="بينتيريست" target="_blank" class="pinterest-share-btn " data-raw="https://pinterest.com/pin/create/button/?url={post_link}&description={post_title}&media={post_img}"> <span class="share-btn-icon tie-icon-pinterest"></span> <span class="screen-reader-text">بينتيريست</span> </a> <a href="https://reddit.com/submit?url=https://it-solutions.center/%d8%a7%d9%84%d8%a8%d8%b1%d9%85%d8%ac%d8%a9/%d9%81%d8%a7%d8%b1%d9%82-%d9%81%d9%8a-%d8%b7%d9%88%d9%84-%d8%b9%d9%86%d8%a7%d8%b5%d8%b1-xml-%d8%aa%d8%ad%d9%84%d9%8a%d9%84-%d8%a7%d9%84%d8%a7%d8%ae%d8%aa%d9%84%d8%a7%d9%81-%d8%a8%d9%8a%d9%86-%d8%a7/&title=%D9%81%D8%A7%D8%B1%D9%82%20%D9%81%D9%8A%20%D8%B7%D9%88%D9%84%20%D8%B9%D9%86%D8%A7%D8%B5%D8%B1%20XML%3A%20%D8%AA%D8%AD%D9%84%D9%8A%D9%84%20%D8%A7%D9%84%D8%A7%D8%AE%D8%AA%D9%84%D8%A7%D9%81%20%D8%A8%D9%8A%D9%86%20%D8%A7%D9%84%D8%B4%D9%81%D8%B1%D8%A7%D8%AA" rel="external noopener nofollow" title="‏Reddit" target="_blank" class="reddit-share-btn " data-raw="https://reddit.com/submit?url={post_link}&title={post_title}"> <span class="share-btn-icon tie-icon-reddit"></span> <span class="screen-reader-text">‏Reddit</span> </a> <a href="https://vk.com/share.php?url=https://it-solutions.center/%d8%a7%d9%84%d8%a8%d8%b1%d9%85%d8%ac%d8%a9/%d9%81%d8%a7%d8%b1%d9%82-%d9%81%d9%8a-%d8%b7%d9%88%d9%84-%d8%b9%d9%86%d8%a7%d8%b5%d8%b1-xml-%d8%aa%d8%ad%d9%84%d9%8a%d9%84-%d8%a7%d9%84%d8%a7%d8%ae%d8%aa%d9%84%d8%a7%d9%81-%d8%a8%d9%8a%d9%86-%d8%a7/" rel="external noopener nofollow" title="‏VKontakte" target="_blank" class="vk-share-btn " data-raw="https://vk.com/share.php?url={post_link}"> <span class="share-btn-icon tie-icon-vk"></span> <span class="screen-reader-text">‏VKontakte</span> </a> <a href="mailto:?subject=%D9%81%D8%A7%D8%B1%D9%82%20%D9%81%D9%8A%20%D8%B7%D9%88%D9%84%20%D8%B9%D9%86%D8%A7%D8%B5%D8%B1%20XML%3A%20%D8%AA%D8%AD%D9%84%D9%8A%D9%84%20%D8%A7%D9%84%D8%A7%D8%AE%D8%AA%D9%84%D8%A7%D9%81%20%D8%A8%D9%8A%D9%86%20%D8%A7%D9%84%D8%B4%D9%81%D8%B1%D8%A7%D8%AA&body=https://it-solutions.center/%d8%a7%d9%84%d8%a8%d8%b1%d9%85%d8%ac%d8%a9/%d9%81%d8%a7%d8%b1%d9%82-%d9%81%d9%8a-%d8%b7%d9%88%d9%84-%d8%b9%d9%86%d8%a7%d8%b5%d8%b1-xml-%d8%aa%d8%ad%d9%84%d9%8a%d9%84-%d8%a7%d9%84%d8%a7%d8%ae%d8%aa%d9%84%d8%a7%d9%81-%d8%a8%d9%8a%d9%86-%d8%a7/" rel="external noopener nofollow" title="مشاركة عبر البريد" target="_blank" class="email-share-btn " data-raw="mailto:?subject={post_title}&body={post_link}"> <span class="share-btn-icon tie-icon-envelope"></span> <span class="screen-reader-text">مشاركة عبر البريد</span> </a> <a href="#" rel="external noopener nofollow" title="طباعة" target="_blank" class="print-share-btn " data-raw="#"> <span class="share-btn-icon tie-icon-print"></span> <span class="screen-reader-text">طباعة</span> </a> </div><!-- .share-links /--> </div><!-- .share-buttons /--> </article><!-- #the-post /--> <div class="stream-item stream-item-below-post"><div class="stream-item-size" style=""> <div class="stream-item stream-item-in-post stream-item-in-post-1"><div> <!-- defults --> <ins class="adsbygoogle" style="display:block" data-ad-client="ca-pub-3293364314201893" data-ad-slot="2303082872" data-ad-format="auto" data-full-width-responsive="true"></ins> <script> (adsbygoogle = window.adsbygoogle || []).push({}); </script> </div> </div> </div></div> <div class="post-components"> <div class="prev-next-post-nav container-wrapper media-overlay"> <div class="tie-col-xs-6 prev-post"> <a href="https://it-solutions.center/%d8%a7%d9%84%d8%a8%d8%b1%d9%85%d8%ac%d8%a9/%d8%aa%d8%ad%d8%b3%d9%8a%d9%86-%d8%b4%d8%b1%d9%8a%d8%b7-%d8%a7%d9%84%d8%aa%d8%b5%d9%81%d8%ad-%d8%aa%d9%88%d8%ac%d9%8a%d9%87%d8%a7%d8%aa-%d9%84%d8%aa%d8%b1%d8%aa%d9%8a%d8%a8-%d8%a3%d9%83%d8%ab%d8%b1/" style="background-image: url(https://it-solutions.center/wp-content/uploads/2023/10/it-solutions-center-high-resolution-logo-390x220.png)" class="post-thumb" rel="prev"> <div class="post-thumb-overlay-wrap"> <div class="post-thumb-overlay"> <span class="tie-icon tie-media-icon"></span> </div> </div> </a> <a href="https://it-solutions.center/%d8%a7%d9%84%d8%a8%d8%b1%d9%85%d8%ac%d8%a9/%d8%aa%d8%ad%d8%b3%d9%8a%d9%86-%d8%b4%d8%b1%d9%8a%d8%b7-%d8%a7%d9%84%d8%aa%d8%b5%d9%81%d8%ad-%d8%aa%d9%88%d8%ac%d9%8a%d9%87%d8%a7%d8%aa-%d9%84%d8%aa%d8%b1%d8%aa%d9%8a%d8%a8-%d8%a3%d9%83%d8%ab%d8%b1/" rel="prev"> <h3 class="post-title">تحسين شريط التصفح: توجيهات لترتيب أكثر فعالية</h3> </a> </div> <div class="tie-col-xs-6 next-post"> <a href="https://it-solutions.center/%d8%a7%d9%84%d8%a8%d8%b1%d9%85%d8%ac%d8%a9/%d8%aa%d9%83%d9%88%d9%8a%d9%86-%d8%aa%d9%88%d8%ac%d9%8a%d9%87-%d8%a7%d9%84%d9%85%d9%86%d8%a7%d9%81%d8%b0-%d9%81%d9%8a-linux-%d9%84%d8%af%d9%85%d8%ac-%d8%ae%d8%af%d9%85%d8%a7%d8%aa-%d9%85%d8%aa%d8%b9/" style="background-image: url(https://it-solutions.center/wp-content/uploads/2023/10/it-solutions-center-high-resolution-logo-390x220.png)" class="post-thumb" rel="next"> <div class="post-thumb-overlay-wrap"> <div class="post-thumb-overlay"> <span class="tie-icon tie-media-icon"></span> </div> </div> </a> <a href="https://it-solutions.center/%d8%a7%d9%84%d8%a8%d8%b1%d9%85%d8%ac%d8%a9/%d8%aa%d9%83%d9%88%d9%8a%d9%86-%d8%aa%d9%88%d8%ac%d9%8a%d9%87-%d8%a7%d9%84%d9%85%d9%86%d8%a7%d9%81%d8%b0-%d9%81%d9%8a-linux-%d9%84%d8%af%d9%85%d8%ac-%d8%ae%d8%af%d9%85%d8%a7%d8%aa-%d9%85%d8%aa%d8%b9/" rel="next"> <h3 class="post-title">تكوين توجيه المنافذ في Linux لدمج خدمات متعددة تحت عنوان IP واحد</h3> </a> </div> </div><!-- .prev-next-post-nav /--> <div id="related-posts" class="container-wrapper has-extra-post"> <div class="mag-box-title the-global-title"> <h3>مقالات ذات صلة</h3> </div> <div class="related-posts-list"> <div class="related-item tie-standard"> <a aria-label="تنسيق تاريخ timestamp إلى Y-m-d في PHP" href="https://it-solutions.center/%d8%a7%d9%84%d8%a8%d8%b1%d9%85%d8%ac%d8%a9/%d8%aa%d9%86%d8%b3%d9%8a%d9%82-%d8%aa%d8%a7%d8%b1%d9%8a%d8%ae-timestamp-%d8%a5%d9%84%d9%89-y-m-d-%d9%81%d9%8a-php/" class="post-thumb"> <div class="post-thumb-overlay-wrap"> <div class="post-thumb-overlay"> <span class="tie-icon tie-media-icon"></span> </div> </div> <img width="390" height="220" src="https://it-solutions.center/wp-content/uploads/2023/10/it-solutions-center-high-resolution-logo-390x220.png" class="attachment-jannah-image-large size-jannah-image-large" alt="" decoding="async" fetchpriority="high" /></a> <h3 class="post-title"><a href="https://it-solutions.center/%d8%a7%d9%84%d8%a8%d8%b1%d9%85%d8%ac%d8%a9/%d8%aa%d9%86%d8%b3%d9%8a%d9%82-%d8%aa%d8%a7%d8%b1%d9%8a%d8%ae-timestamp-%d8%a5%d9%84%d9%89-y-m-d-%d9%81%d9%8a-php/">تنسيق تاريخ timestamp إلى Y-m-d في PHP</a></h3> <div class="post-meta clearfix"><span class="date meta-item tie-icon">01/02/2024</span></div><!-- .post-meta --> </div><!-- .related-item /--> <div class="related-item tie-standard"> <a aria-label="تكوين Sublime Text 3 لتطوير Node.js: نصائح فعّالة." href="https://it-solutions.center/%d8%a7%d9%84%d8%a8%d8%b1%d9%85%d8%ac%d8%a9/%d8%aa%d9%83%d9%88%d9%8a%d9%86-sublime-text-3-%d9%84%d8%aa%d8%b7%d9%88%d9%8a%d8%b1-node-js-%d9%86%d8%b5%d8%a7%d8%a6%d8%ad-%d9%81%d8%b9%d9%91%d8%a7%d9%84%d8%a9/" class="post-thumb"> <div class="post-thumb-overlay-wrap"> <div class="post-thumb-overlay"> <span class="tie-icon tie-media-icon"></span> </div> </div> <img width="390" height="220" src="https://it-solutions.center/wp-content/uploads/2023/10/it-solutions-center-high-resolution-logo-390x220.png" class="attachment-jannah-image-large size-jannah-image-large" alt="" decoding="async" /></a> <h3 class="post-title"><a href="https://it-solutions.center/%d8%a7%d9%84%d8%a8%d8%b1%d9%85%d8%ac%d8%a9/%d8%aa%d9%83%d9%88%d9%8a%d9%86-sublime-text-3-%d9%84%d8%aa%d8%b7%d9%88%d9%8a%d8%b1-node-js-%d9%86%d8%b5%d8%a7%d8%a6%d8%ad-%d9%81%d8%b9%d9%91%d8%a7%d9%84%d8%a9/">تكوين Sublime Text 3 لتطوير Node.js: نصائح فعّالة.</a></h3> <div class="post-meta clearfix"><span class="date meta-item tie-icon">04/02/2024</span></div><!-- .post-meta --> </div><!-- .related-item /--> <div class="related-item tie-standard"> <a aria-label="تبديل المستخدم وإضافة كلمة مرور في SQL Server" href="https://it-solutions.center/%d8%a7%d9%84%d8%a8%d8%b1%d9%85%d8%ac%d8%a9/%d8%aa%d8%a8%d8%af%d9%8a%d9%84-%d8%a7%d9%84%d9%85%d8%b3%d8%aa%d8%ae%d8%af%d9%85-%d9%88%d8%a5%d8%b6%d8%a7%d9%81%d8%a9-%d9%83%d9%84%d9%85%d8%a9-%d9%85%d8%b1%d9%88%d8%b1-%d9%81%d9%8a-sql-server/" class="post-thumb"> <div class="post-thumb-overlay-wrap"> <div class="post-thumb-overlay"> <span class="tie-icon tie-media-icon"></span> </div> </div> <img width="390" height="220" src="https://it-solutions.center/wp-content/uploads/2023/10/it-solutions-center-high-resolution-logo-390x220.png" class="attachment-jannah-image-large size-jannah-image-large" alt="" decoding="async" /></a> <h3 class="post-title"><a href="https://it-solutions.center/%d8%a7%d9%84%d8%a8%d8%b1%d9%85%d8%ac%d8%a9/%d8%aa%d8%a8%d8%af%d9%8a%d9%84-%d8%a7%d9%84%d9%85%d8%b3%d8%aa%d8%ae%d8%af%d9%85-%d9%88%d8%a5%d8%b6%d8%a7%d9%81%d8%a9-%d9%83%d9%84%d9%85%d8%a9-%d9%85%d8%b1%d9%88%d8%b1-%d9%81%d9%8a-sql-server/">تبديل المستخدم وإضافة كلمة مرور في SQL Server</a></h3> <div class="post-meta clearfix"><span class="date meta-item tie-icon">19/03/2024</span></div><!-- .post-meta --> </div><!-- .related-item /--> <div class="related-item tie-standard"> <a aria-label="مجتمعات IntelliJ IDEA على Slack" href="https://it-solutions.center/%d8%a7%d9%84%d8%a8%d8%b1%d9%85%d8%ac%d8%a9/%d9%85%d8%ac%d8%aa%d9%85%d8%b9%d8%a7%d8%aa-intellij-idea-%d8%b9%d9%84%d9%89-slack/" class="post-thumb"> <div class="post-thumb-overlay-wrap"> <div class="post-thumb-overlay"> <span class="tie-icon tie-media-icon"></span> </div> </div> <img width="390" height="220" src="https://it-solutions.center/wp-content/uploads/2023/10/it-solutions-center-high-resolution-logo-390x220.png" class="attachment-jannah-image-large size-jannah-image-large" alt="" decoding="async" loading="lazy" /></a> <h3 class="post-title"><a href="https://it-solutions.center/%d8%a7%d9%84%d8%a8%d8%b1%d9%85%d8%ac%d8%a9/%d9%85%d8%ac%d8%aa%d9%85%d8%b9%d8%a7%d8%aa-intellij-idea-%d8%b9%d9%84%d9%89-slack/">مجتمعات IntelliJ IDEA على Slack</a></h3> <div class="post-meta clearfix"><span class="date meta-item tie-icon">25/03/2024</span></div><!-- .post-meta --> </div><!-- .related-item /--> </div><!-- .related-posts-list /--> </div><!-- #related-posts /--> <div class="stream-item stream-item-below-post-comments"><div class="stream-item-size" style=""> <div class="stream-item stream-item-in-post stream-item-in-post-1"><div> <!-- defults --> <ins class="adsbygoogle" style="display:block" data-ad-client="ca-pub-3293364314201893" data-ad-slot="2303082872" data-ad-format="auto" data-full-width-responsive="true"></ins> <script> (adsbygoogle = window.adsbygoogle || []).push({}); </script> </div> </div> </div></div> </div><!-- .post-components /--> </div><!-- .main-content --> <div id="check-also-box" class="container-wrapper check-also-left"> <div class="widget-title the-global-title"> <div class="the-subtitle">شاهد أيضاً</div> <a href="#" id="check-also-close" class="remove"> <span class="screen-reader-text">إغلاق</span> </a> </div> <div class="widget"> <ul class="posts-list-items"> <li class="widget-single-post-item widget-post-list tie-standard"> <div class="post-widget-thumbnail"> <a aria-label="استخراج بيانات باستخدام تعبيرات عادية في R" href="https://it-solutions.center/%d8%a7%d9%84%d8%a8%d8%b1%d9%85%d8%ac%d8%a9/%d8%a7%d8%b3%d8%aa%d8%ae%d8%b1%d8%a7%d8%ac-%d8%a8%d9%8a%d8%a7%d9%86%d8%a7%d8%aa-%d8%a8%d8%a7%d8%b3%d8%aa%d8%ae%d8%af%d8%a7%d9%85-%d8%aa%d8%b9%d8%a8%d9%8a%d8%b1%d8%a7%d8%aa-%d8%b9%d8%a7%d8%af%d9%8a/" class="post-thumb"> <div class="post-thumb-overlay-wrap"> <div class="post-thumb-overlay"> <span class="tie-icon tie-media-icon"></span> </div> </div> <img width="220" height="150" src="https://it-solutions.center/wp-content/uploads/2023/10/it-solutions-center-high-resolution-logo-220x150.png" class="attachment-jannah-image-small size-jannah-image-small tie-small-image" alt="" decoding="async" loading="lazy" /></a> </div><!-- post-alignleft /--> <div class="post-widget-body "> <a class="post-title the-subtitle" href="https://it-solutions.center/%d8%a7%d9%84%d8%a8%d8%b1%d9%85%d8%ac%d8%a9/%d8%a7%d8%b3%d8%aa%d8%ae%d8%b1%d8%a7%d8%ac-%d8%a8%d9%8a%d8%a7%d9%86%d8%a7%d8%aa-%d8%a8%d8%a7%d8%b3%d8%aa%d8%ae%d8%af%d8%a7%d9%85-%d8%aa%d8%b9%d8%a8%d9%8a%d8%b1%d8%a7%d8%aa-%d8%b9%d8%a7%d8%af%d9%8a/">استخراج بيانات باستخدام تعبيرات عادية في R</a> <div class="post-meta"> <span class="date meta-item tie-icon">14/04/2024</span> </div> </div> </li> <li class="widget-single-post-item widget-post-list tie-standard"> <div class="post-widget-thumbnail"> <a aria-label="تحسين كود العد بتكرار الكلمات" href="https://it-solutions.center/%d8%a7%d9%84%d8%a8%d8%b1%d9%85%d8%ac%d8%a9/%d8%aa%d8%ad%d8%b3%d9%8a%d9%86-%d9%83%d9%88%d8%af-%d8%a7%d9%84%d8%b9%d8%af-%d8%a8%d8%aa%d9%83%d8%b1%d8%a7%d8%b1-%d8%a7%d9%84%d9%83%d9%84%d9%85%d8%a7%d8%aa/" class="post-thumb"> <div class="post-thumb-overlay-wrap"> <div class="post-thumb-overlay"> <span class="tie-icon tie-media-icon"></span> </div> </div> <img width="220" height="150" src="https://it-solutions.center/wp-content/uploads/2023/10/it-solutions-center-high-resolution-logo-220x150.png" class="attachment-jannah-image-small size-jannah-image-small tie-small-image" alt="" decoding="async" loading="lazy" /></a> </div><!-- post-alignleft /--> <div class="post-widget-body "> <a class="post-title the-subtitle" href="https://it-solutions.center/%d8%a7%d9%84%d8%a8%d8%b1%d9%85%d8%ac%d8%a9/%d8%aa%d8%ad%d8%b3%d9%8a%d9%86-%d9%83%d9%88%d8%af-%d8%a7%d9%84%d8%b9%d8%af-%d8%a8%d8%aa%d9%83%d8%b1%d8%a7%d8%b1-%d8%a7%d9%84%d9%83%d9%84%d9%85%d8%a7%d8%aa/">تحسين كود العد بتكرار الكلمات</a> <div class="post-meta"> <span class="date meta-item tie-icon">14/04/2024</span> </div> </div> </li> <li class="widget-single-post-item widget-post-list tie-standard"> <div class="post-widget-thumbnail"> <a aria-label="فتح وتحليل بيانات CPS في R" href="https://it-solutions.center/%d8%a7%d9%84%d8%a8%d8%b1%d9%85%d8%ac%d8%a9/%d9%81%d8%aa%d8%ad-%d9%88%d8%aa%d8%ad%d9%84%d9%8a%d9%84-%d8%a8%d9%8a%d8%a7%d9%86%d8%a7%d8%aa-cps-%d9%81%d9%8a-r/" class="post-thumb"> <div class="post-thumb-overlay-wrap"> <div class="post-thumb-overlay"> <span class="tie-icon tie-media-icon"></span> </div> </div> <img width="220" height="150" src="https://it-solutions.center/wp-content/uploads/2023/10/it-solutions-center-high-resolution-logo-220x150.png" class="attachment-jannah-image-small size-jannah-image-small tie-small-image" alt="" decoding="async" loading="lazy" /></a> </div><!-- post-alignleft /--> <div class="post-widget-body "> <a class="post-title the-subtitle" href="https://it-solutions.center/%d8%a7%d9%84%d8%a8%d8%b1%d9%85%d8%ac%d8%a9/%d9%81%d8%aa%d8%ad-%d9%88%d8%aa%d8%ad%d9%84%d9%8a%d9%84-%d8%a8%d9%8a%d8%a7%d9%86%d8%a7%d8%aa-cps-%d9%81%d9%8a-r/">فتح وتحليل بيانات CPS في R</a> <div class="post-meta"> <span class="date meta-item tie-icon">14/04/2024</span> </div> </div> </li> <li class="widget-single-post-item widget-post-list tie-standard"> <div class="post-widget-thumbnail"> <a aria-label="حساب تكرار الأرقام في الأعداد الصحيحة" href="https://it-solutions.center/%d8%a7%d9%84%d8%a8%d8%b1%d9%85%d8%ac%d8%a9/%d8%ad%d8%b3%d8%a7%d8%a8-%d8%aa%d9%83%d8%b1%d8%a7%d8%b1-%d8%a7%d9%84%d8%a3%d8%b1%d9%82%d8%a7%d9%85-%d9%81%d9%8a-%d8%a7%d9%84%d8%a3%d8%b9%d8%af%d8%a7%d8%af-%d8%a7%d9%84%d8%b5%d8%ad%d9%8a%d8%ad%d8%a9/" class="post-thumb"> <div class="post-thumb-overlay-wrap"> <div class="post-thumb-overlay"> <span class="tie-icon tie-media-icon"></span> </div> </div> <img width="220" height="150" src="https://it-solutions.center/wp-content/uploads/2023/10/it-solutions-center-high-resolution-logo-220x150.png" class="attachment-jannah-image-small size-jannah-image-small tie-small-image" alt="" decoding="async" loading="lazy" /></a> </div><!-- post-alignleft /--> <div class="post-widget-body "> <a class="post-title the-subtitle" href="https://it-solutions.center/%d8%a7%d9%84%d8%a8%d8%b1%d9%85%d8%ac%d8%a9/%d8%ad%d8%b3%d8%a7%d8%a8-%d8%aa%d9%83%d8%b1%d8%a7%d8%b1-%d8%a7%d9%84%d8%a3%d8%b1%d9%82%d8%a7%d9%85-%d9%81%d9%8a-%d8%a7%d9%84%d8%a3%d8%b9%d8%af%d8%a7%d8%af-%d8%a7%d9%84%d8%b5%d8%ad%d9%8a%d8%ad%d8%a9/">حساب تكرار الأرقام في الأعداد الصحيحة</a> <div class="post-meta"> <span class="date meta-item tie-icon">14/04/2024</span> </div> </div> </li> <li class="widget-single-post-item widget-post-list tie-standard"> <div class="post-widget-thumbnail"> <a aria-label="تعقيد البرامج: فهم وحسابه" href="https://it-solutions.center/%d8%a7%d9%84%d8%a8%d8%b1%d9%85%d8%ac%d8%a9/%d8%aa%d8%b9%d9%82%d9%8a%d8%af-%d8%a7%d9%84%d8%a8%d8%b1%d8%a7%d9%85%d8%ac-%d9%81%d9%87%d9%85-%d9%88%d8%ad%d8%b3%d8%a7%d8%a8%d9%87/" class="post-thumb"> <div class="post-thumb-overlay-wrap"> <div class="post-thumb-overlay"> <span class="tie-icon tie-media-icon"></span> </div> </div> <img width="220" height="150" src="https://it-solutions.center/wp-content/uploads/2023/10/it-solutions-center-high-resolution-logo-220x150.png" class="attachment-jannah-image-small size-jannah-image-small tie-small-image" alt="" decoding="async" loading="lazy" /></a> </div><!-- post-alignleft /--> <div class="post-widget-body "> <a class="post-title the-subtitle" href="https://it-solutions.center/%d8%a7%d9%84%d8%a8%d8%b1%d9%85%d8%ac%d8%a9/%d8%aa%d8%b9%d9%82%d9%8a%d8%af-%d8%a7%d9%84%d8%a8%d8%b1%d8%a7%d9%85%d8%ac-%d9%81%d9%87%d9%85-%d9%88%d8%ad%d8%b3%d8%a7%d8%a8%d9%87/">تعقيد البرامج: فهم وحسابه</a> <div class="post-meta"> <span class="date meta-item tie-icon">14/04/2024</span> </div> </div> </li> </ul><!-- .related-posts-list /--> </div> </div><!-- #related-posts /--> <aside class="sidebar tie-col-md-4 tie-col-xs-12 normal-side is-sticky" aria-label="القائمة الجانبية الرئيسية"> <div class="theiaStickySidebar"> <div id="search-3" class="container-wrapper widget widget_search"><form role="search" method="get" class="search-form" action="https://it-solutions.center/"> <label> <span class="screen-reader-text">البحث عن:</span> <input type="search" class="search-field" placeholder="بحث …" value="" name="s" /> </label> <input type="submit" class="search-submit" value="بحث" /> </form><div class="clearfix"></div></div><!-- .widget /--> <div id="recent-posts-3" class="container-wrapper widget widget_recent_entries"> <div class="widget-title the-global-title"><div class="the-subtitle">أحدث المقالات<span class="widget-title-icon tie-icon"></span></div></div> <ul> <li> <a href="https://it-solutions.center/%d8%a7%d9%84%d8%a8%d8%b1%d9%85%d8%ac%d8%a9/%d9%81%d9%87%d9%85-%d8%a7%d9%84%d8%aa%d8%b4%d8%a7%d8%a8%d9%87%d8%a7%d8%aa-%d9%88%d8%a7%d9%84%d9%81%d8%b1%d9%88%d9%82-%d8%a7%d9%84%d8%aa%d9%83%d9%88%d9%8a%d9%86-%d9%88%d8%a7%d9%84%d8%b5%d9%81%d9%88/">فهم التشابهات والفروق: التكوين والصفوف الداخلية</a> <span class="post-date">15/04/2024</span> </li> <li> <a href="https://it-solutions.center/%d8%a7%d9%84%d8%a8%d8%b1%d9%85%d8%ac%d8%a9/%d9%83%d9%8a%d9%81%d9%8a%d8%a9-%d8%b6%d8%a8%d8%b7-%d8%a7%d9%84%d9%83%d9%88%d9%83%d9%8a%d8%b2-%d9%88%d8%a7%d9%84%d9%88%d8%b5%d9%88%d9%84-%d9%84%d8%a8%d9%8a%d8%a7%d9%86%d8%a7%d8%aa-%d8%a7%d9%84%d9%85/">كيفية ضبط الكوكيز والوصول لبيانات المواقع باستخدام PHP</a> <span class="post-date">15/04/2024</span> </li> <li> <a href="https://it-solutions.center/%d8%a7%d9%84%d8%a8%d8%b1%d9%85%d8%ac%d8%a9/%d8%a7%d8%b3%d8%aa%d9%83%d8%b4%d8%a7%d9%81-%d8%a7%d9%84%d8%a8%d8%af%d9%8a%d9%84-%d9%84%d9%80-findasync-%d9%81%d9%8a-linq-%d8%a7%d9%84%d8%ad%d9%84%d9%88%d9%84-%d8%a8%d8%a7%d8%b3%d8%aa%d8%ae%d8%af/">استكشاف البديل لـ FindAsync في LINQ: الحلول باستخدام SingleOrDefaultAsync</a> <span class="post-date">15/04/2024</span> </li> <li> <a href="https://it-solutions.center/%d8%a7%d9%84%d8%a8%d8%b1%d9%85%d8%ac%d8%a9/%d8%aa%d8%ad%d8%b3%d9%8a%d9%86-%d8%a3%d8%af%d8%a7%d8%a1-%d8%a7%d9%84%d8%aa%d8%b7%d8%a8%d9%8a%d9%82%d8%a7%d8%aa-%d8%b9%d9%84%d9%89-ios/">تحسين أداء التطبيقات على iOS</a> <span class="post-date">15/04/2024</span> </li> <li> <a href="https://it-solutions.center/%d8%a7%d9%84%d8%a8%d8%b1%d9%85%d8%ac%d8%a9/%d9%83%d9%8a%d9%81%d9%8a%d8%a9-%d8%a5%d8%b6%d8%a7%d9%81%d8%a9-%d9%85%d8%ad%d8%aa%d9%88%d9%89-%d8%a8%d8%a7%d8%b3%d8%aa%d8%ae%d8%af%d8%a7%d9%85-curl/">كيفية إضافة محتوى باستخدام CURL</a> <span class="post-date">15/04/2024</span> </li> </ul> <div class="clearfix"></div></div><!-- .widget /--> </div><!-- .theiaStickySidebar /--> </aside><!-- .sidebar /--> </div><!-- .main-content-row /--></div><!-- #content /--> <div class="adsbygoogle Ad-Container sidebar-ad ad-slot" data-ad-manager-id="1" data-ad-module="1" data-ad-width="100" data-adblockkey="200" data-advadstrackid="1"> <div style="z-index:-1; height:0; width:1px; visibility: hidden; bottom: -1px; left: 0;"></div> </div> <div class="stream-item stream-item-above-footer"><div class="stream-item-size" style=""> <div class="stream-item stream-item-in-post stream-item-in-post-1"><div> <!-- defults --> <ins class="adsbygoogle" style="display:block" data-ad-client="ca-pub-3293364314201893" data-ad-slot="2303082872" data-ad-format="auto" data-full-width-responsive="true"></ins> <script> (adsbygoogle = window.adsbygoogle || []).push({}); </script> </div> </div> </div></div> <footer id="footer" class="site-footer dark-skin dark-widgetized-area"> <div id="site-info" class="site-info"> <div class="container"> <div class="tie-row"> <div class="tie-col-md-12"> <div class="copyright-text copyright-text-first"><footer class="footer-container"> © Copyright <?php echo date('Y'); ?>, All Rights Reserved <span><a href="/privacy">| Privacy</a></span> <span><a href="/terms">| Terms</a></span> <span style="color:red;" class="tie-icon-heart"></span> </footer> </div><div class="copyright-text copyright-text-second"> <span><strong>Our Other Projects:</strong></span> <span><a href="https://freesourcelibrary.com/" target="_blank">| Free Source Library</a></span> <span><a href="https://revistacompleta.com/" target="_blank">| La Revista Completa</a></span> <span><a href="https://meukultura.com//" target="_blank">| Meu Kultura</a></span> <span><a href="https://lasujets.com/" target="_blank">| La Sujets</a></span> <span><a href="https://lovewithrecipes.com/" target="_blank">| Love With Recipes</a></span> <span><a href="https://mwade3.com/" target="_blank">| مواضيع</a></span> <span><a href="https://it-solutions.center/" target="_blank">| مركز حلول تكنولوجيا المعلومات</a></span> <span><a href="https://qr-solutions.com/" target="_blank">| QR Solutions</a></span></div> </div><!-- .tie-col /--> </div><!-- .tie-row /--> </div><!-- .container /--> </div><!-- #site-info /--> </footer><!-- #footer /--> <div id="share-buttons-mobile" class="share-buttons share-buttons-mobile"> <div class="share-links icons-only"> <a href="https://www.facebook.com/sharer.php?u=https://it-solutions.center/%d8%a7%d9%84%d8%a8%d8%b1%d9%85%d8%ac%d8%a9/%d9%81%d8%a7%d8%b1%d9%82-%d9%81%d9%8a-%d8%b7%d9%88%d9%84-%d8%b9%d9%86%d8%a7%d8%b5%d8%b1-xml-%d8%aa%d8%ad%d9%84%d9%8a%d9%84-%d8%a7%d9%84%d8%a7%d8%ae%d8%aa%d9%84%d8%a7%d9%81-%d8%a8%d9%8a%d9%86-%d8%a7/" rel="external noopener nofollow" title="فيسبوك" target="_blank" class="facebook-share-btn " data-raw="https://www.facebook.com/sharer.php?u={post_link}"> <span class="share-btn-icon tie-icon-facebook"></span> <span class="screen-reader-text">فيسبوك</span> </a> <a href="https://twitter.com/intent/tweet?text=%D9%81%D8%A7%D8%B1%D9%82%20%D9%81%D9%8A%20%D8%B7%D9%88%D9%84%20%D8%B9%D9%86%D8%A7%D8%B5%D8%B1%20XML%3A%20%D8%AA%D8%AD%D9%84%D9%8A%D9%84%20%D8%A7%D9%84%D8%A7%D8%AE%D8%AA%D9%84%D8%A7%D9%81%20%D8%A8%D9%8A%D9%86%20%D8%A7%D9%84%D8%B4%D9%81%D8%B1%D8%A7%D8%AA&url=https://it-solutions.center/%d8%a7%d9%84%d8%a8%d8%b1%d9%85%d8%ac%d8%a9/%d9%81%d8%a7%d8%b1%d9%82-%d9%81%d9%8a-%d8%b7%d9%88%d9%84-%d8%b9%d9%86%d8%a7%d8%b5%d8%b1-xml-%d8%aa%d8%ad%d9%84%d9%8a%d9%84-%d8%a7%d9%84%d8%a7%d8%ae%d8%aa%d9%84%d8%a7%d9%81-%d8%a8%d9%8a%d9%86-%d8%a7/" rel="external noopener nofollow" title="X" target="_blank" class="twitter-share-btn " data-raw="https://twitter.com/intent/tweet?text={post_title}&url={post_link}"> <span class="share-btn-icon tie-icon-twitter"></span> <span class="screen-reader-text">X</span> </a> <a href="https://www.linkedin.com/shareArticle?mini=true&url=https://it-solutions.center/%d8%a7%d9%84%d8%a8%d8%b1%d9%85%d8%ac%d8%a9/%d9%81%d8%a7%d8%b1%d9%82-%d9%81%d9%8a-%d8%b7%d9%88%d9%84-%d8%b9%d9%86%d8%a7%d8%b5%d8%b1-xml-%d8%aa%d8%ad%d9%84%d9%8a%d9%84-%d8%a7%d9%84%d8%a7%d8%ae%d8%aa%d9%84%d8%a7%d9%81-%d8%a8%d9%8a%d9%86-%d8%a7/&title=%D9%81%D8%A7%D8%B1%D9%82%20%D9%81%D9%8A%20%D8%B7%D9%88%D9%84%20%D8%B9%D9%86%D8%A7%D8%B5%D8%B1%20XML%3A%20%D8%AA%D8%AD%D9%84%D9%8A%D9%84%20%D8%A7%D9%84%D8%A7%D8%AE%D8%AA%D9%84%D8%A7%D9%81%20%D8%A8%D9%8A%D9%86%20%D8%A7%D9%84%D8%B4%D9%81%D8%B1%D8%A7%D8%AA" rel="external noopener nofollow" title="لينكدإن" target="_blank" class="linkedin-share-btn " data-raw="https://www.linkedin.com/shareArticle?mini=true&url={post_full_link}&title={post_title}"> <span class="share-btn-icon tie-icon-linkedin"></span> <span class="screen-reader-text">لينكدإن</span> </a> <a href="https://www.tumblr.com/share/link?url=https://it-solutions.center/%d8%a7%d9%84%d8%a8%d8%b1%d9%85%d8%ac%d8%a9/%d9%81%d8%a7%d8%b1%d9%82-%d9%81%d9%8a-%d8%b7%d9%88%d9%84-%d8%b9%d9%86%d8%a7%d8%b5%d8%b1-xml-%d8%aa%d8%ad%d9%84%d9%8a%d9%84-%d8%a7%d9%84%d8%a7%d8%ae%d8%aa%d9%84%d8%a7%d9%81-%d8%a8%d9%8a%d9%86-%d8%a7/&name=%D9%81%D8%A7%D8%B1%D9%82%20%D9%81%D9%8A%20%D8%B7%D9%88%D9%84%20%D8%B9%D9%86%D8%A7%D8%B5%D8%B1%20XML%3A%20%D8%AA%D8%AD%D9%84%D9%8A%D9%84%20%D8%A7%D9%84%D8%A7%D8%AE%D8%AA%D9%84%D8%A7%D9%81%20%D8%A8%D9%8A%D9%86%20%D8%A7%D9%84%D8%B4%D9%81%D8%B1%D8%A7%D8%AA" rel="external noopener nofollow" title="‏Tumblr" target="_blank" class="tumblr-share-btn " data-raw="https://www.tumblr.com/share/link?url={post_link}&name={post_title}"> <span class="share-btn-icon tie-icon-tumblr"></span> <span class="screen-reader-text">‏Tumblr</span> </a> <a href="https://pinterest.com/pin/create/button/?url=https://it-solutions.center/%d8%a7%d9%84%d8%a8%d8%b1%d9%85%d8%ac%d8%a9/%d9%81%d8%a7%d8%b1%d9%82-%d9%81%d9%8a-%d8%b7%d9%88%d9%84-%d8%b9%d9%86%d8%a7%d8%b5%d8%b1-xml-%d8%aa%d8%ad%d9%84%d9%8a%d9%84-%d8%a7%d9%84%d8%a7%d8%ae%d8%aa%d9%84%d8%a7%d9%81-%d8%a8%d9%8a%d9%86-%d8%a7/&description=%D9%81%D8%A7%D8%B1%D9%82%20%D9%81%D9%8A%20%D8%B7%D9%88%D9%84%20%D8%B9%D9%86%D8%A7%D8%B5%D8%B1%20XML%3A%20%D8%AA%D8%AD%D9%84%D9%8A%D9%84%20%D8%A7%D9%84%D8%A7%D8%AE%D8%AA%D9%84%D8%A7%D9%81%20%D8%A8%D9%8A%D9%86%20%D8%A7%D9%84%D8%B4%D9%81%D8%B1%D8%A7%D8%AA&media=" rel="external noopener nofollow" title="بينتيريست" target="_blank" class="pinterest-share-btn " data-raw="https://pinterest.com/pin/create/button/?url={post_link}&description={post_title}&media={post_img}"> <span class="share-btn-icon tie-icon-pinterest"></span> <span class="screen-reader-text">بينتيريست</span> </a> <a href="https://reddit.com/submit?url=https://it-solutions.center/%d8%a7%d9%84%d8%a8%d8%b1%d9%85%d8%ac%d8%a9/%d9%81%d8%a7%d8%b1%d9%82-%d9%81%d9%8a-%d8%b7%d9%88%d9%84-%d8%b9%d9%86%d8%a7%d8%b5%d8%b1-xml-%d8%aa%d8%ad%d9%84%d9%8a%d9%84-%d8%a7%d9%84%d8%a7%d8%ae%d8%aa%d9%84%d8%a7%d9%81-%d8%a8%d9%8a%d9%86-%d8%a7/&title=%D9%81%D8%A7%D8%B1%D9%82%20%D9%81%D9%8A%20%D8%B7%D9%88%D9%84%20%D8%B9%D9%86%D8%A7%D8%B5%D8%B1%20XML%3A%20%D8%AA%D8%AD%D9%84%D9%8A%D9%84%20%D8%A7%D9%84%D8%A7%D8%AE%D8%AA%D9%84%D8%A7%D9%81%20%D8%A8%D9%8A%D9%86%20%D8%A7%D9%84%D8%B4%D9%81%D8%B1%D8%A7%D8%AA" rel="external noopener nofollow" title="‏Reddit" target="_blank" class="reddit-share-btn " data-raw="https://reddit.com/submit?url={post_link}&title={post_title}"> <span class="share-btn-icon tie-icon-reddit"></span> <span class="screen-reader-text">‏Reddit</span> </a> <a href="fb-messenger://share?app_id=5303202981&display=popup&link=https://it-solutions.center/%d8%a7%d9%84%d8%a8%d8%b1%d9%85%d8%ac%d8%a9/%d9%81%d8%a7%d8%b1%d9%82-%d9%81%d9%8a-%d8%b7%d9%88%d9%84-%d8%b9%d9%86%d8%a7%d8%b5%d8%b1-xml-%d8%aa%d8%ad%d9%84%d9%8a%d9%84-%d8%a7%d9%84%d8%a7%d8%ae%d8%aa%d9%84%d8%a7%d9%81-%d8%a8%d9%8a%d9%86-%d8%a7/&redirect_uri=https://it-solutions.center/%d8%a7%d9%84%d8%a8%d8%b1%d9%85%d8%ac%d8%a9/%d9%81%d8%a7%d8%b1%d9%82-%d9%81%d9%8a-%d8%b7%d9%88%d9%84-%d8%b9%d9%86%d8%a7%d8%b5%d8%b1-xml-%d8%aa%d8%ad%d9%84%d9%8a%d9%84-%d8%a7%d9%84%d8%a7%d8%ae%d8%aa%d9%84%d8%a7%d9%81-%d8%a8%d9%8a%d9%86-%d8%a7/" rel="external noopener nofollow" title="ماسنجر" target="_blank" class="messenger-mob-share-btn messenger-share-btn " data-raw="fb-messenger://share?app_id=5303202981&display=popup&link={post_link}&redirect_uri={post_link}"> <span class="share-btn-icon tie-icon-messenger"></span> <span class="screen-reader-text">ماسنجر</span> </a> <a href="https://www.facebook.com/dialog/send?app_id=5303202981&display=popup&link=https://it-solutions.center/%d8%a7%d9%84%d8%a8%d8%b1%d9%85%d8%ac%d8%a9/%d9%81%d8%a7%d8%b1%d9%82-%d9%81%d9%8a-%d8%b7%d9%88%d9%84-%d8%b9%d9%86%d8%a7%d8%b5%d8%b1-xml-%d8%aa%d8%ad%d9%84%d9%8a%d9%84-%d8%a7%d9%84%d8%a7%d8%ae%d8%aa%d9%84%d8%a7%d9%81-%d8%a8%d9%8a%d9%86-%d8%a7/&redirect_uri=https://it-solutions.center/%d8%a7%d9%84%d8%a8%d8%b1%d9%85%d8%ac%d8%a9/%d9%81%d8%a7%d8%b1%d9%82-%d9%81%d9%8a-%d8%b7%d9%88%d9%84-%d8%b9%d9%86%d8%a7%d8%b5%d8%b1-xml-%d8%aa%d8%ad%d9%84%d9%8a%d9%84-%d8%a7%d9%84%d8%a7%d8%ae%d8%aa%d9%84%d8%a7%d9%81-%d8%a8%d9%8a%d9%86-%d8%a7/" rel="external noopener nofollow" title="ماسنجر" target="_blank" class="messenger-desktop-share-btn messenger-share-btn " data-raw="https://www.facebook.com/dialog/send?app_id=5303202981&display=popup&link={post_link}&redirect_uri={post_link}"> <span class="share-btn-icon tie-icon-messenger"></span> <span class="screen-reader-text">ماسنجر</span> </a> <a href="https://api.whatsapp.com/send?text=%D9%81%D8%A7%D8%B1%D9%82%20%D9%81%D9%8A%20%D8%B7%D9%88%D9%84%20%D8%B9%D9%86%D8%A7%D8%B5%D8%B1%20XML%3A%20%D8%AA%D8%AD%D9%84%D9%8A%D9%84%20%D8%A7%D9%84%D8%A7%D8%AE%D8%AA%D9%84%D8%A7%D9%81%20%D8%A8%D9%8A%D9%86%20%D8%A7%D9%84%D8%B4%D9%81%D8%B1%D8%A7%D8%AA%20https://it-solutions.center/%d8%a7%d9%84%d8%a8%d8%b1%d9%85%d8%ac%d8%a9/%d9%81%d8%a7%d8%b1%d9%82-%d9%81%d9%8a-%d8%b7%d9%88%d9%84-%d8%b9%d9%86%d8%a7%d8%b5%d8%b1-xml-%d8%aa%d8%ad%d9%84%d9%8a%d9%84-%d8%a7%d9%84%d8%a7%d8%ae%d8%aa%d9%84%d8%a7%d9%81-%d8%a8%d9%8a%d9%86-%d8%a7/" rel="external noopener nofollow" title="واتساب" target="_blank" class="whatsapp-share-btn " data-raw="https://api.whatsapp.com/send?text={post_title}%20{post_link}"> <span class="share-btn-icon tie-icon-whatsapp"></span> <span class="screen-reader-text">واتساب</span> </a> <a href="https://telegram.me/share/url?url=https://it-solutions.center/%d8%a7%d9%84%d8%a8%d8%b1%d9%85%d8%ac%d8%a9/%d9%81%d8%a7%d8%b1%d9%82-%d9%81%d9%8a-%d8%b7%d9%88%d9%84-%d8%b9%d9%86%d8%a7%d8%b5%d8%b1-xml-%d8%aa%d8%ad%d9%84%d9%8a%d9%84-%d8%a7%d9%84%d8%a7%d8%ae%d8%aa%d9%84%d8%a7%d9%81-%d8%a8%d9%8a%d9%86-%d8%a7/&text=%D9%81%D8%A7%D8%B1%D9%82%20%D9%81%D9%8A%20%D8%B7%D9%88%D9%84%20%D8%B9%D9%86%D8%A7%D8%B5%D8%B1%20XML%3A%20%D8%AA%D8%AD%D9%84%D9%8A%D9%84%20%D8%A7%D9%84%D8%A7%D8%AE%D8%AA%D9%84%D8%A7%D9%81%20%D8%A8%D9%8A%D9%86%20%D8%A7%D9%84%D8%B4%D9%81%D8%B1%D8%A7%D8%AA" rel="external noopener nofollow" title="تيلقرام" target="_blank" class="telegram-share-btn " data-raw="https://telegram.me/share/url?url={post_link}&text={post_title}"> <span class="share-btn-icon tie-icon-paper-plane"></span> <span class="screen-reader-text">تيلقرام</span> </a> <a href="viber://forward?text=%D9%81%D8%A7%D8%B1%D9%82%20%D9%81%D9%8A%20%D8%B7%D9%88%D9%84%20%D8%B9%D9%86%D8%A7%D8%B5%D8%B1%20XML%3A%20%D8%AA%D8%AD%D9%84%D9%8A%D9%84%20%D8%A7%D9%84%D8%A7%D8%AE%D8%AA%D9%84%D8%A7%D9%81%20%D8%A8%D9%8A%D9%86%20%D8%A7%D9%84%D8%B4%D9%81%D8%B1%D8%A7%D8%AA%20https://it-solutions.center/%d8%a7%d9%84%d8%a8%d8%b1%d9%85%d8%ac%d8%a9/%d9%81%d8%a7%d8%b1%d9%82-%d9%81%d9%8a-%d8%b7%d9%88%d9%84-%d8%b9%d9%86%d8%a7%d8%b5%d8%b1-xml-%d8%aa%d8%ad%d9%84%d9%8a%d9%84-%d8%a7%d9%84%d8%a7%d8%ae%d8%aa%d9%84%d8%a7%d9%81-%d8%a8%d9%8a%d9%86-%d8%a7/" rel="external noopener nofollow" title="ڤايبر" target="_blank" class="viber-share-btn " data-raw="viber://forward?text={post_title}%20{post_link}"> <span class="share-btn-icon tie-icon-phone"></span> <span class="screen-reader-text">ڤايبر</span> </a> <a href="https://line.me/R/msg/text/?%D9%81%D8%A7%D8%B1%D9%82%20%D9%81%D9%8A%20%D8%B7%D9%88%D9%84%20%D8%B9%D9%86%D8%A7%D8%B5%D8%B1%20XML%3A%20%D8%AA%D8%AD%D9%84%D9%8A%D9%84%20%D8%A7%D9%84%D8%A7%D8%AE%D8%AA%D9%84%D8%A7%D9%81%20%D8%A8%D9%8A%D9%86%20%D8%A7%D9%84%D8%B4%D9%81%D8%B1%D8%A7%D8%AA%20https://it-solutions.center/%d8%a7%d9%84%d8%a8%d8%b1%d9%85%d8%ac%d8%a9/%d9%81%d8%a7%d8%b1%d9%82-%d9%81%d9%8a-%d8%b7%d9%88%d9%84-%d8%b9%d9%86%d8%a7%d8%b5%d8%b1-xml-%d8%aa%d8%ad%d9%84%d9%8a%d9%84-%d8%a7%d9%84%d8%a7%d8%ae%d8%aa%d9%84%d8%a7%d9%81-%d8%a8%d9%8a%d9%86-%d8%a7/" rel="external noopener nofollow" title="لاين" target="_blank" class="line-share-btn " data-raw="https://line.me/R/msg/text/?{post_title}%20{post_link}"> <span class="share-btn-icon tie-icon-line"></span> <span class="screen-reader-text">لاين</span> </a> </div><!-- .share-links /--> </div><!-- .share-buttons /--> <div class="mobile-share-buttons-spacer"></div> <a id="go-to-top" class="go-to-top-button" href="#go-to-tie-body"> <span class="tie-icon-angle-up"></span> <span class="screen-reader-text">زر الذهاب إلى الأعلى</span> </a> </div><!-- #tie-wrapper /--> <aside class=" side-aside normal-side dark-skin dark-widgetized-area appear-from-left" aria-label="القائمة الجانبية الثانوية" style="visibility: hidden;"> <div data-height="100%" class="side-aside-wrapper has-custom-scroll"> <a href="#" class="close-side-aside remove big-btn"> <span class="screen-reader-text">إغلاق</span> </a><!-- .close-side-aside /--> <div id="mobile-container"> <div id="mobile-search"> <form role="search" method="get" class="search-form" action="https://it-solutions.center/"> <label> <span class="screen-reader-text">البحث عن:</span> <input type="search" class="search-field" placeholder="بحث …" value="" name="s" /> </label> <input type="submit" class="search-submit" value="بحث" /> </form> </div><!-- #mobile-search /--> <div id="mobile-menu" class=""> </div><!-- #mobile-menu /--> <div id="mobile-social-icons" class="social-icons-widget solid-social-icons"> <ul><li class="social-icons-item"><a class="social-link facebook-social-icon" rel="external noopener nofollow" target="_blank" href="https://www.facebook.com/it.solu.center"><span class="tie-social-icon tie-icon-facebook"></span><span class="screen-reader-text">فيسبوك</span></a></li></ul> </div><!-- #mobile-social-icons /--> </div><!-- #mobile-container /--> </div><!-- .side-aside-wrapper /--> </aside><!-- .side-aside /--> </div><!-- #tie-container /--> </div><!-- .background-overlay /--> <!--googleoff: all--><div id="cookie-law-info-bar" data-nosnippet="true"><span><div class="cli-bar-container cli-style-v2"><div class="cli-bar-message">We use cookies on our website to give you the most relevant experience by remembering your preferences and repeat visits. By clicking “Accept”, you consent to the use of ALL the cookies.</br><div class="wt-cli-ccpa-element"> <a style="color:#333333" class="wt-cli-ccpa-opt-out">Do not sell my personal information</a>.</div></div><div class="cli-bar-btn_container"><a role='button' class="medium cli-plugin-button cli-plugin-main-button cli_settings_button" style="margin:0px 10px 0px 5px">Settings</a><a role='button' data-cli_action="accept" id="cookie_action_close_header" class="medium cli-plugin-button cli-plugin-main-button cookie_action_close_header cli_action_button wt-cli-accept-btn">Accept</a></div></div></span></div><div id="cookie-law-info-again" data-nosnippet="true"><span id="cookie_hdr_showagain">Privacy & Cookies Policy</span></div><div class="cli-modal" data-nosnippet="true" id="cliSettingsPopup" tabindex="-1" role="dialog" aria-labelledby="cliSettingsPopup" aria-hidden="true"> <div class="cli-modal-dialog" role="document"> <div class="cli-modal-content cli-bar-popup"> <button type="button" class="cli-modal-close" id="cliModalClose"> <svg class="" viewBox="0 0 24 24"><path d="M19 6.41l-1.41-1.41-5.59 5.59-5.59-5.59-1.41 1.41 5.59 5.59-5.59 5.59 1.41 1.41 5.59-5.59 5.59 5.59 1.41-1.41-5.59-5.59z"></path><path d="M0 0h24v24h-24z" fill="none"></path></svg> <span class="wt-cli-sr-only">Close</span> </button> <div class="cli-modal-body"> <div class="cli-container-fluid cli-tab-container"> <div class="cli-row"> <div class="cli-col-12 cli-align-items-stretch cli-px-0"> <div class="cli-privacy-overview"> <h4>Privacy Overview</h4> <div class="cli-privacy-content"> <div class="cli-privacy-content-text">This website uses cookies to improve your experience while you navigate through the website. Out of these, the cookies that are categorized as necessary are stored on your browser as they are essential for the working of basic functionalities of the website. We also use third-party cookies that help us analyze and understand how you use this website. These cookies will be stored in your browser only with your consent. You also have the option to opt-out of these cookies. But opting out of some of these cookies may affect your browsing experience.</div> </div> <a class="cli-privacy-readmore" aria-label="Show more" role="button" data-readmore-text="Show more" data-readless-text="Show less"></a> </div> </div> <div class="cli-col-12 cli-align-items-stretch cli-px-0 cli-tab-section-container"> <div class="cli-tab-section"> <div class="cli-tab-header"> <a role="button" tabindex="0" class="cli-nav-link cli-settings-mobile" data-target="necessary" data-toggle="cli-toggle-tab"> Necessary </a> <div class="wt-cli-necessary-checkbox"> <input type="checkbox" class="cli-user-preference-checkbox" id="wt-cli-checkbox-necessary" data-id="checkbox-necessary" checked="checked" /> <label class="form-check-label" for="wt-cli-checkbox-necessary">Necessary</label> </div> <span class="cli-necessary-caption">Always Enabled</span> </div> <div class="cli-tab-content"> <div class="cli-tab-pane cli-fade" data-id="necessary"> <div class="wt-cli-cookie-description"> Necessary cookies are absolutely essential for the website to function properly. This category only includes cookies that ensures basic functionalities and security features of the website. These cookies do not store any personal information. </div> </div> </div> </div> <div class="cli-tab-section"> <div class="cli-tab-header"> <a role="button" tabindex="0" class="cli-nav-link cli-settings-mobile" data-target="non-necessary" data-toggle="cli-toggle-tab"> Non-necessary </a> <div class="cli-switch"> <input type="checkbox" id="wt-cli-checkbox-non-necessary" class="cli-user-preference-checkbox" data-id="checkbox-non-necessary" checked='checked' /> <label for="wt-cli-checkbox-non-necessary" class="cli-slider" data-cli-enable="Enabled" data-cli-disable="Disabled"><span class="wt-cli-sr-only">Non-necessary</span></label> </div> </div> <div class="cli-tab-content"> <div class="cli-tab-pane cli-fade" data-id="non-necessary"> <div class="wt-cli-cookie-description"> Any cookies that may not be particularly necessary for the website to function and is used specifically to collect user personal data via analytics, ads, other embedded contents are termed as non-necessary cookies. It is mandatory to procure user consent prior to running these cookies on your website. </div> </div> </div> </div> </div> </div> </div> </div> <div class="cli-modal-footer"> <div class="wt-cli-element cli-container-fluid cli-tab-container"> <div class="cli-row"> <div class="cli-col-12 cli-align-items-stretch cli-px-0"> <div class="cli-tab-footer wt-cli-privacy-overview-actions"> <a id="wt-cli-privacy-save-btn" role="button" tabindex="0" data-cli-action="accept" class="wt-cli-privacy-btn cli_setting_save_button wt-cli-privacy-accept-btn cli-btn">SAVE & ACCEPT</a> </div> </div> </div> </div> </div> </div> </div> </div> <div class="cli-modal-backdrop cli-fade cli-settings-overlay"></div> <div class="cli-modal-backdrop cli-fade cli-popupbar-overlay"></div> <!--googleon: all--><div id="reading-position-indicator"></div><div id="autocomplete-suggestions" class="autocomplete-suggestions"></div><div id="is-scroller-outer"><div id="is-scroller"></div></div><div id="fb-root"></div> <div id="tie-popup-search-desktop" class="tie-popup tie-popup-search-wrap" style="display: none;"> <a href="#" class="tie-btn-close remove big-btn light-btn"> <span class="screen-reader-text">إغلاق</span> </a> <div class="popup-search-wrap-inner"> <div class="live-search-parent pop-up-live-search" data-skin="live-search-popup" aria-label="بحث"> <form method="get" class="tie-popup-search-form" action="https://it-solutions.center/"> <input class="tie-popup-search-input is-ajax-search" inputmode="search" type="text" name="s" title="بحث عن" autocomplete="off" placeholder="إكتب كلمة البحث ثم إضغط زر الإدخال" /> <button class="tie-popup-search-submit" type="submit"> <span class="tie-icon-search tie-search-icon" aria-hidden="true"></span> <span class="screen-reader-text">بحث عن</span> </button> </form> </div><!-- .pop-up-live-search /--> </div><!-- .popup-search-wrap-inner /--> </div><!-- .tie-popup-search-wrap /--> <div id="tie-popup-search-mobile" class="tie-popup tie-popup-search-wrap" style="display: none;"> <a href="#" class="tie-btn-close remove big-btn light-btn"> <span class="screen-reader-text">إغلاق</span> </a> <div class="popup-search-wrap-inner"> <div class="live-search-parent pop-up-live-search" data-skin="live-search-popup" aria-label="بحث"> <form method="get" class="tie-popup-search-form" action="https://it-solutions.center/"> <input class="tie-popup-search-input is-ajax-search" inputmode="search" type="text" name="s" title="بحث عن" autocomplete="off" placeholder="بحث عن" /> <button class="tie-popup-search-submit" type="submit"> <span class="tie-icon-search tie-search-icon" aria-hidden="true"></span> <span class="screen-reader-text">بحث عن</span> </button> </form> </div><!-- .pop-up-live-search /--> </div><!-- .popup-search-wrap-inner /--> </div><!-- .tie-popup-search-wrap /--> <div id="side-stream-container" class="container"></div> <div class="side-stream" id="side-stream-right" style="display:none; z-index:108; position:absolute; text-align:center; top:0px; width:200px; overflow:hidden;"> <div class="stream-item stream-item-in-post stream-item-in-post-1"><div> <!-- defults --> <ins class="adsbygoogle" style="display:block" data-ad-client="ca-pub-3293364314201893" data-ad-slot="2303082872" data-ad-format="auto" data-full-width-responsive="true"></ins> <script> (adsbygoogle = window.adsbygoogle || []).push({}); </script> </div> </div> </div> <div class="side-stream" id="side-stream-left" style="display:none; z-index:108; position:absolute; text-align:center; top:0px; width:200px; overflow:hidden;"> <div class="stream-item stream-item-in-post stream-item-in-post-1"><div> <!-- defults --> <ins class="adsbygoogle" style="display:block" data-ad-client="ca-pub-3293364314201893" data-ad-slot="2303082872" data-ad-format="auto" data-full-width-responsive="true"></ins> <script> (adsbygoogle = window.adsbygoogle || []).push({}); </script> </div> </div> </div> <script type="text/javascript" id="tie-side-e3lan-js-extra"> /* <![CDATA[ */ var tie_side_e3lan = {"is_boxed":"","screen_width":"","side_margin":"15","margin_top":"","margin_top_scroll":"","left_ad_code":"[ads1]","left_ad_width":"200","left_ad_height":"","right_ad_code":"[ads1]","right_ad_width":"200","right_ad_height":""}; /* ]]> */ </script> <script type="text/javascript" src="https://it-solutions.center/wp-content/themes/jannah/assets/js/side-e3lan.js?ver=6.5.2" id="tie-side-e3lan-js"></script> <script type="text/javascript" id="tie-scripts-js-extra"> /* <![CDATA[ */ var tie = {"is_rtl":"1","ajaxurl":"https:\/\/it-solutions.center\/wp-admin\/admin-ajax.php","is_side_aside_light":"","is_taqyeem_active":"","is_sticky_video":"","mobile_menu_top":"","mobile_menu_active":"area_1","mobile_menu_parent":"","lightbox_all":"true","lightbox_gallery":"true","lightbox_skin":"dark","lightbox_thumb":"horizontal","lightbox_arrows":"true","is_singular":"1","autoload_posts":"","reading_indicator":"true","lazyload":"","select_share":"true","select_share_twitter":"","select_share_facebook":"","select_share_linkedin":"","select_share_email":"","facebook_app_id":"5303202981","twitter_username":"","responsive_tables":"true","ad_blocker_detector":"true","sticky_behavior":"upwards","sticky_desktop":"true","sticky_mobile":"true","sticky_mobile_behavior":"default","ajax_loader":"<div class=\"loader-overlay\"><div class=\"spinner-circle\"><\/div><\/div>","type_to_search":"1","lang_no_results":"\u0644\u0645 \u064a\u062a\u0645 \u0627\u0644\u0639\u062b\u0648\u0631 \u0639\u0644\u0649 \u0646\u062a\u0627\u0626\u062c","sticky_share_mobile":"true","sticky_share_post":"","sticky_share_post_menu":"","ad_blocker_detector_delay":"3000"}; /* ]]> */ </script> <script type="text/javascript" src="https://it-solutions.center/wp-content/themes/jannah/assets/js/scripts.min.js?ver=7.0.2" id="tie-scripts-js"></script> <script type="text/javascript" src="https://it-solutions.center/wp-content/themes/jannah/assets/ilightbox/lightbox.js?ver=7.0.2" id="tie-js-ilightbox-js"></script> <script type="text/javascript" src="https://it-solutions.center/wp-content/themes/jannah/assets/js/sliders.min.js?ver=7.0.2" id="tie-js-sliders-js"></script> <script type="text/javascript" src="https://it-solutions.center/wp-content/themes/jannah/assets/js/shortcodes.js?ver=7.0.2" id="tie-js-shortcodes-js"></script> <script type="text/javascript" src="https://it-solutions.center/wp-content/themes/jannah/assets/js/desktop.min.js?ver=7.0.2" id="tie-js-desktop-js"></script> <script type="text/javascript" src="https://it-solutions.center/wp-content/themes/jannah/assets/js/live-search.js?ver=7.0.2" id="tie-js-livesearch-js"></script> <script type="text/javascript" src="https://it-solutions.center/wp-content/themes/jannah/assets/js/single.min.js?ver=7.0.2" id="tie-js-single-js"></script> <script> WebFontConfig ={ google:{ families: [ 'Poppins:600,regular:latin&display=swap' ] } }; (function(){ var wf = document.createElement('script'); wf.src = '//ajax.googleapis.com/ajax/libs/webfont/1/webfont.js'; wf.type = 'text/javascript'; wf.defer = 'true'; var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(wf, s); })(); </script> <div id="tie-popup-adblock" class="tie-popup is-fixed-popup"> <div class="tie-popup-container"> <div class="container-wrapper"> <a href="#" class="tie-btn-close remove big-btn light-btn" > <span class="screen-reader-text">إغلاق</span> </a> <span class="tie-adblock-icon tie-icon-ban" aria-hidden="true"></span> <h2>أنت تستخدم إضافة Adblock</h2> <div class="adblock-message"> يرجى تعطيل مانع الإعلانات حيث أن موقعنا غير مزعج ولا بأس من عرض الأعلانات لك فهي تعتبر كمصدر دخل لنا و دعم مقدم منك لنا لنستمر في تقديم المحتوى المناسب و المفيد لك فلا تبخل بدعمنا عزيزي الزائر </div> </div><!-- .container-wrapper /--> </div><!-- .tie-popup-container /--> </div><!-- .tie-popup /--> <script type="text/javascript"> jQuery.ajax({ type : "GET", url : "https://it-solutions.center/wp-admin/admin-ajax.php", data : "postviews_id=379486&action=tie_postviews", cache: !1, success: function( data ){ jQuery(".single-post-meta").find(".meta-views").html( data ); } }); </script> </body> </html> <!-- Cached by WP-Optimize - https://getwpo.com - Last modified: 09/05/2024 5:55 am (UTC:3) -->