{"id":349,"date":"2022-10-27T05:45:47","date_gmt":"2022-10-27T05:45:47","guid":{"rendered":"https:\/\/www.devopstrainer.in\/blog\/?p=349"},"modified":"2022-10-28T07:46:53","modified_gmt":"2022-10-28T07:46:53","slug":"what-are-the-types-of-array-explain-with-example","status":"publish","type":"post","link":"https:\/\/www.devopstrainer.in\/blog\/what-are-the-types-of-array-explain-with-example\/","title":{"rendered":"What are the types of array? Explain with example?"},"content":{"rendered":"\n<h2 class=\"wp-block-heading\"><strong>We have three types of array in PHP<\/strong><\/h2>\n\n\n\n<ul class=\"wp-block-list\"><li>Index arrays<\/li><li>associative arrays<\/li><li>multidimensional arrays<\/li><\/ul>\n\n\n\n<figure class=\"wp-block-image size-full\"><img loading=\"lazy\" decoding=\"async\" width=\"556\" height=\"398\" src=\"https:\/\/www.devopstrainer.in\/blog\/wp-content\/uploads\/2022\/10\/Screenshot-97.png\" alt=\"\" class=\"wp-image-487\" srcset=\"https:\/\/www.devopstrainer.in\/blog\/wp-content\/uploads\/2022\/10\/Screenshot-97.png 556w, https:\/\/www.devopstrainer.in\/blog\/wp-content\/uploads\/2022\/10\/Screenshot-97-300x215.png 300w\" sizes=\"auto, (max-width: 556px) 100vw, 556px\" \/><\/figure>\n\n\n\n<h2 class=\"wp-block-heading\">1. Index Array (Numeric Array)<\/h2>\n\n\n\n<p>These arrays can store numbers, strings and any object but their index will be represented by numbers. By default array index starts from zero.<\/p>\n\n\n\n<h3 class=\"wp-block-heading\">We can use index array in two ways<\/h3>\n\n\n\n<h4 class=\"wp-block-heading\">First way<\/h4>\n\n\n\n<pre class=\"wp-block-code\"><code><mark style=\"background-color:rgba(0, 0, 0, 0)\" class=\"has-inline-color has-pale-pink-color\">&lt;?php \n    \/\/ first way<\/mark>\n<mark style=\"background-color:rgba(0, 0, 0, 0)\" class=\"has-inline-color has-pale-pink-color\">\n  $subjects=array(\"c++\",\"php\",\"java\",\"os\");  <\/mark>\n\n<mark style=\"background-color:rgba(0, 0, 0, 0)\" class=\"has-inline-color has-pale-pink-color\">\n    echo \" subjects: $c++&#91;0],$php&#91;1],$java&#91;2],$os&#91;3]\"; <\/mark>\n<mark style=\"background-color:rgba(0, 0, 0, 0)\" class=\"has-inline-color has-pale-pink-color\"> \n?>  <\/mark>\n<\/code><\/pre>\n\n\n\n<h4 class=\"wp-block-heading\">output<\/h4>\n\n\n\n<pre class=\"wp-block-code\"><code><mark style=\"background-color:rgba(0, 0, 0, 0)\" class=\"has-inline-color has-pale-pink-color\">subjects: c++,php,java,os<\/mark><\/code><\/pre>\n\n\n\n<h4 class=\"wp-block-heading\">Second way<\/h4>\n\n\n\n<pre class=\"wp-block-code\"><code><mark style=\"background-color:rgba(0, 0, 0, 0)\" class=\"has-inline-color has-vivid-green-cyan-color\">&lt;?php  \n     \/\/ second way<\/mark>\n<mark style=\"background-color:rgba(0, 0, 0, 0)\" class=\"has-inline-color has-vivid-green-cyan-color\">\n     $subjects&#91;0]=\"c++\";<\/mark>\n<mark style=\"background-color:rgba(0, 0, 0, 0)\" class=\"has-inline-color has-vivid-green-cyan-color\">  \n     $subjects&#91;1]=\"php\";  \n      $subjects&#91;2]=\"java\";  \n      $subjects&#91;3]=\"os\"; <\/mark>\n<mark style=\"background-color:rgba(0, 0, 0, 0)\" class=\"has-inline-color has-vivid-green-cyan-color\"> \n      echo \"subjects: $c++&#91;0],$php&#91;1],$java&#91;2],$os&#91;3]\";  <\/mark>\n<mark style=\"background-color:rgba(0, 0, 0, 0)\" class=\"has-inline-color has-vivid-green-cyan-color\">\n?>  \n<\/mark><\/code><\/pre>\n\n\n\n<h4 class=\"wp-block-heading\">output<\/h4>\n\n\n\n<pre class=\"wp-block-code\"><code><mark style=\"background-color:rgba(0, 0, 0, 0)\" class=\"has-inline-color has-vivid-green-cyan-color\">subjects: c++,php,java,os<\/mark><\/code><\/pre>\n\n\n\n<h2 class=\"wp-block-heading\">2. Associative Array<\/h2>\n\n\n\n<p>These types of arrays are similar to the indexed arrays but instead of linear storage, every value can be assigned with a user-defined key of string type.&nbsp;<\/p>\n\n\n\n<h4 class=\"wp-block-heading\">Associative array is also used in two ways<\/h4>\n\n\n\n<h5 class=\"wp-block-heading\"><em>First way<\/em> to use associative array<\/h5>\n\n\n\n<pre class=\"wp-block-code\"><code><mark style=\"background-color:rgba(0, 0, 0, 0)\" class=\"has-inline-color has-light-green-cyan-color\">&lt;?php  \n\n    \/\/ first way  \n     $marks=array(\"c++\"=>\"23\",\"php\"=>\"24\",\"java\"=>\"25\"); \n   \n   echo \"c++: \".$marks&#91;\"c++\"].\"&lt;br\/>\";  \n\n      echo \"php: \".$marks&#91;\"phpjava\"].\"&lt;br\/>\";  \n\n    echo \"java: \".$marks&#91;\"Kartik\"].\"&lt;br\/>\";  \n\n?>    \n<\/mark><\/code><\/pre>\n\n\n\n<h4 class=\"wp-block-heading\">output<\/h4>\n\n\n\n<pre class=\"wp-block-code\"><code><mark style=\"background-color:rgba(0, 0, 0, 0)\" class=\"has-inline-color has-light-green-cyan-color\">c++:23\nphp:24\njava:25<\/mark><\/code><\/pre>\n\n\n\n<h5 class=\"wp-block-heading\">Second wat to use associative array<\/h5>\n\n\n\n<pre class=\"wp-block-code\"><code><mark style=\"background-color:rgba(0, 0, 0, 0)\" class=\"has-inline-color has-luminous-vivid-amber-color\">&lt;?php    \n     \n  \/\/ second way\n    $marks&#91;\"c++\"]=\"23\";\n    \n    $marks&#91;\"php\"]=\"24\";    \n    $marks&#91;\"java\"]=\"25\";  \n  \n   echo \"c++  \".$marks&#91;\"c++\"].\"&lt;br\/>\";  \n   echo \"php  \".$marks&#91;\"php\"].\"&lt;br\/>\";  \n\n   echo \"java  \".$marks&#91;\"java\"].\"&lt;br\/>\";  \n\n?>   \n\n<\/mark><\/code><\/pre>\n\n\n\n<h4 class=\"wp-block-heading\">output<\/h4>\n\n\n\n<pre class=\"wp-block-code\"><code><mark style=\"background-color:rgba(0, 0, 0, 0)\" class=\"has-inline-color has-luminous-vivid-amber-color\">c++  23\nphp  24\njava  25<\/mark><\/code><\/pre>\n\n\n\n<h2 class=\"wp-block-heading\">3. Multidimensional Array<\/h2>\n\n\n\n<p>A multi-dimensional array each element in the main array can also be an array. And each element in the sub-array can be an array, and so on. Values in the multi-dimensional array are accessed using multiple index.<\/p>\n\n\n\n<h5 class=\"wp-block-heading\">exmple<\/h5>\n\n\n\n<pre class=\"wp-block-code\"><code>\n      \n      &lt;?php\n         $marks = array( \n            \"c++\" =&gt; array (\n               \"practicals\" =&gt; 22,\n               \"internal1\" =&gt; 23,\t\n               \"internal2\" =&gt; 24\n            ),\n            \n            \"php\" =&gt; array (\n               \"practicals\" =&gt; 23,\n               \"internal1\" =&gt; 24,\t\n               \"internal2\" =&gt; 25\n            ),\n            \n            \"java\" =&gt; array (\n               \"practicals\" =&gt; 25,\n               \"internal1\" =&gt; 26,\t\n               \"internal2\" =&gt; 27\n            )\n         );\n         \n         \n         echo \"Marks for c++ in practicals : \" ;\n         echo $marks&#91;'c++']&#91;'practicals'] . \"&lt;br \/&gt;\"; \n         \n         echo \"Marks for php in internal1 : \";\n         echo $marks&#91;'php']&#91;'internal1'] . \"&lt;br \/&gt;\"; \n         \n         echo \"Marks for java in internal2 : \" ;\n         echo $marks&#91;'java']&#91;'internal2'] . \"&lt;br \/&gt;\"; \n      ?&gt;\n   \n<\/code><\/pre>\n\n\n\n<h4 class=\"wp-block-heading\">output<\/h4>\n\n\n\n<pre class=\"wp-block-code\"><code>Marks for c++ in practicals : 22\nMarks for php in internal1 : 24\nMarks for java in internal2 : 27<\/code><\/pre>\n","protected":false},"excerpt":{"rendered":"<p>We have three types of array in PHP Index arrays associative arrays multidimensional arrays 1. Index Array (Numeric Array) These arrays can store numbers, strings and any&#8230; <\/p>\n","protected":false},"author":3,"featured_media":0,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[1],"tags":[],"class_list":["post-349","post","type-post","status-publish","format-standard","hentry","category-uncategorized"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v27.4 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>What are the types of 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\/what-are-the-types-of-array-explain-with-example\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"What are the types of array? Explain with example? - DevOps | SRE | DevSecOps\" \/>\n<meta property=\"og:description\" content=\"We have three types of array in PHP Index arrays associative arrays multidimensional arrays 1. Index Array (Numeric Array) These arrays can store numbers, strings and any...\" \/>\n<meta property=\"og:url\" content=\"https:\/\/www.devopstrainer.in\/blog\/what-are-the-types-of-array-explain-with-example\/\" \/>\n<meta property=\"og:site_name\" content=\"DevOps | SRE | DevSecOps\" \/>\n<meta property=\"article:published_time\" content=\"2022-10-27T05:45:47+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2022-10-28T07:46:53+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/www.devopstrainer.in\/blog\/wp-content\/uploads\/2022\/10\/Screenshot-97.png\" \/>\n<meta name=\"author\" content=\"shivam\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"shivam\" \/>\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\\\/what-are-the-types-of-array-explain-with-example\\\/#article\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/www.devopstrainer.in\\\/blog\\\/what-are-the-types-of-array-explain-with-example\\\/\"},\"author\":{\"name\":\"shivam\",\"@id\":\"https:\\\/\\\/www.devopstrainer.in\\\/blog\\\/#\\\/schema\\\/person\\\/0c8259479972d3d18994f88df3dc8d53\"},\"headline\":\"What are the types of array? Explain with example?\",\"datePublished\":\"2022-10-27T05:45:47+00:00\",\"dateModified\":\"2022-10-28T07:46:53+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/www.devopstrainer.in\\\/blog\\\/what-are-the-types-of-array-explain-with-example\\\/\"},\"wordCount\":158,\"commentCount\":0,\"image\":{\"@id\":\"https:\\\/\\\/www.devopstrainer.in\\\/blog\\\/what-are-the-types-of-array-explain-with-example\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/www.devopstrainer.in\\\/blog\\\/wp-content\\\/uploads\\\/2022\\\/10\\\/Screenshot-97.png\",\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\\\/\\\/www.devopstrainer.in\\\/blog\\\/what-are-the-types-of-array-explain-with-example\\\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/www.devopstrainer.in\\\/blog\\\/what-are-the-types-of-array-explain-with-example\\\/\",\"url\":\"https:\\\/\\\/www.devopstrainer.in\\\/blog\\\/what-are-the-types-of-array-explain-with-example\\\/\",\"name\":\"What are the types of array? Explain with example? - DevOps | SRE | DevSecOps\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/www.devopstrainer.in\\\/blog\\\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\\\/\\\/www.devopstrainer.in\\\/blog\\\/what-are-the-types-of-array-explain-with-example\\\/#primaryimage\"},\"image\":{\"@id\":\"https:\\\/\\\/www.devopstrainer.in\\\/blog\\\/what-are-the-types-of-array-explain-with-example\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/www.devopstrainer.in\\\/blog\\\/wp-content\\\/uploads\\\/2022\\\/10\\\/Screenshot-97.png\",\"datePublished\":\"2022-10-27T05:45:47+00:00\",\"dateModified\":\"2022-10-28T07:46:53+00:00\",\"author\":{\"@id\":\"https:\\\/\\\/www.devopstrainer.in\\\/blog\\\/#\\\/schema\\\/person\\\/0c8259479972d3d18994f88df3dc8d53\"},\"breadcrumb\":{\"@id\":\"https:\\\/\\\/www.devopstrainer.in\\\/blog\\\/what-are-the-types-of-array-explain-with-example\\\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/www.devopstrainer.in\\\/blog\\\/what-are-the-types-of-array-explain-with-example\\\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/www.devopstrainer.in\\\/blog\\\/what-are-the-types-of-array-explain-with-example\\\/#primaryimage\",\"url\":\"https:\\\/\\\/www.devopstrainer.in\\\/blog\\\/wp-content\\\/uploads\\\/2022\\\/10\\\/Screenshot-97.png\",\"contentUrl\":\"https:\\\/\\\/www.devopstrainer.in\\\/blog\\\/wp-content\\\/uploads\\\/2022\\\/10\\\/Screenshot-97.png\",\"width\":556,\"height\":398},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/www.devopstrainer.in\\\/blog\\\/what-are-the-types-of-array-explain-with-example\\\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/www.devopstrainer.in\\\/blog\\\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"What are the types of 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\\\/0c8259479972d3d18994f88df3dc8d53\",\"name\":\"shivam\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/be603b13110d1423e9358d9f4b8901acd56c4239bca1b26b0225d217c2a2f1eb?s=96&d=mm&r=g\",\"url\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/be603b13110d1423e9358d9f4b8901acd56c4239bca1b26b0225d217c2a2f1eb?s=96&d=mm&r=g\",\"contentUrl\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/be603b13110d1423e9358d9f4b8901acd56c4239bca1b26b0225d217c2a2f1eb?s=96&d=mm&r=g\",\"caption\":\"shivam\"},\"url\":\"https:\\\/\\\/www.devopstrainer.in\\\/blog\\\/author\\\/shivam\\\/\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"What are the types of 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\/what-are-the-types-of-array-explain-with-example\/","og_locale":"en_US","og_type":"article","og_title":"What are the types of array? Explain with example? - DevOps | SRE | DevSecOps","og_description":"We have three types of array in PHP Index arrays associative arrays multidimensional arrays 1. Index Array (Numeric Array) These arrays can store numbers, strings and any...","og_url":"https:\/\/www.devopstrainer.in\/blog\/what-are-the-types-of-array-explain-with-example\/","og_site_name":"DevOps | SRE | DevSecOps","article_published_time":"2022-10-27T05:45:47+00:00","article_modified_time":"2022-10-28T07:46:53+00:00","og_image":[{"url":"https:\/\/www.devopstrainer.in\/blog\/wp-content\/uploads\/2022\/10\/Screenshot-97.png","type":"","width":"","height":""}],"author":"shivam","twitter_card":"summary_large_image","twitter_misc":{"Written by":"shivam","Est. reading time":"2 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/www.devopstrainer.in\/blog\/what-are-the-types-of-array-explain-with-example\/#article","isPartOf":{"@id":"https:\/\/www.devopstrainer.in\/blog\/what-are-the-types-of-array-explain-with-example\/"},"author":{"name":"shivam","@id":"https:\/\/www.devopstrainer.in\/blog\/#\/schema\/person\/0c8259479972d3d18994f88df3dc8d53"},"headline":"What are the types of array? Explain with example?","datePublished":"2022-10-27T05:45:47+00:00","dateModified":"2022-10-28T07:46:53+00:00","mainEntityOfPage":{"@id":"https:\/\/www.devopstrainer.in\/blog\/what-are-the-types-of-array-explain-with-example\/"},"wordCount":158,"commentCount":0,"image":{"@id":"https:\/\/www.devopstrainer.in\/blog\/what-are-the-types-of-array-explain-with-example\/#primaryimage"},"thumbnailUrl":"https:\/\/www.devopstrainer.in\/blog\/wp-content\/uploads\/2022\/10\/Screenshot-97.png","inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/www.devopstrainer.in\/blog\/what-are-the-types-of-array-explain-with-example\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/www.devopstrainer.in\/blog\/what-are-the-types-of-array-explain-with-example\/","url":"https:\/\/www.devopstrainer.in\/blog\/what-are-the-types-of-array-explain-with-example\/","name":"What are the types of array? Explain with example? - DevOps | SRE | DevSecOps","isPartOf":{"@id":"https:\/\/www.devopstrainer.in\/blog\/#website"},"primaryImageOfPage":{"@id":"https:\/\/www.devopstrainer.in\/blog\/what-are-the-types-of-array-explain-with-example\/#primaryimage"},"image":{"@id":"https:\/\/www.devopstrainer.in\/blog\/what-are-the-types-of-array-explain-with-example\/#primaryimage"},"thumbnailUrl":"https:\/\/www.devopstrainer.in\/blog\/wp-content\/uploads\/2022\/10\/Screenshot-97.png","datePublished":"2022-10-27T05:45:47+00:00","dateModified":"2022-10-28T07:46:53+00:00","author":{"@id":"https:\/\/www.devopstrainer.in\/blog\/#\/schema\/person\/0c8259479972d3d18994f88df3dc8d53"},"breadcrumb":{"@id":"https:\/\/www.devopstrainer.in\/blog\/what-are-the-types-of-array-explain-with-example\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/www.devopstrainer.in\/blog\/what-are-the-types-of-array-explain-with-example\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.devopstrainer.in\/blog\/what-are-the-types-of-array-explain-with-example\/#primaryimage","url":"https:\/\/www.devopstrainer.in\/blog\/wp-content\/uploads\/2022\/10\/Screenshot-97.png","contentUrl":"https:\/\/www.devopstrainer.in\/blog\/wp-content\/uploads\/2022\/10\/Screenshot-97.png","width":556,"height":398},{"@type":"BreadcrumbList","@id":"https:\/\/www.devopstrainer.in\/blog\/what-are-the-types-of-array-explain-with-example\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/www.devopstrainer.in\/blog\/"},{"@type":"ListItem","position":2,"name":"What are the types of 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\/0c8259479972d3d18994f88df3dc8d53","name":"shivam","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/secure.gravatar.com\/avatar\/be603b13110d1423e9358d9f4b8901acd56c4239bca1b26b0225d217c2a2f1eb?s=96&d=mm&r=g","url":"https:\/\/secure.gravatar.com\/avatar\/be603b13110d1423e9358d9f4b8901acd56c4239bca1b26b0225d217c2a2f1eb?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/be603b13110d1423e9358d9f4b8901acd56c4239bca1b26b0225d217c2a2f1eb?s=96&d=mm&r=g","caption":"shivam"},"url":"https:\/\/www.devopstrainer.in\/blog\/author\/shivam\/"}]}},"_links":{"self":[{"href":"https:\/\/www.devopstrainer.in\/blog\/wp-json\/wp\/v2\/posts\/349","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\/3"}],"replies":[{"embeddable":true,"href":"https:\/\/www.devopstrainer.in\/blog\/wp-json\/wp\/v2\/comments?post=349"}],"version-history":[{"count":6,"href":"https:\/\/www.devopstrainer.in\/blog\/wp-json\/wp\/v2\/posts\/349\/revisions"}],"predecessor-version":[{"id":488,"href":"https:\/\/www.devopstrainer.in\/blog\/wp-json\/wp\/v2\/posts\/349\/revisions\/488"}],"wp:attachment":[{"href":"https:\/\/www.devopstrainer.in\/blog\/wp-json\/wp\/v2\/media?parent=349"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/www.devopstrainer.in\/blog\/wp-json\/wp\/v2\/categories?post=349"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/www.devopstrainer.in\/blog\/wp-json\/wp\/v2\/tags?post=349"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}