{"id":430,"date":"2022-10-28T07:42:55","date_gmt":"2022-10-28T07:42:55","guid":{"rendered":"https:\/\/www.devopstrainer.in\/blog\/?p=430"},"modified":"2022-11-02T12:01:20","modified_gmt":"2022-11-02T12:01:20","slug":"how-to-delete-an-element-from-an-array-explain-with-example-2","status":"publish","type":"post","link":"https:\/\/www.devopstrainer.in\/blog\/how-to-delete-an-element-from-an-array-explain-with-example-2\/","title":{"rendered":"How to Delete an element from an array? explain with example"},"content":{"rendered":"<div class=\"wp-block-image\">\n<figure class=\"aligncenter size-full is-resized\"><img loading=\"lazy\" decoding=\"async\" src=\"https:\/\/www.devopstrainer.in\/blog\/wp-content\/uploads\/2022\/10\/delete-element-from-array.png\" alt=\"\" class=\"wp-image-493\" width=\"822\" height=\"354\" srcset=\"https:\/\/www.devopstrainer.in\/blog\/wp-content\/uploads\/2022\/10\/delete-element-from-array.png 618w, https:\/\/www.devopstrainer.in\/blog\/wp-content\/uploads\/2022\/10\/delete-element-from-array-300x129.png 300w\" sizes=\"auto, (max-width: 822px) 100vw, 822px\" \/><figcaption><strong><em>Delete an element from an array<\/em><\/strong><\/figcaption><\/figure>\n<\/div>\n\n\n<p>There are multiple ways to delete an element from an array in PHP. This query gives some of the most common methods used in PHP to delete an element from an array.<\/p>\n\n\n\n<p>The functions we have used:<\/p>\n\n\n\n<p><strong>unset()<\/strong>: This function takes an element as a parameter and unset it. It wouldn\u2019t change the keys of other elements.<br><strong>array_splice()<\/strong>: This function takes three parameters an array, offset (where to start), and length (number of elements to be removed). It will automatically re-index an indexed array but not an associated array after deleting the elements.<br><strong>array_diff()<\/strong>: This function takes an array and list of array values as input and deletes the giving values from an array. Like unset() method, it will not change the keys of other elements.<br>Steps should be taken:<\/p>\n\n\n\n<ul class=\"wp-block-list\"><li>Declare an associated array.<\/li><li>Delete an element from an array.<\/li><li>Print the result.<\/li><li>Declare an indexed array.<\/li><li>Delete an element from the indexed array.<\/li><li>Print the result.<\/li><\/ul>\n\n\n\n<p><br>Example 1: This example depicts the unset() function to delete the element. The unset() function takes the array as a reference and does not return anything.<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>&lt;?php\r\n \r\n  \/\/ Declaring associated array\r\n  $ass_arr = &#91;\"a\"=>\"Techs\", \"b\"=>\"For\", \"c\"=>\"Techs\"];\r\n \r\n  \/\/ Deleting element associated with key \"b\"\r\n  unset($ass_arr&#91;\"b\"]);\r\n \r\n  \/\/ Printing array after deleting the element\r\n  print_r($ass_arr);\r\n \r\n  \/\/ Declaring indexed array\r\n  $ind_arr = &#91;\"Techs\",\"For\",\"Techs\"];\r\n \r\n  \/\/ Deleting element and index 1\r\n  unset($ind_arr&#91;1]);\r\n \r\n  \/\/ Printing array after deleting the element\r\n  print_r($ind_arr);\r\n?><\/code><\/pre>\n\n\n\n<p>Output<br>Array<br>(<br>[a] =&gt; Techs<br>=&gt; Techs<br>)<br>Array<br>(<br>[0] =&gt; Techs<br>[2] =&gt; Techs<br>)<\/p>\n\n\n\n<p>From the output, you can see that unset() has not changed the index for other elements in indexed array.<\/p>\n\n\n\n<p>Example 2: This example depicts array_splice() function to delete an element from an array.<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>&lt;?php\n \n  \/\/ Declaring associated array\n  $ass_arr = &#91;\"a\"=&gt;\"Techs\", \"b\"=&gt;\"For\", \"c\"=&gt;\"Techs\"];\n \n  \/\/ Deleting element associated with key \"b\"\n  array_splice($ass_arr,1,1);\n \n  \/\/ Printing array after deleting the element\n  print_r($ass_arr);\n \n  \/\/ Declaring indexed array\n  $ind_arr = &#91;\"Techs\",\"For\",\"Techs\"];\n \n  \/\/ Deleting element and index 1\n  array_splice($ind_arr,1,1);\n \n  \/\/ Printing array after deleting the element\n  print_r($ind_arr);\n?&gt;<\/code><\/pre>\n\n\n\n<p>Output<br>Array<br>(<br>[a] =&gt; Techs<br>=&gt; Techs<br>)<br>Array<br>(<br>[0] =&gt; Techs<br>[1] =&gt; Techs<br>)<\/p>\n\n\n\n<p>Example 3: This example depicts array_diff() function to delete the elements. This function takes the array parameters by value not reference and returns an array as output.<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>&lt;?php\n \n  \/\/ Declaring associated array\n  $ass_arr = &#91;\"a\"=&gt;\"Techs\", \"b\"=&gt;\"For\", \"c\"=&gt;\"Techs\"];\n \n  \/\/ Deleting element associated with key \"b\"\n  $ass_arr = array_diff($ass_arr,&#91;\"For\"]);\n \n  \/\/ Printing array after deleting the element\n  print_r($ass_arr);\n \n  \/\/ Declaring indexed array\n  $ind_arr = &#91;\"Techs\",\"For\",\"Techs\"];\n \n  \/\/ Deleting element and index 1\n  $ind_arr = array_diff($ind_arr,&#91;\"For\"]);\n \n  \/\/ Printing array after deleting the element\n  print_r($ind_arr);\n?&gt;<\/code><\/pre>\n\n\n\n<p>Output<br>Array<br>(<br>[a] =&gt; Techs<br>=&gt; Techs<br>)<br>Array<br>(<br>[0] =&gt; Techs<br>[2] =&gt; Techs<br>)<\/p>\n","protected":false},"excerpt":{"rendered":"<p>There are multiple ways to delete an element from an array in PHP. This query gives some of the most common methods used in PHP to delete&#8230; <\/p>\n","protected":false},"author":2,"featured_media":0,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[145,165,113],"tags":[191,190,189,192,188,187,186],"class_list":["post-430","post","type-post","status-publish","format-standard","hentry","category-array","category-function","category-php","tag-array_diff","tag-array_splice","tag-declare-an-associated-array","tag-declare-an-indexed-array","tag-delete-an-element-from-an-array","tag-methods-used-in-php-to-delete-an-element-from-an-array","tag-multiple-ways-to-delete-an-element-from-an-array"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v27.4 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>How to Delete an element from an array? explain with example - DevOps | SRE | DevSecOps<\/title>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/www.devopstrainer.in\/blog\/how-to-delete-an-element-from-an-array-explain-with-example-2\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"How to Delete an element from an array? explain with example - DevOps | SRE | DevSecOps\" \/>\n<meta property=\"og:description\" content=\"There are multiple ways to delete an element from an array in PHP. This query gives some of the most common methods used in PHP to delete...\" \/>\n<meta property=\"og:url\" content=\"https:\/\/www.devopstrainer.in\/blog\/how-to-delete-an-element-from-an-array-explain-with-example-2\/\" \/>\n<meta property=\"og:site_name\" content=\"DevOps | SRE | DevSecOps\" \/>\n<meta property=\"article:published_time\" content=\"2022-10-28T07:42:55+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2022-11-02T12:01:20+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/www.devopstrainer.in\/blog\/wp-content\/uploads\/2022\/10\/delete-element-from-array.png\" \/>\n<meta name=\"author\" content=\"rahulkr kr\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"rahulkr kr\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"2 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\\\/\\\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\\\/\\\/www.devopstrainer.in\\\/blog\\\/how-to-delete-an-element-from-an-array-explain-with-example-2\\\/#article\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/www.devopstrainer.in\\\/blog\\\/how-to-delete-an-element-from-an-array-explain-with-example-2\\\/\"},\"author\":{\"name\":\"rahulkr kr\",\"@id\":\"https:\\\/\\\/www.devopstrainer.in\\\/blog\\\/#\\\/schema\\\/person\\\/e9fd1d88de76754aa189257cd197394d\"},\"headline\":\"How to Delete an element from an array? explain with example\",\"datePublished\":\"2022-10-28T07:42:55+00:00\",\"dateModified\":\"2022-11-02T12:01:20+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/www.devopstrainer.in\\\/blog\\\/how-to-delete-an-element-from-an-array-explain-with-example-2\\\/\"},\"wordCount\":295,\"commentCount\":0,\"image\":{\"@id\":\"https:\\\/\\\/www.devopstrainer.in\\\/blog\\\/how-to-delete-an-element-from-an-array-explain-with-example-2\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/www.devopstrainer.in\\\/blog\\\/wp-content\\\/uploads\\\/2022\\\/10\\\/delete-element-from-array.png\",\"keywords\":[\"array_diff()\",\"array_splice()\",\"Declare an associated array\",\"Declare an indexed array.\",\"delete an element from an array\",\"methods used in PHP to delete an element from an array\",\"multiple ways to delete an element from an array\"],\"articleSection\":[\"Array\",\"Function\",\"PHP\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\\\/\\\/www.devopstrainer.in\\\/blog\\\/how-to-delete-an-element-from-an-array-explain-with-example-2\\\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/www.devopstrainer.in\\\/blog\\\/how-to-delete-an-element-from-an-array-explain-with-example-2\\\/\",\"url\":\"https:\\\/\\\/www.devopstrainer.in\\\/blog\\\/how-to-delete-an-element-from-an-array-explain-with-example-2\\\/\",\"name\":\"How to Delete an element from an array? explain with example - DevOps | SRE | DevSecOps\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/www.devopstrainer.in\\\/blog\\\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\\\/\\\/www.devopstrainer.in\\\/blog\\\/how-to-delete-an-element-from-an-array-explain-with-example-2\\\/#primaryimage\"},\"image\":{\"@id\":\"https:\\\/\\\/www.devopstrainer.in\\\/blog\\\/how-to-delete-an-element-from-an-array-explain-with-example-2\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/www.devopstrainer.in\\\/blog\\\/wp-content\\\/uploads\\\/2022\\\/10\\\/delete-element-from-array.png\",\"datePublished\":\"2022-10-28T07:42:55+00:00\",\"dateModified\":\"2022-11-02T12:01:20+00:00\",\"author\":{\"@id\":\"https:\\\/\\\/www.devopstrainer.in\\\/blog\\\/#\\\/schema\\\/person\\\/e9fd1d88de76754aa189257cd197394d\"},\"breadcrumb\":{\"@id\":\"https:\\\/\\\/www.devopstrainer.in\\\/blog\\\/how-to-delete-an-element-from-an-array-explain-with-example-2\\\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/www.devopstrainer.in\\\/blog\\\/how-to-delete-an-element-from-an-array-explain-with-example-2\\\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/www.devopstrainer.in\\\/blog\\\/how-to-delete-an-element-from-an-array-explain-with-example-2\\\/#primaryimage\",\"url\":\"https:\\\/\\\/www.devopstrainer.in\\\/blog\\\/wp-content\\\/uploads\\\/2022\\\/10\\\/delete-element-from-array.png\",\"contentUrl\":\"https:\\\/\\\/www.devopstrainer.in\\\/blog\\\/wp-content\\\/uploads\\\/2022\\\/10\\\/delete-element-from-array.png\",\"width\":618,\"height\":266},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/www.devopstrainer.in\\\/blog\\\/how-to-delete-an-element-from-an-array-explain-with-example-2\\\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/www.devopstrainer.in\\\/blog\\\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"How to Delete an element from an array? explain with example\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\\\/\\\/www.devopstrainer.in\\\/blog\\\/#website\",\"url\":\"https:\\\/\\\/www.devopstrainer.in\\\/blog\\\/\",\"name\":\"DevOps | SRE | DevSecOps\",\"description\":\"Automation means Cost, Quality, Time\",\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\\\/\\\/www.devopstrainer.in\\\/blog\\\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Person\",\"@id\":\"https:\\\/\\\/www.devopstrainer.in\\\/blog\\\/#\\\/schema\\\/person\\\/e9fd1d88de76754aa189257cd197394d\",\"name\":\"rahulkr kr\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/79531cbaf0b831cebc9631f6ac28f21fb3fb0dc2615eeecdeeec43038b513473?s=96&d=mm&r=g\",\"url\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/79531cbaf0b831cebc9631f6ac28f21fb3fb0dc2615eeecdeeec43038b513473?s=96&d=mm&r=g\",\"contentUrl\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/79531cbaf0b831cebc9631f6ac28f21fb3fb0dc2615eeecdeeec43038b513473?s=96&d=mm&r=g\",\"caption\":\"rahulkr kr\"},\"url\":\"https:\\\/\\\/www.devopstrainer.in\\\/blog\\\/author\\\/rahulkr\\\/\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"How to Delete an element from an array? explain with example - DevOps | SRE | DevSecOps","robots":{"index":"index","follow":"follow","max-snippet":"max-snippet:-1","max-image-preview":"max-image-preview:large","max-video-preview":"max-video-preview:-1"},"canonical":"https:\/\/www.devopstrainer.in\/blog\/how-to-delete-an-element-from-an-array-explain-with-example-2\/","og_locale":"en_US","og_type":"article","og_title":"How to Delete an element from an array? explain with example - DevOps | SRE | DevSecOps","og_description":"There are multiple ways to delete an element from an array in PHP. This query gives some of the most common methods used in PHP to delete...","og_url":"https:\/\/www.devopstrainer.in\/blog\/how-to-delete-an-element-from-an-array-explain-with-example-2\/","og_site_name":"DevOps | SRE | DevSecOps","article_published_time":"2022-10-28T07:42:55+00:00","article_modified_time":"2022-11-02T12:01:20+00:00","og_image":[{"url":"https:\/\/www.devopstrainer.in\/blog\/wp-content\/uploads\/2022\/10\/delete-element-from-array.png","type":"","width":"","height":""}],"author":"rahulkr kr","twitter_card":"summary_large_image","twitter_misc":{"Written by":"rahulkr kr","Est. reading time":"2 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/www.devopstrainer.in\/blog\/how-to-delete-an-element-from-an-array-explain-with-example-2\/#article","isPartOf":{"@id":"https:\/\/www.devopstrainer.in\/blog\/how-to-delete-an-element-from-an-array-explain-with-example-2\/"},"author":{"name":"rahulkr kr","@id":"https:\/\/www.devopstrainer.in\/blog\/#\/schema\/person\/e9fd1d88de76754aa189257cd197394d"},"headline":"How to Delete an element from an array? explain with example","datePublished":"2022-10-28T07:42:55+00:00","dateModified":"2022-11-02T12:01:20+00:00","mainEntityOfPage":{"@id":"https:\/\/www.devopstrainer.in\/blog\/how-to-delete-an-element-from-an-array-explain-with-example-2\/"},"wordCount":295,"commentCount":0,"image":{"@id":"https:\/\/www.devopstrainer.in\/blog\/how-to-delete-an-element-from-an-array-explain-with-example-2\/#primaryimage"},"thumbnailUrl":"https:\/\/www.devopstrainer.in\/blog\/wp-content\/uploads\/2022\/10\/delete-element-from-array.png","keywords":["array_diff()","array_splice()","Declare an associated array","Declare an indexed array.","delete an element from an array","methods used in PHP to delete an element from an array","multiple ways to delete an element from an array"],"articleSection":["Array","Function","PHP"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/www.devopstrainer.in\/blog\/how-to-delete-an-element-from-an-array-explain-with-example-2\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/www.devopstrainer.in\/blog\/how-to-delete-an-element-from-an-array-explain-with-example-2\/","url":"https:\/\/www.devopstrainer.in\/blog\/how-to-delete-an-element-from-an-array-explain-with-example-2\/","name":"How to Delete an element from an array? explain with example - DevOps | SRE | DevSecOps","isPartOf":{"@id":"https:\/\/www.devopstrainer.in\/blog\/#website"},"primaryImageOfPage":{"@id":"https:\/\/www.devopstrainer.in\/blog\/how-to-delete-an-element-from-an-array-explain-with-example-2\/#primaryimage"},"image":{"@id":"https:\/\/www.devopstrainer.in\/blog\/how-to-delete-an-element-from-an-array-explain-with-example-2\/#primaryimage"},"thumbnailUrl":"https:\/\/www.devopstrainer.in\/blog\/wp-content\/uploads\/2022\/10\/delete-element-from-array.png","datePublished":"2022-10-28T07:42:55+00:00","dateModified":"2022-11-02T12:01:20+00:00","author":{"@id":"https:\/\/www.devopstrainer.in\/blog\/#\/schema\/person\/e9fd1d88de76754aa189257cd197394d"},"breadcrumb":{"@id":"https:\/\/www.devopstrainer.in\/blog\/how-to-delete-an-element-from-an-array-explain-with-example-2\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/www.devopstrainer.in\/blog\/how-to-delete-an-element-from-an-array-explain-with-example-2\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.devopstrainer.in\/blog\/how-to-delete-an-element-from-an-array-explain-with-example-2\/#primaryimage","url":"https:\/\/www.devopstrainer.in\/blog\/wp-content\/uploads\/2022\/10\/delete-element-from-array.png","contentUrl":"https:\/\/www.devopstrainer.in\/blog\/wp-content\/uploads\/2022\/10\/delete-element-from-array.png","width":618,"height":266},{"@type":"BreadcrumbList","@id":"https:\/\/www.devopstrainer.in\/blog\/how-to-delete-an-element-from-an-array-explain-with-example-2\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/www.devopstrainer.in\/blog\/"},{"@type":"ListItem","position":2,"name":"How to Delete an element from an array? explain with example"}]},{"@type":"WebSite","@id":"https:\/\/www.devopstrainer.in\/blog\/#website","url":"https:\/\/www.devopstrainer.in\/blog\/","name":"DevOps | SRE | DevSecOps","description":"Automation means Cost, Quality, Time","potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/www.devopstrainer.in\/blog\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Person","@id":"https:\/\/www.devopstrainer.in\/blog\/#\/schema\/person\/e9fd1d88de76754aa189257cd197394d","name":"rahulkr kr","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/secure.gravatar.com\/avatar\/79531cbaf0b831cebc9631f6ac28f21fb3fb0dc2615eeecdeeec43038b513473?s=96&d=mm&r=g","url":"https:\/\/secure.gravatar.com\/avatar\/79531cbaf0b831cebc9631f6ac28f21fb3fb0dc2615eeecdeeec43038b513473?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/79531cbaf0b831cebc9631f6ac28f21fb3fb0dc2615eeecdeeec43038b513473?s=96&d=mm&r=g","caption":"rahulkr kr"},"url":"https:\/\/www.devopstrainer.in\/blog\/author\/rahulkr\/"}]}},"_links":{"self":[{"href":"https:\/\/www.devopstrainer.in\/blog\/wp-json\/wp\/v2\/posts\/430","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/www.devopstrainer.in\/blog\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/www.devopstrainer.in\/blog\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/www.devopstrainer.in\/blog\/wp-json\/wp\/v2\/users\/2"}],"replies":[{"embeddable":true,"href":"https:\/\/www.devopstrainer.in\/blog\/wp-json\/wp\/v2\/comments?post=430"}],"version-history":[{"count":12,"href":"https:\/\/www.devopstrainer.in\/blog\/wp-json\/wp\/v2\/posts\/430\/revisions"}],"predecessor-version":[{"id":528,"href":"https:\/\/www.devopstrainer.in\/blog\/wp-json\/wp\/v2\/posts\/430\/revisions\/528"}],"wp:attachment":[{"href":"https:\/\/www.devopstrainer.in\/blog\/wp-json\/wp\/v2\/media?parent=430"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/www.devopstrainer.in\/blog\/wp-json\/wp\/v2\/categories?post=430"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/www.devopstrainer.in\/blog\/wp-json\/wp\/v2\/tags?post=430"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}