{"id":1210,"date":"2023-03-02T10:53:29","date_gmt":"2023-03-02T09:53:29","guid":{"rendered":"https:\/\/codeflarelimited.com\/blog\/?p=1210"},"modified":"2023-03-21T10:53:06","modified_gmt":"2023-03-21T09:53:06","slug":"remove-special-characters-from-a-string-in-php","status":"publish","type":"post","link":"https:\/\/codeflarelimited.com\/blog\/remove-special-characters-from-a-string-in-php\/","title":{"rendered":"Remove Special Characters from a String in PHP"},"content":{"rendered":"\n<p>In this article, we will learn how to remove special characters from a string in PHP.<\/p>\n\n\n\n<p>Special characters are characters that are not letters, numbers, or punctuation marks. They are symbols that have a specific meaning or function in a computer system, programming language, or application.<\/p>\n\n\n\n<p>Some examples of special characters include:<\/p>\n\n\n\n<ol class=\"wp-block-list\">\n<li>@ &#8211; used in email addresses to separate the user name and the domain name.<\/li>\n\n\n\n<li>&#8211; used in social media platforms to indicate a hashtag or topic.<\/li>\n\n\n\n<li>$ &#8211; used to indicate currency or monetary value.<\/li>\n\n\n\n<li>% &#8211; used to indicate a percentage.<\/li>\n\n\n\n<li>&amp; &#8211; used in HTML to indicate an HTML entity or to concatenate strings in programming languages.<\/li>\n\n\n\n<li>\n<ul class=\"wp-block-list\">\n<li>used as a wildcard character in file searches or as a multiplication symbol.<\/li>\n<\/ul>\n<\/li>\n\n\n\n<li>^ &#8211; used to indicate exponentiation or to indicate a superscript in text.<\/li>\n\n\n\n<li>~ &#8211; used in URLs to indicate a user&#8217;s home directory or in programming languages to indicate a bitwise NOT operation.<\/li>\n\n\n\n<li>| &#8211; used in programming languages to indicate a bitwise OR operation or in Unix-based systems to indicate a pipe or redirect.<\/li>\n<\/ol>\n\n\n\n<p>Sometimes, in your PHP code, you don&#8217;t want certain characters to make it to your database because they have a tendency to cause code malfunction or just flat out disorganise your database.<\/p>\n\n\n\n<p>Well, there&#8217;s a way to do that in PHP.<\/p>\n\n\n\n<p>The&nbsp;<strong>str_replace()&nbsp;<\/strong>method<strong>&nbsp;<\/strong>is used to remove all the special characters from the given string&nbsp;<strong>str&nbsp;<\/strong>by replacing these characters with white space&nbsp;<strong>(\u201d \u201c).<\/strong><\/p>\n\n\n\n<h3 class=\"wp-block-heading\" id=\"h-flutterwave-payment-integration-with-php\"><a href=\"https:\/\/codeflarelimited.com\/blog\/flutterwave-payment-integration-with-php\/\" target=\"_blank\" rel=\"noreferrer noopener\">FlutterWave Payment Integration With PHP<\/a><\/h3>\n\n\n\n<pre class=\"wp-block-code\"><code class=\"\">&lt;?php\n\/\/ PHP program to Remove\n\/\/ Special Character From String\n\n\/\/ Function to remove the special\nfunction RemoveSpecialChar($str){\n\n\t\/\/ Using str_ireplace() function\n\t\/\/ to replace the word\n\t$res = str_replace( array( '\\'', '\"',\n\t',' , ';', '&lt;', '&gt;' ), ' ', $str);\n\n\t\/\/ returning the result\n\treturn $res;\n\t}\n\n\/\/ Given string\n$str = \"Remove&lt;the&gt;Special'Char;\";\n\n\/\/ Function calling\n$str1 = RemoveSpecialChar($str);\n\n\/\/ Printing the result\necho $str1;\n?&gt;\n\n<\/code><\/pre>\n\n\n\n<p>In the <strong><em>str_replace()<\/em><\/strong> method, we pass an array of the special characters we want to look out for, adding some bit of flexibility to our logic.<\/p>\n\n\n\n<p>We can also use the <strong><em>str_ireplace(<\/em>) <\/strong>method as well. The difference between the <strong><em>str_replace()<\/em><\/strong> and <strong><em>str_ireplace()<\/em><\/strong> is that str_ireplace is case insensitive.<\/p>\n\n\n\n<p>With this method we have demonstrated how to remove special characters from a string in PHP.<\/p>\n\n\n\n<h3 class=\"wp-block-heading\" id=\"h-start-learning-software-development\"><a href=\"https:\/\/play.google.com\/store\/apps\/details?id=com.codefussion\" target=\"_blank\" rel=\"noreferrer noopener\">Start learning software development<\/a><\/h3>\n","protected":false},"excerpt":{"rendered":"<p>In this article, we will learn how to remove special characters from a string in PHP. Special characters<\/p>\n","protected":false},"author":1,"featured_media":1211,"comment_status":"open","ping_status":"closed","sticky":false,"template":"","format":"standard","meta":{"_jetpack_memberships_contains_paid_content":false,"footnotes":""},"categories":[87,95],"tags":[],"class_list":["post-1210","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-php","category-software-development"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v27.5 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>Remove Special Characters from a String in PHP<\/title>\n<meta name=\"description\" content=\"In this article, we will learn how to remove special characters from a string in PHP. The str_replace() method is used to remove special\" \/>\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\/remove-special-characters-from-a-string-in-php\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Remove Special Characters from a String in PHP\" \/>\n<meta property=\"og:description\" content=\"In this article, we will learn how to remove special characters from a string in PHP. The str_replace() method is used to remove special\" \/>\n<meta property=\"og:url\" content=\"https:\/\/codeflarelimited.com\/blog\/remove-special-characters-from-a-string-in-php\/\" \/>\n<meta property=\"article:author\" content=\"https:\/\/facebook.com\/codeflretech\" \/>\n<meta property=\"article:published_time\" content=\"2023-03-02T09:53:29+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2023-03-21T09:53:06+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/codeflarelimited.com\/blog\/wp-content\/uploads\/2023\/03\/Untitled-Design-7.jpeg\" \/>\n\t<meta property=\"og:image:width\" content=\"1200\" \/>\n\t<meta property=\"og:image:height\" content=\"628\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/jpeg\" \/>\n<meta name=\"author\" content=\"codeflare\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:creator\" content=\"@codeflaretech\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\\\/\\\/schema.org\",\"@graph\":[{\"@type\":\"TechArticle\",\"@id\":\"https:\\\/\\\/codeflarelimited.com\\\/blog\\\/remove-special-characters-from-a-string-in-php\\\/#article\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/codeflarelimited.com\\\/blog\\\/remove-special-characters-from-a-string-in-php\\\/\"},\"author\":{\"name\":\"codeflare\",\"@id\":\"https:\\\/\\\/codeflarelimited.com\\\/blog\\\/#\\\/schema\\\/person\\\/7e65653d49add95629f8c1053c5cd76a\"},\"headline\":\"Remove Special Characters from a String in PHP\",\"datePublished\":\"2023-03-02T09:53:29+00:00\",\"dateModified\":\"2023-03-21T09:53:06+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/codeflarelimited.com\\\/blog\\\/remove-special-characters-from-a-string-in-php\\\/\"},\"wordCount\":332,\"commentCount\":0,\"publisher\":{\"@id\":\"https:\\\/\\\/codeflarelimited.com\\\/blog\\\/#organization\"},\"image\":{\"@id\":\"https:\\\/\\\/codeflarelimited.com\\\/blog\\\/remove-special-characters-from-a-string-in-php\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/codeflarelimited.com\\\/blog\\\/wp-content\\\/uploads\\\/2023\\\/03\\\/Untitled-Design-7.jpeg\",\"articleSection\":[\"php\",\"software development\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\\\/\\\/codeflarelimited.com\\\/blog\\\/remove-special-characters-from-a-string-in-php\\\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/codeflarelimited.com\\\/blog\\\/remove-special-characters-from-a-string-in-php\\\/\",\"url\":\"https:\\\/\\\/codeflarelimited.com\\\/blog\\\/remove-special-characters-from-a-string-in-php\\\/\",\"name\":\"Remove Special Characters from a String in PHP\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/codeflarelimited.com\\\/blog\\\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\\\/\\\/codeflarelimited.com\\\/blog\\\/remove-special-characters-from-a-string-in-php\\\/#primaryimage\"},\"image\":{\"@id\":\"https:\\\/\\\/codeflarelimited.com\\\/blog\\\/remove-special-characters-from-a-string-in-php\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/codeflarelimited.com\\\/blog\\\/wp-content\\\/uploads\\\/2023\\\/03\\\/Untitled-Design-7.jpeg\",\"datePublished\":\"2023-03-02T09:53:29+00:00\",\"dateModified\":\"2023-03-21T09:53:06+00:00\",\"description\":\"In this article, we will learn how to remove special characters from a string in PHP. The str_replace() method is used to remove special\",\"breadcrumb\":{\"@id\":\"https:\\\/\\\/codeflarelimited.com\\\/blog\\\/remove-special-characters-from-a-string-in-php\\\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/codeflarelimited.com\\\/blog\\\/remove-special-characters-from-a-string-in-php\\\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/codeflarelimited.com\\\/blog\\\/remove-special-characters-from-a-string-in-php\\\/#primaryimage\",\"url\":\"https:\\\/\\\/codeflarelimited.com\\\/blog\\\/wp-content\\\/uploads\\\/2023\\\/03\\\/Untitled-Design-7.jpeg\",\"contentUrl\":\"https:\\\/\\\/codeflarelimited.com\\\/blog\\\/wp-content\\\/uploads\\\/2023\\\/03\\\/Untitled-Design-7.jpeg\",\"width\":1200,\"height\":628,\"caption\":\"remove special characters from a string in PHP\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/codeflarelimited.com\\\/blog\\\/remove-special-characters-from-a-string-in-php\\\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/codeflarelimited.com\\\/blog\\\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"software development\",\"item\":\"https:\\\/\\\/codeflarelimited.com\\\/blog\\\/software-development\\\/\"},{\"@type\":\"ListItem\",\"position\":3,\"name\":\"Remove Special Characters from a String in PHP\"}]},{\"@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\\\/7e65653d49add95629f8c1053c5cd76a\",\"name\":\"codeflare\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/59cef917c86d965eea581d2747f51bd6382003a68bfce7c8a4dfec98b4cd838d?s=96&d=mm&r=g\",\"url\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/59cef917c86d965eea581d2747f51bd6382003a68bfce7c8a4dfec98b4cd838d?s=96&d=mm&r=g\",\"contentUrl\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/59cef917c86d965eea581d2747f51bd6382003a68bfce7c8a4dfec98b4cd838d?s=96&d=mm&r=g\",\"caption\":\"codeflare\"},\"description\":\"Latest tech news and coding tips.\",\"sameAs\":[\"https:\\\/\\\/codeflarelimited.com\\\/blog\",\"https:\\\/\\\/facebook.com\\\/codeflretech\",\"https:\\\/\\\/instagram.com\\\/codeflaretech\",\"https:\\\/\\\/x.com\\\/codeflaretech\",\"https:\\\/\\\/www.youtube.com\\\/channel\\\/UCuBLtiYqsajHdqw0uyt7Ofw?sub_confirmation=1\"],\"url\":\"https:\\\/\\\/codeflarelimited.com\\\/blog\\\/author\\\/watcher\\\/\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"Remove Special Characters from a String in PHP","description":"In this article, we will learn how to remove special characters from a string in PHP. The str_replace() method is used to remove special","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\/remove-special-characters-from-a-string-in-php\/","og_locale":"en_US","og_type":"article","og_title":"Remove Special Characters from a String in PHP","og_description":"In this article, we will learn how to remove special characters from a string in PHP. The str_replace() method is used to remove special","og_url":"https:\/\/codeflarelimited.com\/blog\/remove-special-characters-from-a-string-in-php\/","article_author":"https:\/\/facebook.com\/codeflretech","article_published_time":"2023-03-02T09:53:29+00:00","article_modified_time":"2023-03-21T09:53:06+00:00","og_image":[{"width":1200,"height":628,"url":"https:\/\/codeflarelimited.com\/blog\/wp-content\/uploads\/2023\/03\/Untitled-Design-7.jpeg","type":"image\/jpeg"}],"author":"codeflare","twitter_card":"summary_large_image","twitter_creator":"@codeflaretech","schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"TechArticle","@id":"https:\/\/codeflarelimited.com\/blog\/remove-special-characters-from-a-string-in-php\/#article","isPartOf":{"@id":"https:\/\/codeflarelimited.com\/blog\/remove-special-characters-from-a-string-in-php\/"},"author":{"name":"codeflare","@id":"https:\/\/codeflarelimited.com\/blog\/#\/schema\/person\/7e65653d49add95629f8c1053c5cd76a"},"headline":"Remove Special Characters from a String in PHP","datePublished":"2023-03-02T09:53:29+00:00","dateModified":"2023-03-21T09:53:06+00:00","mainEntityOfPage":{"@id":"https:\/\/codeflarelimited.com\/blog\/remove-special-characters-from-a-string-in-php\/"},"wordCount":332,"commentCount":0,"publisher":{"@id":"https:\/\/codeflarelimited.com\/blog\/#organization"},"image":{"@id":"https:\/\/codeflarelimited.com\/blog\/remove-special-characters-from-a-string-in-php\/#primaryimage"},"thumbnailUrl":"https:\/\/codeflarelimited.com\/blog\/wp-content\/uploads\/2023\/03\/Untitled-Design-7.jpeg","articleSection":["php","software development"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/codeflarelimited.com\/blog\/remove-special-characters-from-a-string-in-php\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/codeflarelimited.com\/blog\/remove-special-characters-from-a-string-in-php\/","url":"https:\/\/codeflarelimited.com\/blog\/remove-special-characters-from-a-string-in-php\/","name":"Remove Special Characters from a String in PHP","isPartOf":{"@id":"https:\/\/codeflarelimited.com\/blog\/#website"},"primaryImageOfPage":{"@id":"https:\/\/codeflarelimited.com\/blog\/remove-special-characters-from-a-string-in-php\/#primaryimage"},"image":{"@id":"https:\/\/codeflarelimited.com\/blog\/remove-special-characters-from-a-string-in-php\/#primaryimage"},"thumbnailUrl":"https:\/\/codeflarelimited.com\/blog\/wp-content\/uploads\/2023\/03\/Untitled-Design-7.jpeg","datePublished":"2023-03-02T09:53:29+00:00","dateModified":"2023-03-21T09:53:06+00:00","description":"In this article, we will learn how to remove special characters from a string in PHP. The str_replace() method is used to remove special","breadcrumb":{"@id":"https:\/\/codeflarelimited.com\/blog\/remove-special-characters-from-a-string-in-php\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/codeflarelimited.com\/blog\/remove-special-characters-from-a-string-in-php\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/codeflarelimited.com\/blog\/remove-special-characters-from-a-string-in-php\/#primaryimage","url":"https:\/\/codeflarelimited.com\/blog\/wp-content\/uploads\/2023\/03\/Untitled-Design-7.jpeg","contentUrl":"https:\/\/codeflarelimited.com\/blog\/wp-content\/uploads\/2023\/03\/Untitled-Design-7.jpeg","width":1200,"height":628,"caption":"remove special characters from a string in PHP"},{"@type":"BreadcrumbList","@id":"https:\/\/codeflarelimited.com\/blog\/remove-special-characters-from-a-string-in-php\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/codeflarelimited.com\/blog\/"},{"@type":"ListItem","position":2,"name":"software development","item":"https:\/\/codeflarelimited.com\/blog\/software-development\/"},{"@type":"ListItem","position":3,"name":"Remove Special Characters from a String in PHP"}]},{"@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\/7e65653d49add95629f8c1053c5cd76a","name":"codeflare","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/secure.gravatar.com\/avatar\/59cef917c86d965eea581d2747f51bd6382003a68bfce7c8a4dfec98b4cd838d?s=96&d=mm&r=g","url":"https:\/\/secure.gravatar.com\/avatar\/59cef917c86d965eea581d2747f51bd6382003a68bfce7c8a4dfec98b4cd838d?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/59cef917c86d965eea581d2747f51bd6382003a68bfce7c8a4dfec98b4cd838d?s=96&d=mm&r=g","caption":"codeflare"},"description":"Latest tech news and coding tips.","sameAs":["https:\/\/codeflarelimited.com\/blog","https:\/\/facebook.com\/codeflretech","https:\/\/instagram.com\/codeflaretech","https:\/\/x.com\/codeflaretech","https:\/\/www.youtube.com\/channel\/UCuBLtiYqsajHdqw0uyt7Ofw?sub_confirmation=1"],"url":"https:\/\/codeflarelimited.com\/blog\/author\/watcher\/"}]}},"jetpack_featured_media_url":"https:\/\/codeflarelimited.com\/blog\/wp-content\/uploads\/2023\/03\/Untitled-Design-7.jpeg","jetpack_sharing_enabled":true,"_links":{"self":[{"href":"https:\/\/codeflarelimited.com\/blog\/wp-json\/wp\/v2\/posts\/1210","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\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/codeflarelimited.com\/blog\/wp-json\/wp\/v2\/comments?post=1210"}],"version-history":[{"count":2,"href":"https:\/\/codeflarelimited.com\/blog\/wp-json\/wp\/v2\/posts\/1210\/revisions"}],"predecessor-version":[{"id":1249,"href":"https:\/\/codeflarelimited.com\/blog\/wp-json\/wp\/v2\/posts\/1210\/revisions\/1249"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/codeflarelimited.com\/blog\/wp-json\/wp\/v2\/media\/1211"}],"wp:attachment":[{"href":"https:\/\/codeflarelimited.com\/blog\/wp-json\/wp\/v2\/media?parent=1210"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/codeflarelimited.com\/blog\/wp-json\/wp\/v2\/categories?post=1210"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/codeflarelimited.com\/blog\/wp-json\/wp\/v2\/tags?post=1210"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}