{"id":7572,"date":"2020-01-29T14:05:02","date_gmt":"2020-01-29T11:05:02","guid":{"rendered":"http:\/\/unihost.com\/help\/?p=7572"},"modified":"2023-09-12T16:20:17","modified_gmt":"2023-09-12T13:20:17","slug":"how-to-update-php-centos-7","status":"publish","type":"post","link":"https:\/\/unihost.com\/help\/how-to-update-php-centos-7\/","title":{"rendered":"How to upgrade PHP version on CentOS 7"},"content":{"rendered":"<p><span style=\"font-family: Ubuntu, sans-serif; font-size: 12pt;\"><img loading=\"lazy\" decoding=\"async\" class=\"aligncenter wp-image-7595 size-full\" src=\"https:\/\/unihost.com\/help\/minio.php?.\/30163304\/php7.4.png\" alt=\"php_logo\" width=\"1024\" height=\"524\" \/ title=\"How to upgrade PHP version on CentOS 7 - Image 1\"><\/span><\/p>\n<iframe loading=\"lazy\"  id=\"_ytid_72375\"  width=\"980\" height=\"551\"  data-origwidth=\"980\" data-origheight=\"551\" src=\"https:\/\/www.youtube.com\/embed\/cDNL21IwDmU?enablejsapi=1&autoplay=0&cc_load_policy=0&cc_lang_pref=&iv_load_policy=1&loop=0&rel=1&fs=1&playsinline=0&autohide=2&theme=dark&color=red&controls=1&\" class=\"__youtube_prefs__  no-lazyload\" title=\"YouTube player\"  allow=\"fullscreen; accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture\" allowfullscreen data-no-lazy=\"1\" data-skipgform_ajax_framebjll=\"\"><\/iframe>\n<p><span style=\"font-family: Ubuntu, sans-serif; font-size: 12pt;\">This tutorial will show you how to upgrade PHP 5.4 to PHP 7.4 on CentOS 7<!--more--><\/span><\/p>\n<p><span style=\"font-family: Ubuntu, sans-serif; font-size: 12pt;\">To install PHP type the next command:<\/span><\/p>\n<pre><span style=\"font-family: Ubuntu, sans-serif; font-size: 12pt;\">#\u00a0yum install php php-mcrypt php-cli php-gd php-curl php-mysql php-ldap php-zip php-fileinfo<\/span><\/pre>\n<p><span style=\"font-family: Ubuntu, sans-serif; font-size: 12pt;\">Type the following command to see the current PHP version:<\/span><\/p>\n<pre><span style=\"font-family: Ubuntu, sans-serif; font-size: 12pt;\"># php -v<\/span>\n<span style=\"font-family: Ubuntu, sans-serif; font-size: 12pt;\">PHP 5.4.16 (cli) (built: Nov 1 2019 16:04:20) <\/span>\n<span style=\"font-family: Ubuntu, sans-serif; font-size: 12pt;\">Copyright (c) 1997-2013 The PHP Group<\/span>\n<span style=\"font-family: Ubuntu, sans-serif; font-size: 12pt;\">Zend Engine v2.4.0, Copyright (c) 1998-2013 Zend Technologies<\/span><\/pre>\n<p><span style=\"font-family: Ubuntu, sans-serif; font-size: 12pt;\">As you can see the default PHP version is 5.4, and now we will update it.<\/span><\/p>\n<p><span style=\"font-family: Ubuntu, sans-serif; font-size: 12pt;\">Turn on Remi repo:<\/span><\/p>\n<pre><span style=\"font-family: Ubuntu, sans-serif; font-size: 12pt;\"># yum install http:\/\/rpms.remirepo.net\/enterprise\/remi-release-7.rpm<\/span><\/pre>\n<p><span style=\"font-family: Ubuntu, sans-serif; font-size: 12pt;\">Install yum-utils packages:<\/span><\/p>\n<pre><span style=\"font-family: Ubuntu, sans-serif; font-size: 12pt;\"># yum install yum-utils<\/span><\/pre>\n<p><span style=\"font-family: Ubuntu, sans-serif; font-size: 12pt;\">The yum-utils package includes yum-config-manager, which you can use to enable Remi repo as the default repository for installing different PHP versions.<\/span><\/p>\n<p><span style=\"font-family: Ubuntu, sans-serif; font-size: 12pt;\">If you want to install PHP 7.1, PHP 7.2, PHP 7.3, or PHP 7.4 on CentOS 7, just enable it as below.<\/span><\/p>\n<pre><span style=\"font-family: Ubuntu, sans-serif; font-size: 12pt;\"># yum-config-manager --enable remi-php71<\/span>\n<span style=\"font-family: Ubuntu, sans-serif; font-size: 12pt;\"># yum-config-manager --enable remi-php72\u00a0<\/span>\n<span style=\"font-family: Ubuntu, sans-serif; font-size: 12pt;\"># yum-config-manager --enable remi-php73<\/span>\n<span style=\"font-family: Ubuntu, sans-serif; font-size: 12pt;\"># yum-config-manager --enable remi-php74<\/span><\/pre>\n<p><span style=\"font-family: Ubuntu, sans-serif; font-size: 12pt;\">For this tutorial, I will choose PHP 7.4<\/span><\/p>\n<pre><span style=\"font-family: Ubuntu, sans-serif; font-size: 12pt;\"># yum-config-manager --enable remi-php74<\/span><\/pre>\n<p><span style=\"font-family: Ubuntu, sans-serif; font-size: 12pt;\">Now you should refresh the repository:<\/span><\/p>\n<pre><span style=\"font-family: Ubuntu, sans-serif; font-size: 12pt;\"># yum update<\/span><\/pre>\n<p><span style=\"font-family: Ubuntu, sans-serif; font-size: 12pt;\"><img loading=\"lazy\" decoding=\"async\" class=\"alignnone wp-image-7575 size-full\" src=\"https:\/\/unihost.com\/help\/minio.php?.\/30163304\/DM_290120__7kpTTLa_DM_290120.png\" alt=\"yum update\" width=\"992\" height=\"519\" \/ title=\"How to upgrade PHP version on CentOS 7 - Image 2\"><\/span><\/p>\n<p><span style=\"font-family: Ubuntu, sans-serif; font-size: 12pt;\">Checking PHP version one more time:<\/span><\/p>\n<pre><span style=\"font-family: Ubuntu, sans-serif; font-size: 12pt;\"># php -v<\/span>\n<span style=\"font-family: Ubuntu, sans-serif; font-size: 12pt;\">PHP 7.4.2 (cli) (built: Jan 21 2020 11:35:20) ( NTS )<\/span>\n<span style=\"font-family: Ubuntu, sans-serif; font-size: 12pt;\">Copyright (c) The PHP Group<\/span>\n<span style=\"font-family: Ubuntu, sans-serif; font-size: 12pt;\">Zend Engine v3.4.0, Copyright (c) Zend Technologies<\/span><\/pre>\n<p><span style=\"font-family: Ubuntu, sans-serif; font-size: 12pt;\">And there you have it, PHP 7.4 installed and running on a CentOS 7 server.<\/span><\/p>\n<p>If you don\u2019t have time to maintain and administer the server, you can always use our <a href=\"https:\/\/unihost.com\/en\/management\/\">\u201cServer Management\u201d<\/a> service<\/p>\n","protected":false},"excerpt":{"rendered":"<p>This tutorial will show you how to upgrade PHP 5.4 to PHP 7.4 on CentOS 7<\/p>\n","protected":false},"author":2,"featured_media":0,"comment_status":"closed","ping_status":"closed","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[158],"tags":[58,143,56],"class_list":["post-7572","post","type-post","status-publish","format-standard","hentry","category-dedicated-servers","tag-centos","tag-php","tag-php-version"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v26.3 - https:\/\/yoast.com\/wordpress\/plugins\/seo\/ -->\n<title>How to upgrade PHP version on CentOS 7 - Unihost.FAQ<\/title>\n<meta name=\"description\" content=\"This step by step tutorial will show you how to upgrade PHP 5.4 to PHP 7.4 on CentOS 7 using command line - Unihost.FAQ\" \/>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/unihost.com\/help\/how-to-update-php-centos-7\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"How to upgrade PHP version on CentOS 7 - Unihost.FAQ\" \/>\n<meta property=\"og:description\" content=\"This step by step tutorial will show you how to upgrade PHP 5.4 to PHP 7.4 on CentOS 7 using command line - Unihost.FAQ\" \/>\n<meta property=\"og:url\" content=\"https:\/\/unihost.com\/help\/how-to-update-php-centos-7\/\" \/>\n<meta property=\"og:site_name\" content=\"Unihost.FAQ\" \/>\n<meta property=\"article:publisher\" content=\"https:\/\/www.facebook.com\/unihost\/\" \/>\n<meta property=\"article:published_time\" content=\"2020-01-29T11:05:02+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2023-09-12T13:20:17+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/unihost.com\/help\/wp-content\/uploads\/php7.4.png\" \/>\n<meta name=\"author\" content=\"Unihost Support\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:creator\" content=\"@unihost\" \/>\n<meta name=\"twitter:site\" content=\"@unihost\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"Unihost Support\" \/>\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:\/\/unihost.com\/help\/how-to-update-php-centos-7\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/unihost.com\/help\/how-to-update-php-centos-7\/\"},\"author\":{\"name\":\"Unihost Support\",\"@id\":\"https:\/\/unihost.com\/help\/#\/schema\/person\/bb5ae95f38577c920e6a7507888b715a\"},\"headline\":\"How to upgrade PHP version on CentOS 7\",\"datePublished\":\"2020-01-29T11:05:02+00:00\",\"dateModified\":\"2023-09-12T13:20:17+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/unihost.com\/help\/how-to-update-php-centos-7\/\"},\"wordCount\":160,\"publisher\":{\"@id\":\"https:\/\/unihost.com\/help\/#organization\"},\"image\":{\"@id\":\"https:\/\/unihost.com\/help\/how-to-update-php-centos-7\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/unihost.com\/help\/wp-content\/uploads\/php7.4.png\",\"keywords\":[\"CentOS\",\"PHP\",\"PHP-Version\"],\"articleSection\":[\"02. Dedicated servers\"],\"inLanguage\":\"en\"},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/unihost.com\/help\/how-to-update-php-centos-7\/\",\"url\":\"https:\/\/unihost.com\/help\/how-to-update-php-centos-7\/\",\"name\":\"How to upgrade PHP version on CentOS 7 - Unihost.FAQ\",\"isPartOf\":{\"@id\":\"https:\/\/unihost.com\/help\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\/\/unihost.com\/help\/how-to-update-php-centos-7\/#primaryimage\"},\"image\":{\"@id\":\"https:\/\/unihost.com\/help\/how-to-update-php-centos-7\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/unihost.com\/help\/wp-content\/uploads\/php7.4.png\",\"datePublished\":\"2020-01-29T11:05:02+00:00\",\"dateModified\":\"2023-09-12T13:20:17+00:00\",\"description\":\"This step by step tutorial will show you how to upgrade PHP 5.4 to PHP 7.4 on CentOS 7 using command line - Unihost.FAQ\",\"breadcrumb\":{\"@id\":\"https:\/\/unihost.com\/help\/how-to-update-php-centos-7\/#breadcrumb\"},\"inLanguage\":\"en\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/unihost.com\/help\/how-to-update-php-centos-7\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en\",\"@id\":\"https:\/\/unihost.com\/help\/how-to-update-php-centos-7\/#primaryimage\",\"url\":\"https:\/\/unihost.com\/help\/minio.php?.\/30163304\/php7.4.png\",\"contentUrl\":\"https:\/\/unihost.com\/help\/minio.php?.\/30163304\/php7.4.png\",\"width\":1024,\"height\":524},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/unihost.com\/help\/how-to-update-php-centos-7\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Unihost\",\"item\":\"https:\/\/unihost.com\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Help\",\"item\":\"https:\/\/unihost.com\/help\/\"},{\"@type\":\"ListItem\",\"position\":3,\"name\":\"How to upgrade PHP version on CentOS 7\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\/\/unihost.com\/help\/#website\",\"url\":\"https:\/\/unihost.com\/help\/\",\"name\":\"Unihost.FAQ\",\"description\":\"\",\"publisher\":{\"@id\":\"https:\/\/unihost.com\/help\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\/\/unihost.com\/help\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en\"},{\"@type\":\"Organization\",\"@id\":\"https:\/\/unihost.com\/help\/#organization\",\"name\":\"Unihost\",\"alternateName\":\"Unihost\",\"url\":\"https:\/\/unihost.com\/help\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en\",\"@id\":\"https:\/\/unihost.com\/help\/#\/schema\/logo\/image\/\",\"url\":\"https:\/\/unihost.com\/help\/minio.php?2026\/01\/minio.png\",\"contentUrl\":\"https:\/\/unihost.com\/help\/minio.php?2026\/01\/minio.png\",\"width\":300,\"height\":300,\"caption\":\"Unihost\"},\"image\":{\"@id\":\"https:\/\/unihost.com\/help\/#\/schema\/logo\/image\/\"},\"sameAs\":[\"https:\/\/www.facebook.com\/unihost\/\",\"https:\/\/x.com\/unihost\",\"https:\/\/www.instagram.com\/unihost\/?hl=en\",\"https:\/\/www.linkedin.com\/company\/unihost-com\",\"https:\/\/www.youtube.com\/channel\/UCITKsxMDnslQY8brN3advgw\"]},{\"@type\":\"Person\",\"@id\":\"https:\/\/unihost.com\/help\/#\/schema\/person\/bb5ae95f38577c920e6a7507888b715a\",\"name\":\"Unihost Support\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en\",\"@id\":\"https:\/\/unihost.com\/help\/#\/schema\/person\/image\/\",\"url\":\"https:\/\/secure.gravatar.com\/avatar\/a0c9db17c2a0d93e8a0d5ac123f8c5db750ad4d3d5657369c0c4e480f5af77b8?s=96&d=mm&r=g\",\"contentUrl\":\"https:\/\/secure.gravatar.com\/avatar\/a0c9db17c2a0d93e8a0d5ac123f8c5db750ad4d3d5657369c0c4e480f5af77b8?s=96&d=mm&r=g\",\"caption\":\"Unihost Support\"},\"sameAs\":[\"https:\/\/unihost.com\/\"],\"url\":\"https:\/\/unihost.com\/help\/author\/support\/\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"How to upgrade PHP version on CentOS 7 - Unihost.FAQ","description":"This step by step tutorial will show you how to upgrade PHP 5.4 to PHP 7.4 on CentOS 7 using command line - Unihost.FAQ","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:\/\/unihost.com\/help\/how-to-update-php-centos-7\/","og_locale":"en_US","og_type":"article","og_title":"How to upgrade PHP version on CentOS 7 - Unihost.FAQ","og_description":"This step by step tutorial will show you how to upgrade PHP 5.4 to PHP 7.4 on CentOS 7 using command line - Unihost.FAQ","og_url":"https:\/\/unihost.com\/help\/how-to-update-php-centos-7\/","og_site_name":"Unihost.FAQ","article_publisher":"https:\/\/www.facebook.com\/unihost\/","article_published_time":"2020-01-29T11:05:02+00:00","article_modified_time":"2023-09-12T13:20:17+00:00","og_image":[{"url":"https:\/\/unihost.com\/help\/wp-content\/uploads\/php7.4.png","type":"","width":"","height":""}],"author":"Unihost Support","twitter_card":"summary_large_image","twitter_creator":"@unihost","twitter_site":"@unihost","twitter_misc":{"Written by":"Unihost Support","Est. reading time":"2 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/unihost.com\/help\/how-to-update-php-centos-7\/#article","isPartOf":{"@id":"https:\/\/unihost.com\/help\/how-to-update-php-centos-7\/"},"author":{"name":"Unihost Support","@id":"https:\/\/unihost.com\/help\/#\/schema\/person\/bb5ae95f38577c920e6a7507888b715a"},"headline":"How to upgrade PHP version on CentOS 7","datePublished":"2020-01-29T11:05:02+00:00","dateModified":"2023-09-12T13:20:17+00:00","mainEntityOfPage":{"@id":"https:\/\/unihost.com\/help\/how-to-update-php-centos-7\/"},"wordCount":160,"publisher":{"@id":"https:\/\/unihost.com\/help\/#organization"},"image":{"@id":"https:\/\/unihost.com\/help\/how-to-update-php-centos-7\/#primaryimage"},"thumbnailUrl":"https:\/\/unihost.com\/help\/wp-content\/uploads\/php7.4.png","keywords":["CentOS","PHP","PHP-Version"],"articleSection":["02. Dedicated servers"],"inLanguage":"en"},{"@type":"WebPage","@id":"https:\/\/unihost.com\/help\/how-to-update-php-centos-7\/","url":"https:\/\/unihost.com\/help\/how-to-update-php-centos-7\/","name":"How to upgrade PHP version on CentOS 7 - Unihost.FAQ","isPartOf":{"@id":"https:\/\/unihost.com\/help\/#website"},"primaryImageOfPage":{"@id":"https:\/\/unihost.com\/help\/how-to-update-php-centos-7\/#primaryimage"},"image":{"@id":"https:\/\/unihost.com\/help\/how-to-update-php-centos-7\/#primaryimage"},"thumbnailUrl":"https:\/\/unihost.com\/help\/wp-content\/uploads\/php7.4.png","datePublished":"2020-01-29T11:05:02+00:00","dateModified":"2023-09-12T13:20:17+00:00","description":"This step by step tutorial will show you how to upgrade PHP 5.4 to PHP 7.4 on CentOS 7 using command line - Unihost.FAQ","breadcrumb":{"@id":"https:\/\/unihost.com\/help\/how-to-update-php-centos-7\/#breadcrumb"},"inLanguage":"en","potentialAction":[{"@type":"ReadAction","target":["https:\/\/unihost.com\/help\/how-to-update-php-centos-7\/"]}]},{"@type":"ImageObject","inLanguage":"en","@id":"https:\/\/unihost.com\/help\/how-to-update-php-centos-7\/#primaryimage","url":"https:\/\/unihost.com\/help\/minio.php?.\/30163304\/php7.4.png","contentUrl":"https:\/\/unihost.com\/help\/minio.php?.\/30163304\/php7.4.png","width":1024,"height":524},{"@type":"BreadcrumbList","@id":"https:\/\/unihost.com\/help\/how-to-update-php-centos-7\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Unihost","item":"https:\/\/unihost.com\/"},{"@type":"ListItem","position":2,"name":"Help","item":"https:\/\/unihost.com\/help\/"},{"@type":"ListItem","position":3,"name":"How to upgrade PHP version on CentOS 7"}]},{"@type":"WebSite","@id":"https:\/\/unihost.com\/help\/#website","url":"https:\/\/unihost.com\/help\/","name":"Unihost.FAQ","description":"","publisher":{"@id":"https:\/\/unihost.com\/help\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/unihost.com\/help\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en"},{"@type":"Organization","@id":"https:\/\/unihost.com\/help\/#organization","name":"Unihost","alternateName":"Unihost","url":"https:\/\/unihost.com\/help\/","logo":{"@type":"ImageObject","inLanguage":"en","@id":"https:\/\/unihost.com\/help\/#\/schema\/logo\/image\/","url":"https:\/\/unihost.com\/help\/minio.php?2026\/01\/minio.png","contentUrl":"https:\/\/unihost.com\/help\/minio.php?2026\/01\/minio.png","width":300,"height":300,"caption":"Unihost"},"image":{"@id":"https:\/\/unihost.com\/help\/#\/schema\/logo\/image\/"},"sameAs":["https:\/\/www.facebook.com\/unihost\/","https:\/\/x.com\/unihost","https:\/\/www.instagram.com\/unihost\/?hl=en","https:\/\/www.linkedin.com\/company\/unihost-com","https:\/\/www.youtube.com\/channel\/UCITKsxMDnslQY8brN3advgw"]},{"@type":"Person","@id":"https:\/\/unihost.com\/help\/#\/schema\/person\/bb5ae95f38577c920e6a7507888b715a","name":"Unihost Support","image":{"@type":"ImageObject","inLanguage":"en","@id":"https:\/\/unihost.com\/help\/#\/schema\/person\/image\/","url":"https:\/\/secure.gravatar.com\/avatar\/a0c9db17c2a0d93e8a0d5ac123f8c5db750ad4d3d5657369c0c4e480f5af77b8?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/a0c9db17c2a0d93e8a0d5ac123f8c5db750ad4d3d5657369c0c4e480f5af77b8?s=96&d=mm&r=g","caption":"Unihost Support"},"sameAs":["https:\/\/unihost.com\/"],"url":"https:\/\/unihost.com\/help\/author\/support\/"}]}},"_links":{"self":[{"href":"https:\/\/unihost.com\/help\/wp-json\/wp\/v2\/posts\/7572","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/unihost.com\/help\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/unihost.com\/help\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/unihost.com\/help\/wp-json\/wp\/v2\/users\/2"}],"replies":[{"embeddable":true,"href":"https:\/\/unihost.com\/help\/wp-json\/wp\/v2\/comments?post=7572"}],"version-history":[{"count":23,"href":"https:\/\/unihost.com\/help\/wp-json\/wp\/v2\/posts\/7572\/revisions"}],"predecessor-version":[{"id":16071,"href":"https:\/\/unihost.com\/help\/wp-json\/wp\/v2\/posts\/7572\/revisions\/16071"}],"wp:attachment":[{"href":"https:\/\/unihost.com\/help\/wp-json\/wp\/v2\/media?parent=7572"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/unihost.com\/help\/wp-json\/wp\/v2\/categories?post=7572"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/unihost.com\/help\/wp-json\/wp\/v2\/tags?post=7572"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}