{"id":1761,"date":"2024-02-19T16:47:06","date_gmt":"2024-02-19T15:47:06","guid":{"rendered":"https:\/\/codeflarelimited.com\/blog\/?p=1761"},"modified":"2024-02-20T10:07:56","modified_gmt":"2024-02-20T09:07:56","slug":"handling-date-and-time-in-php-a-comprehensive-guide","status":"publish","type":"post","link":"https:\/\/codeflarelimited.com\/blog\/handling-date-and-time-in-php-a-comprehensive-guide\/","title":{"rendered":"PHP Date and Time"},"content":{"rendered":"\n<p>In the world of web development, dealing with dates and times is an essential aspect of building dynamic and interactive applications. Whether you&#8217;re building a scheduling application, an e-commerce platform, or a content management system, mastering date and time handling in PHP is crucial. In this comprehensive guide, we&#8217;ll explore various PHP functions and techniques for working with dates and times effectively.<\/p>\n\n\n\n<ol class=\"wp-block-list\">\n<li><strong>Understanding Date and Time in PHP:<\/strong><\/li>\n<\/ol>\n\n\n\n<ul class=\"wp-block-list\">\n<li>PHP&#8217;s Date and Time Functions: PHP provides a rich set of built-in functions for working with dates and times.<\/li>\n\n\n\n<li>Date Formats: PHP supports various date and time formats, including ISO 8601, Unix.<\/li>\n<\/ul>\n\n\n\n<p><strong>    2. Getting the Current Date and Time:<\/strong><\/p>\n\n\n\n<pre class=\"wp-block-code\"><code lang=\"php\" class=\"language-php\">&lt;?php\n\/\/ Get the current date and time\n$currentDateTime = date('Y-m-d H:i:s');\necho \"Current Date and Time: $currentDateTime\";\n?&gt;\n<\/code><\/pre>\n\n\n\n<p><strong>  3. Formatting Dates and Times:<\/strong><\/p>\n\n\n\n<pre class=\"wp-block-code\"><code lang=\"php\" class=\"language-php\">&lt;?php\n\/\/ Format a date\n$date = '2023-02-15';\n$formattedDate = date('F j, Y', strtotime($date));\necho \"Formatted Date: $formattedDate\";\n?&gt;\n<\/code><\/pre>\n\n\n\n<p><strong>4. Manipulating Dates and Times:<\/strong><\/p>\n\n\n\n<pre class=\"wp-block-code\"><code lang=\"php\" class=\"language-php\">&lt;?php\n\/\/ Add days to a date\n$date = '2023-02-15';\n$newDate = date('Y-m-d', strtotime('+7 days', strtotime($date)));\necho \"New Date: $newDate\";\n?&gt;\n<\/code><\/pre>\n\n\n\n<p><strong>5. Calculating Date Differences:<\/strong><\/p>\n\n\n\n<pre class=\"wp-block-code\"><code lang=\"php\" class=\"language-php\">&lt;?php\n\/\/ Calculate the difference between two dates\n$startDate = '2023-02-15';\n$endDate = '2023-02-22';\n$diff = abs(strtotime($endDate) - strtotime($startDate));\n$daysDifference = floor($diff \/ (60 * 60 * 24));\necho \"Days Difference: $daysDifference\";\n?&gt;\n<\/code><\/pre>\n\n\n\n<p> <strong>6. Working with Timezones:<\/strong><\/p>\n\n\n\n<pre class=\"wp-block-code\"><code lang=\"php\" class=\"language-php\">&lt;?php\n\/\/ Set the default timezone\ndate_default_timezone_set('America\/New_York');\n\n\/\/ Convert a date to a different timezone\n$date = '2023-02-15 12:00:00';\n$newDateTime = new DateTime($date, new DateTimeZone('UTC'));\n$newDateTime-&gt;setTimezone(new DateTimeZone('America\/New_York'));\necho \"Date in New York Timezone: \" . $newDateTime-&gt;format('Y-m-d H:i:s');\n?&gt;\n<\/code><\/pre>\n\n\n\n<p><strong>  7. Handling Daylight Saving Time:<\/strong><\/p>\n\n\n\n<pre class=\"wp-block-code\"><code lang=\"php\" class=\"language-php\">&lt;?php\n\/\/ Check if daylight saving time is active\n$date = '2023-06-15';\n$isDST = date('I', strtotime($date));\nif ($isDST) {\n    echo \"Daylight Saving Time is active.\";\n} else {\n    echo \"Daylight Saving Time is not active.\";\n}\n?&gt;\n<\/code><\/pre>\n\n\n\n<p><a href=\"https:\/\/codeflarelimited.com\/blog\/understanding-stateful-and-stateless-components-in-react\/\">Understanding Stateful and Stateless Components in React<\/a><\/p>\n\n\n\n<p><a href=\"https:\/\/codefussion.tech\">Take a course on software development <\/a><\/p>\n","protected":false},"excerpt":{"rendered":"<p>In the world of web development, dealing with dates and times is an essential aspect of building dynamic<\/p>\n","protected":false},"author":3,"featured_media":1763,"comment_status":"open","ping_status":"closed","sticky":false,"template":"","format":"standard","meta":{"_jetpack_memberships_contains_paid_content":false,"footnotes":""},"categories":[87,98],"tags":[48],"class_list":["post-1761","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-php","category-softare-development","tag-php"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v27.3 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>PHP Date and Time PHP<\/title>\n<meta name=\"description\" content=\"Learn how to handle date and time in PHP with this guide. Master PHP functions and techniques for efficient date and time manipulation.\" \/>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/codeflarelimited.com\/blog\/handling-date-and-time-in-php-a-comprehensive-guide\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"PHP Date and Time PHP\" \/>\n<meta property=\"og:description\" content=\"Learn how to handle date and time in PHP with this guide. Master PHP functions and techniques for efficient date and time manipulation.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/codeflarelimited.com\/blog\/handling-date-and-time-in-php-a-comprehensive-guide\/\" \/>\n<meta property=\"article:published_time\" content=\"2024-02-19T15:47:06+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2024-02-20T09:07:56+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/codeflarelimited.com\/blog\/wp-content\/uploads\/2024\/02\/php-date-and-time.png\" \/>\n\t<meta property=\"og:image:width\" content=\"2240\" \/>\n\t<meta property=\"og:image:height\" content=\"1260\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/png\" \/>\n<meta name=\"author\" content=\"Kene Samuel\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\\\/\\\/schema.org\",\"@graph\":[{\"@type\":\"TechArticle\",\"@id\":\"https:\\\/\\\/codeflarelimited.com\\\/blog\\\/handling-date-and-time-in-php-a-comprehensive-guide\\\/#article\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/codeflarelimited.com\\\/blog\\\/handling-date-and-time-in-php-a-comprehensive-guide\\\/\"},\"author\":{\"name\":\"Kene Samuel\",\"@id\":\"https:\\\/\\\/codeflarelimited.com\\\/blog\\\/#\\\/schema\\\/person\\\/c501609bab46c16807eb32106074f206\"},\"headline\":\"PHP Date and Time\",\"datePublished\":\"2024-02-19T15:47:06+00:00\",\"dateModified\":\"2024-02-20T09:07:56+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/codeflarelimited.com\\\/blog\\\/handling-date-and-time-in-php-a-comprehensive-guide\\\/\"},\"wordCount\":140,\"commentCount\":0,\"publisher\":{\"@id\":\"https:\\\/\\\/codeflarelimited.com\\\/blog\\\/#organization\"},\"image\":{\"@id\":\"https:\\\/\\\/codeflarelimited.com\\\/blog\\\/handling-date-and-time-in-php-a-comprehensive-guide\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/codeflarelimited.com\\\/blog\\\/wp-content\\\/uploads\\\/2024\\\/02\\\/php-date-and-time.png\",\"keywords\":[\"php\"],\"articleSection\":[\"php\",\"softare development\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\\\/\\\/codeflarelimited.com\\\/blog\\\/handling-date-and-time-in-php-a-comprehensive-guide\\\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/codeflarelimited.com\\\/blog\\\/handling-date-and-time-in-php-a-comprehensive-guide\\\/\",\"url\":\"https:\\\/\\\/codeflarelimited.com\\\/blog\\\/handling-date-and-time-in-php-a-comprehensive-guide\\\/\",\"name\":\"PHP Date and Time PHP\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/codeflarelimited.com\\\/blog\\\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\\\/\\\/codeflarelimited.com\\\/blog\\\/handling-date-and-time-in-php-a-comprehensive-guide\\\/#primaryimage\"},\"image\":{\"@id\":\"https:\\\/\\\/codeflarelimited.com\\\/blog\\\/handling-date-and-time-in-php-a-comprehensive-guide\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/codeflarelimited.com\\\/blog\\\/wp-content\\\/uploads\\\/2024\\\/02\\\/php-date-and-time.png\",\"datePublished\":\"2024-02-19T15:47:06+00:00\",\"dateModified\":\"2024-02-20T09:07:56+00:00\",\"description\":\"Learn how to handle date and time in PHP with this guide. Master PHP functions and techniques for efficient date and time manipulation.\",\"breadcrumb\":{\"@id\":\"https:\\\/\\\/codeflarelimited.com\\\/blog\\\/handling-date-and-time-in-php-a-comprehensive-guide\\\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/codeflarelimited.com\\\/blog\\\/handling-date-and-time-in-php-a-comprehensive-guide\\\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/codeflarelimited.com\\\/blog\\\/handling-date-and-time-in-php-a-comprehensive-guide\\\/#primaryimage\",\"url\":\"https:\\\/\\\/codeflarelimited.com\\\/blog\\\/wp-content\\\/uploads\\\/2024\\\/02\\\/php-date-and-time.png\",\"contentUrl\":\"https:\\\/\\\/codeflarelimited.com\\\/blog\\\/wp-content\\\/uploads\\\/2024\\\/02\\\/php-date-and-time.png\",\"width\":2240,\"height\":1260,\"caption\":\"PHP date and time handling\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/codeflarelimited.com\\\/blog\\\/handling-date-and-time-in-php-a-comprehensive-guide\\\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/codeflarelimited.com\\\/blog\\\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"softare development\",\"item\":\"https:\\\/\\\/codeflarelimited.com\\\/blog\\\/softare-development\\\/\"},{\"@type\":\"ListItem\",\"position\":3,\"name\":\"PHP Date and Time\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\\\/\\\/codeflarelimited.com\\\/blog\\\/#website\",\"url\":\"https:\\\/\\\/codeflarelimited.com\\\/blog\\\/\",\"name\":\"\",\"description\":\"Sustainable solutions\",\"publisher\":{\"@id\":\"https:\\\/\\\/codeflarelimited.com\\\/blog\\\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\\\/\\\/codeflarelimited.com\\\/blog\\\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Organization\",\"@id\":\"https:\\\/\\\/codeflarelimited.com\\\/blog\\\/#organization\",\"name\":\"Codeflare Limited\",\"url\":\"https:\\\/\\\/codeflarelimited.com\\\/blog\\\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/codeflarelimited.com\\\/blog\\\/#\\\/schema\\\/logo\\\/image\\\/\",\"url\":\"https:\\\/\\\/codeflarelimited.com\\\/blog\\\/wp-content\\\/uploads\\\/2020\\\/11\\\/codeflare.png\",\"contentUrl\":\"https:\\\/\\\/codeflarelimited.com\\\/blog\\\/wp-content\\\/uploads\\\/2020\\\/11\\\/codeflare.png\",\"width\":1040,\"height\":263,\"caption\":\"Codeflare Limited\"},\"image\":{\"@id\":\"https:\\\/\\\/codeflarelimited.com\\\/blog\\\/#\\\/schema\\\/logo\\\/image\\\/\"}},{\"@type\":\"Person\",\"@id\":\"https:\\\/\\\/codeflarelimited.com\\\/blog\\\/#\\\/schema\\\/person\\\/c501609bab46c16807eb32106074f206\",\"name\":\"Kene Samuel\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/3e1716cd715a5b5491e1f2da373b52f2f73aeb37d268baff34719116e386d848?s=96&d=mm&r=g\",\"url\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/3e1716cd715a5b5491e1f2da373b52f2f73aeb37d268baff34719116e386d848?s=96&d=mm&r=g\",\"contentUrl\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/3e1716cd715a5b5491e1f2da373b52f2f73aeb37d268baff34719116e386d848?s=96&d=mm&r=g\",\"caption\":\"Kene Samuel\"},\"url\":\"https:\\\/\\\/codeflarelimited.com\\\/blog\\\/author\\\/kene\\\/\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"PHP Date and Time PHP","description":"Learn how to handle date and time in PHP with this guide. Master PHP functions and techniques for efficient date and time manipulation.","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:\/\/codeflarelimited.com\/blog\/handling-date-and-time-in-php-a-comprehensive-guide\/","og_locale":"en_US","og_type":"article","og_title":"PHP Date and Time PHP","og_description":"Learn how to handle date and time in PHP with this guide. Master PHP functions and techniques for efficient date and time manipulation.","og_url":"https:\/\/codeflarelimited.com\/blog\/handling-date-and-time-in-php-a-comprehensive-guide\/","article_published_time":"2024-02-19T15:47:06+00:00","article_modified_time":"2024-02-20T09:07:56+00:00","og_image":[{"width":2240,"height":1260,"url":"https:\/\/codeflarelimited.com\/blog\/wp-content\/uploads\/2024\/02\/php-date-and-time.png","type":"image\/png"}],"author":"Kene Samuel","twitter_card":"summary_large_image","schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"TechArticle","@id":"https:\/\/codeflarelimited.com\/blog\/handling-date-and-time-in-php-a-comprehensive-guide\/#article","isPartOf":{"@id":"https:\/\/codeflarelimited.com\/blog\/handling-date-and-time-in-php-a-comprehensive-guide\/"},"author":{"name":"Kene Samuel","@id":"https:\/\/codeflarelimited.com\/blog\/#\/schema\/person\/c501609bab46c16807eb32106074f206"},"headline":"PHP Date and Time","datePublished":"2024-02-19T15:47:06+00:00","dateModified":"2024-02-20T09:07:56+00:00","mainEntityOfPage":{"@id":"https:\/\/codeflarelimited.com\/blog\/handling-date-and-time-in-php-a-comprehensive-guide\/"},"wordCount":140,"commentCount":0,"publisher":{"@id":"https:\/\/codeflarelimited.com\/blog\/#organization"},"image":{"@id":"https:\/\/codeflarelimited.com\/blog\/handling-date-and-time-in-php-a-comprehensive-guide\/#primaryimage"},"thumbnailUrl":"https:\/\/codeflarelimited.com\/blog\/wp-content\/uploads\/2024\/02\/php-date-and-time.png","keywords":["php"],"articleSection":["php","softare development"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/codeflarelimited.com\/blog\/handling-date-and-time-in-php-a-comprehensive-guide\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/codeflarelimited.com\/blog\/handling-date-and-time-in-php-a-comprehensive-guide\/","url":"https:\/\/codeflarelimited.com\/blog\/handling-date-and-time-in-php-a-comprehensive-guide\/","name":"PHP Date and Time PHP","isPartOf":{"@id":"https:\/\/codeflarelimited.com\/blog\/#website"},"primaryImageOfPage":{"@id":"https:\/\/codeflarelimited.com\/blog\/handling-date-and-time-in-php-a-comprehensive-guide\/#primaryimage"},"image":{"@id":"https:\/\/codeflarelimited.com\/blog\/handling-date-and-time-in-php-a-comprehensive-guide\/#primaryimage"},"thumbnailUrl":"https:\/\/codeflarelimited.com\/blog\/wp-content\/uploads\/2024\/02\/php-date-and-time.png","datePublished":"2024-02-19T15:47:06+00:00","dateModified":"2024-02-20T09:07:56+00:00","description":"Learn how to handle date and time in PHP with this guide. Master PHP functions and techniques for efficient date and time manipulation.","breadcrumb":{"@id":"https:\/\/codeflarelimited.com\/blog\/handling-date-and-time-in-php-a-comprehensive-guide\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/codeflarelimited.com\/blog\/handling-date-and-time-in-php-a-comprehensive-guide\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/codeflarelimited.com\/blog\/handling-date-and-time-in-php-a-comprehensive-guide\/#primaryimage","url":"https:\/\/codeflarelimited.com\/blog\/wp-content\/uploads\/2024\/02\/php-date-and-time.png","contentUrl":"https:\/\/codeflarelimited.com\/blog\/wp-content\/uploads\/2024\/02\/php-date-and-time.png","width":2240,"height":1260,"caption":"PHP date and time handling"},{"@type":"BreadcrumbList","@id":"https:\/\/codeflarelimited.com\/blog\/handling-date-and-time-in-php-a-comprehensive-guide\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/codeflarelimited.com\/blog\/"},{"@type":"ListItem","position":2,"name":"softare development","item":"https:\/\/codeflarelimited.com\/blog\/softare-development\/"},{"@type":"ListItem","position":3,"name":"PHP Date and Time"}]},{"@type":"WebSite","@id":"https:\/\/codeflarelimited.com\/blog\/#website","url":"https:\/\/codeflarelimited.com\/blog\/","name":"","description":"Sustainable solutions","publisher":{"@id":"https:\/\/codeflarelimited.com\/blog\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/codeflarelimited.com\/blog\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Organization","@id":"https:\/\/codeflarelimited.com\/blog\/#organization","name":"Codeflare Limited","url":"https:\/\/codeflarelimited.com\/blog\/","logo":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/codeflarelimited.com\/blog\/#\/schema\/logo\/image\/","url":"https:\/\/codeflarelimited.com\/blog\/wp-content\/uploads\/2020\/11\/codeflare.png","contentUrl":"https:\/\/codeflarelimited.com\/blog\/wp-content\/uploads\/2020\/11\/codeflare.png","width":1040,"height":263,"caption":"Codeflare Limited"},"image":{"@id":"https:\/\/codeflarelimited.com\/blog\/#\/schema\/logo\/image\/"}},{"@type":"Person","@id":"https:\/\/codeflarelimited.com\/blog\/#\/schema\/person\/c501609bab46c16807eb32106074f206","name":"Kene Samuel","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/secure.gravatar.com\/avatar\/3e1716cd715a5b5491e1f2da373b52f2f73aeb37d268baff34719116e386d848?s=96&d=mm&r=g","url":"https:\/\/secure.gravatar.com\/avatar\/3e1716cd715a5b5491e1f2da373b52f2f73aeb37d268baff34719116e386d848?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/3e1716cd715a5b5491e1f2da373b52f2f73aeb37d268baff34719116e386d848?s=96&d=mm&r=g","caption":"Kene Samuel"},"url":"https:\/\/codeflarelimited.com\/blog\/author\/kene\/"}]}},"jetpack_featured_media_url":"https:\/\/codeflarelimited.com\/blog\/wp-content\/uploads\/2024\/02\/php-date-and-time.png","jetpack_sharing_enabled":true,"_links":{"self":[{"href":"https:\/\/codeflarelimited.com\/blog\/wp-json\/wp\/v2\/posts\/1761","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/codeflarelimited.com\/blog\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/codeflarelimited.com\/blog\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/codeflarelimited.com\/blog\/wp-json\/wp\/v2\/users\/3"}],"replies":[{"embeddable":true,"href":"https:\/\/codeflarelimited.com\/blog\/wp-json\/wp\/v2\/comments?post=1761"}],"version-history":[{"count":2,"href":"https:\/\/codeflarelimited.com\/blog\/wp-json\/wp\/v2\/posts\/1761\/revisions"}],"predecessor-version":[{"id":1769,"href":"https:\/\/codeflarelimited.com\/blog\/wp-json\/wp\/v2\/posts\/1761\/revisions\/1769"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/codeflarelimited.com\/blog\/wp-json\/wp\/v2\/media\/1763"}],"wp:attachment":[{"href":"https:\/\/codeflarelimited.com\/blog\/wp-json\/wp\/v2\/media?parent=1761"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/codeflarelimited.com\/blog\/wp-json\/wp\/v2\/categories?post=1761"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/codeflarelimited.com\/blog\/wp-json\/wp\/v2\/tags?post=1761"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}