{"id":4089,"date":"2022-09-08T01:00:00","date_gmt":"2022-09-08T05:00:00","guid":{"rendered":"https:\/\/www.canspace.ca\/blog\/?p=4089"},"modified":"2022-09-01T16:33:17","modified_gmt":"2022-09-01T20:33:17","slug":"whats-coming-in-php-8-2","status":"publish","type":"post","link":"https:\/\/www.canspace.ca\/blog\/hosting-servers\/whats-coming-in-php-8-2\/","title":{"rendered":"What&#8217;s Coming in PHP 8.2"},"content":{"rendered":"\n<p class=\"wp-block-paragraph\">PHP is so ubiquitous in web development, that anyone involved with websites is usually aware of the release schedule for new versions. The newest version, PHP 8.2 is scheduled for general release this November. In this post, we\u2019ll go over what\u2019s new in PHP 8.2.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">New &#8220;memory_reset_peak_usage&#8221; function<\/h2>\n\n\n\n<p class=\"wp-block-paragraph\">PHP 8.2 adds a new function named &#8220;memory_reset_peak_usage&#8221; that resets the peak memory usage returned by the <a href=\"https:\/\/www.php.net\/manual\/function.memory-get-peak-usage.php\">memory_get_peak_usage<\/a> function. This can be helpful in applications that invokes or iterates an action multiple times, and needs to record the peak memory usage of each invocation. Without the ability to reset the memory usage with the new &#8220;memory_reset_peak_usage&#8221; function, the &#8220;memory_get_peak_usage&#8221; returns the absolute peak memory usage throughout the entire run.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\"><strong>Readonly Classes<\/strong><\/h2>\n\n\n\n<p class=\"wp-block-paragraph\">Following the <a href=\"https:\/\/php.watch\/versions\/8.1\/readonly\">readonly feature in PHP 8.1 for class properties<\/a>, PHP 8.2 supports declaring an entire class as readonly.<\/p>\n\n\n\n<p class=\"wp-block-paragraph\">A class declared as readonly automatically makes all properties readonly. <a href=\"https:\/\/php.watch\/versions\/8.2\/dynamic-properties-deprecated\">PHP 8.2 deprecates dynamic properties<\/a>, but readonly classes hard-fail dynamic properties with an Error exception. To summarize, a <strong>readonly property<\/strong>:<\/p>\n\n\n\n<ul class=\"wp-block-list\"><li><a href=\"https:\/\/php.watch\/versions\/8.1\/readonly#init\">Only be initialized from within the class scope<\/a>.<\/li><li><a href=\"https:\/\/php.watch\/versions\/8.1\/readonly#enforce\">Cannot be modified once initialized<\/a>.<\/li><li><a href=\"https:\/\/php.watch\/versions\/8.1\/readonly#unset\">Cannot be unset once initialized<\/a>.<\/li><li><a href=\"https:\/\/php.watch\/versions\/8.1\/readonly#typed-only\">Must be a typed property<\/a>.<\/li><\/ul>\n\n\n\n<figure class=\"wp-block-image size-large\"><a href=\"https:\/\/www.canspace.ca\/blog\/wp-content\/uploads\/2022\/09\/canspace-solutions-whats-coming-php-8-2-inline.jpg\"><img loading=\"lazy\" decoding=\"async\" width=\"1024\" height=\"512\" src=\"https:\/\/www.canspace.ca\/blog\/wp-content\/uploads\/2022\/09\/canspace-solutions-whats-coming-php-8-2-inline.jpg\" alt=\"\" class=\"wp-image-4094\" srcset=\"https:\/\/www.canspace.ca\/blog\/wp-content\/uploads\/2022\/09\/canspace-solutions-whats-coming-php-8-2-inline.jpg 1024w, https:\/\/www.canspace.ca\/blog\/wp-content\/uploads\/2022\/09\/canspace-solutions-whats-coming-php-8-2-inline-300x150.jpg 300w, https:\/\/www.canspace.ca\/blog\/wp-content\/uploads\/2022\/09\/canspace-solutions-whats-coming-php-8-2-inline-768x384.jpg 768w, https:\/\/www.canspace.ca\/blog\/wp-content\/uploads\/2022\/09\/canspace-solutions-whats-coming-php-8-2-inline-740x370.jpg 740w\" sizes=\"auto, (max-width: 1024px) 100vw, 1024px\" \/><\/a><\/figure>\n\n\n\n<h2 class=\"wp-block-heading\"><strong>MySQLi: New &#8220;mysqli_execute_query&#8221; function and &#8220;mysqli::execute_query&#8221; method<\/strong><\/h2>\n\n\n\n<p class=\"wp-block-paragraph\">In PHP 8.2, the MySQLi extension provides a more straight-forward approach to prepare, bind, execute, and retrieve results from an SQL with a new &#8220;mysqli_execute_query&#8221; function for procedural API and a new &#8220;mysqli::execute_query&#8221; method.<\/p>\n\n\n\n<p class=\"wp-block-paragraph\">The new &#8220;mysqli_execute_query&#8221; function and &#8220;mysqli::execute_query&#8221; method accept an SQL query and optionally an array of parameters. The query will be prepared, bound (if parameters are passed), executed within the function\/method. It returns a &#8220;mysqli_result&#8221; object on successful queries, or false if the query was unsuccessful.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\"><strong>True Type<\/strong><\/h2>\n\n\n\n<p class=\"wp-block-paragraph\">PHP 8.2 allows using true as a type as a standalone type and as part of a <a href=\"https:\/\/php.watch\/versions\/8.0\/union-types\">Union Type<\/a>. <\/p>\n\n\n\n<p class=\"wp-block-paragraph\">Since PHP 8.2, true can be used as a type anywhere PHP accepts a type.<\/p>\n\n\n\n<p class=\"wp-block-paragraph\">When a parameter, property, or a return type is declared as true, PHP does <strong>not coerce<\/strong> any other type to true. This is the case even if PHP script has strict types (strict_types) disabled, and even on values that are otherwise coerced as true in non-strict comparisons.<\/p>\n\n\n\n<p class=\"wp-block-paragraph\">Upgrading to a recent version of PHP can make a dramatic difference in your website\u2019s performance. At CanSpace, we plan to support PHP 8.2 as soon as it&#8217;s released.<\/p>\n\n\n\n<p class=\"wp-block-paragraph\">If you have any specific questions about how these new functionalities may affect your site, <a href=\"https:\/\/www.canspace.ca\/contact.html\">contact us to discuss<\/a>!<\/p>\n","protected":false},"excerpt":{"rendered":"<p>PHP is so ubiquitous in web development, that anyone involved with websites is usually aware of the release schedule for new versions. The newest version, PHP 8.2 is scheduled for general release this November. In this post, we\u2019ll go over what\u2019s new in PHP 8.2. New &#8220;memory_reset_peak_usage&#8221; function PHP 8.2 adds a new function named [&hellip;]<\/p>\n","protected":false},"author":1,"featured_media":4093,"comment_status":"closed","ping_status":"closed","sticky":false,"template":"","format":"standard","meta":{"_acf_changed":false,"inline_featured_image":false,"client_name":"","client_title":"","client_company_name":"","client_url":"","client_quote":"","footnotes":""},"categories":[135],"tags":[],"class_list":["post-4089","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-hosting-servers"],"acf":[],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v27.9 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>What&#039;s Coming in PHP 8.2 - Canada&#039;s Leading Web Hosting and Domain Name Provider<\/title>\n<meta name=\"description\" content=\"The newest version, PHP 8.2 is scheduled for general release this November. In this post, we\u2019ll go over what\u2019s new in PHP 8.2.\" \/>\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.canspace.ca\/blog\/hosting-servers\/whats-coming-in-php-8-2\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"What&#039;s Coming in PHP 8.2 - Canada&#039;s Leading Web Hosting and Domain Name Provider\" \/>\n<meta property=\"og:description\" content=\"The newest version, PHP 8.2 is scheduled for general release this November. In this post, we\u2019ll go over what\u2019s new in PHP 8.2.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/www.canspace.ca\/blog\/hosting-servers\/whats-coming-in-php-8-2\/\" \/>\n<meta property=\"og:site_name\" content=\"Canada&#039;s Leading Web Hosting and Domain Name Provider\" \/>\n<meta property=\"article:author\" content=\"https:\/\/www.facebook.com\/canspace.ca\" \/>\n<meta property=\"article:published_time\" content=\"2022-09-08T05:00:00+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/www.canspace.ca\/blog\/wp-content\/uploads\/2022\/09\/canspace-solutions-whats-coming-php-8-2-featured.jpg\" \/>\n\t<meta property=\"og:image:width\" content=\"1280\" \/>\n\t<meta property=\"og:image:height\" content=\"853\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/jpeg\" \/>\n<meta name=\"author\" content=\"CanSpace Team\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:creator\" content=\"@canspace_ca\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"CanSpace Team\" \/>\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.canspace.ca\\\/blog\\\/hosting-servers\\\/whats-coming-in-php-8-2\\\/#article\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/www.canspace.ca\\\/blog\\\/hosting-servers\\\/whats-coming-in-php-8-2\\\/\"},\"author\":{\"name\":\"CanSpace Team\",\"@id\":\"https:\\\/\\\/www.canspace.ca\\\/blog\\\/#\\\/schema\\\/person\\\/6bf91c438b083753bbb7d2736141a6bb\"},\"headline\":\"What&#8217;s Coming in PHP 8.2\",\"datePublished\":\"2022-09-08T05:00:00+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/www.canspace.ca\\\/blog\\\/hosting-servers\\\/whats-coming-in-php-8-2\\\/\"},\"wordCount\":438,\"publisher\":{\"@id\":\"https:\\\/\\\/www.canspace.ca\\\/blog\\\/#organization\"},\"image\":{\"@id\":\"https:\\\/\\\/www.canspace.ca\\\/blog\\\/hosting-servers\\\/whats-coming-in-php-8-2\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/www.canspace.ca\\\/blog\\\/wp-content\\\/uploads\\\/2022\\\/09\\\/canspace-solutions-whats-coming-php-8-2-featured.jpg\",\"articleSection\":[\"Hosting and Servers\"],\"inLanguage\":\"en-US\"},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/www.canspace.ca\\\/blog\\\/hosting-servers\\\/whats-coming-in-php-8-2\\\/\",\"url\":\"https:\\\/\\\/www.canspace.ca\\\/blog\\\/hosting-servers\\\/whats-coming-in-php-8-2\\\/\",\"name\":\"What's Coming in PHP 8.2 - Canada&#039;s Leading Web Hosting and Domain Name Provider\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/www.canspace.ca\\\/blog\\\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\\\/\\\/www.canspace.ca\\\/blog\\\/hosting-servers\\\/whats-coming-in-php-8-2\\\/#primaryimage\"},\"image\":{\"@id\":\"https:\\\/\\\/www.canspace.ca\\\/blog\\\/hosting-servers\\\/whats-coming-in-php-8-2\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/www.canspace.ca\\\/blog\\\/wp-content\\\/uploads\\\/2022\\\/09\\\/canspace-solutions-whats-coming-php-8-2-featured.jpg\",\"datePublished\":\"2022-09-08T05:00:00+00:00\",\"description\":\"The newest version, PHP 8.2 is scheduled for general release this November. In this post, we\u2019ll go over what\u2019s new in PHP 8.2.\",\"breadcrumb\":{\"@id\":\"https:\\\/\\\/www.canspace.ca\\\/blog\\\/hosting-servers\\\/whats-coming-in-php-8-2\\\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/www.canspace.ca\\\/blog\\\/hosting-servers\\\/whats-coming-in-php-8-2\\\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/www.canspace.ca\\\/blog\\\/hosting-servers\\\/whats-coming-in-php-8-2\\\/#primaryimage\",\"url\":\"https:\\\/\\\/www.canspace.ca\\\/blog\\\/wp-content\\\/uploads\\\/2022\\\/09\\\/canspace-solutions-whats-coming-php-8-2-featured.jpg\",\"contentUrl\":\"https:\\\/\\\/www.canspace.ca\\\/blog\\\/wp-content\\\/uploads\\\/2022\\\/09\\\/canspace-solutions-whats-coming-php-8-2-featured.jpg\",\"width\":1280,\"height\":853},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/www.canspace.ca\\\/blog\\\/hosting-servers\\\/whats-coming-in-php-8-2\\\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Blog\",\"item\":\"https:\\\/\\\/www.canspace.ca\\\/blog\\\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"What&#8217;s Coming in PHP 8.2\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\\\/\\\/www.canspace.ca\\\/blog\\\/#website\",\"url\":\"https:\\\/\\\/www.canspace.ca\\\/blog\\\/\",\"name\":\"Canada&#039;s Leading Web Hosting and Domain Name Provider\",\"description\":\"Canada&#039;s Leading Domain Registrar and Web Hosting Provider\",\"publisher\":{\"@id\":\"https:\\\/\\\/www.canspace.ca\\\/blog\\\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\\\/\\\/www.canspace.ca\\\/blog\\\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Organization\",\"@id\":\"https:\\\/\\\/www.canspace.ca\\\/blog\\\/#organization\",\"name\":\"CanSpace Solutions\",\"url\":\"https:\\\/\\\/www.canspace.ca\\\/blog\\\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/www.canspace.ca\\\/blog\\\/#\\\/schema\\\/logo\\\/image\\\/\",\"url\":\"https:\\\/\\\/www.canspace.ca\\\/blog\\\/wp-content\\\/uploads\\\/2016\\\/11\\\/logolargesize.png\",\"contentUrl\":\"https:\\\/\\\/www.canspace.ca\\\/blog\\\/wp-content\\\/uploads\\\/2016\\\/11\\\/logolargesize.png\",\"width\":2200,\"height\":709,\"caption\":\"CanSpace Solutions\"},\"image\":{\"@id\":\"https:\\\/\\\/www.canspace.ca\\\/blog\\\/#\\\/schema\\\/logo\\\/image\\\/\"}},{\"@type\":\"Person\",\"@id\":\"https:\\\/\\\/www.canspace.ca\\\/blog\\\/#\\\/schema\\\/person\\\/6bf91c438b083753bbb7d2736141a6bb\",\"name\":\"CanSpace Team\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/9b2bb643a6826d4384e5d0aaa9b5fd33aeec14a0d6a07b042f333625711d334f?s=96&d=mm&r=g\",\"url\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/9b2bb643a6826d4384e5d0aaa9b5fd33aeec14a0d6a07b042f333625711d334f?s=96&d=mm&r=g\",\"contentUrl\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/9b2bb643a6826d4384e5d0aaa9b5fd33aeec14a0d6a07b042f333625711d334f?s=96&d=mm&r=g\",\"caption\":\"CanSpace Team\"},\"description\":\"CanSpace Solutions is Canada's leading domain name registrar and web hosting provider. Keep an eye on our blog for expert information on domain names, websites, and running a business online.\",\"sameAs\":[\"https:\\\/\\\/www.canspace.ca\",\"https:\\\/\\\/www.facebook.com\\\/canspace.ca\",\"https:\\\/\\\/ca.linkedin.com\\\/company\\\/canspace\",\"https:\\\/\\\/x.com\\\/canspace_ca\"],\"url\":\"https:\\\/\\\/www.canspace.ca\\\/blog\\\/author\\\/admin\\\/\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"What's Coming in PHP 8.2 - Canada&#039;s Leading Web Hosting and Domain Name Provider","description":"The newest version, PHP 8.2 is scheduled for general release this November. In this post, we\u2019ll go over what\u2019s new in PHP 8.2.","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.canspace.ca\/blog\/hosting-servers\/whats-coming-in-php-8-2\/","og_locale":"en_US","og_type":"article","og_title":"What's Coming in PHP 8.2 - Canada&#039;s Leading Web Hosting and Domain Name Provider","og_description":"The newest version, PHP 8.2 is scheduled for general release this November. In this post, we\u2019ll go over what\u2019s new in PHP 8.2.","og_url":"https:\/\/www.canspace.ca\/blog\/hosting-servers\/whats-coming-in-php-8-2\/","og_site_name":"Canada&#039;s Leading Web Hosting and Domain Name Provider","article_author":"https:\/\/www.facebook.com\/canspace.ca","article_published_time":"2022-09-08T05:00:00+00:00","og_image":[{"width":1280,"height":853,"url":"https:\/\/www.canspace.ca\/blog\/wp-content\/uploads\/2022\/09\/canspace-solutions-whats-coming-php-8-2-featured.jpg","type":"image\/jpeg"}],"author":"CanSpace Team","twitter_card":"summary_large_image","twitter_creator":"@canspace_ca","twitter_misc":{"Written by":"CanSpace Team","Est. reading time":"2 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/www.canspace.ca\/blog\/hosting-servers\/whats-coming-in-php-8-2\/#article","isPartOf":{"@id":"https:\/\/www.canspace.ca\/blog\/hosting-servers\/whats-coming-in-php-8-2\/"},"author":{"name":"CanSpace Team","@id":"https:\/\/www.canspace.ca\/blog\/#\/schema\/person\/6bf91c438b083753bbb7d2736141a6bb"},"headline":"What&#8217;s Coming in PHP 8.2","datePublished":"2022-09-08T05:00:00+00:00","mainEntityOfPage":{"@id":"https:\/\/www.canspace.ca\/blog\/hosting-servers\/whats-coming-in-php-8-2\/"},"wordCount":438,"publisher":{"@id":"https:\/\/www.canspace.ca\/blog\/#organization"},"image":{"@id":"https:\/\/www.canspace.ca\/blog\/hosting-servers\/whats-coming-in-php-8-2\/#primaryimage"},"thumbnailUrl":"https:\/\/www.canspace.ca\/blog\/wp-content\/uploads\/2022\/09\/canspace-solutions-whats-coming-php-8-2-featured.jpg","articleSection":["Hosting and Servers"],"inLanguage":"en-US"},{"@type":"WebPage","@id":"https:\/\/www.canspace.ca\/blog\/hosting-servers\/whats-coming-in-php-8-2\/","url":"https:\/\/www.canspace.ca\/blog\/hosting-servers\/whats-coming-in-php-8-2\/","name":"What's Coming in PHP 8.2 - Canada&#039;s Leading Web Hosting and Domain Name Provider","isPartOf":{"@id":"https:\/\/www.canspace.ca\/blog\/#website"},"primaryImageOfPage":{"@id":"https:\/\/www.canspace.ca\/blog\/hosting-servers\/whats-coming-in-php-8-2\/#primaryimage"},"image":{"@id":"https:\/\/www.canspace.ca\/blog\/hosting-servers\/whats-coming-in-php-8-2\/#primaryimage"},"thumbnailUrl":"https:\/\/www.canspace.ca\/blog\/wp-content\/uploads\/2022\/09\/canspace-solutions-whats-coming-php-8-2-featured.jpg","datePublished":"2022-09-08T05:00:00+00:00","description":"The newest version, PHP 8.2 is scheduled for general release this November. In this post, we\u2019ll go over what\u2019s new in PHP 8.2.","breadcrumb":{"@id":"https:\/\/www.canspace.ca\/blog\/hosting-servers\/whats-coming-in-php-8-2\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/www.canspace.ca\/blog\/hosting-servers\/whats-coming-in-php-8-2\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.canspace.ca\/blog\/hosting-servers\/whats-coming-in-php-8-2\/#primaryimage","url":"https:\/\/www.canspace.ca\/blog\/wp-content\/uploads\/2022\/09\/canspace-solutions-whats-coming-php-8-2-featured.jpg","contentUrl":"https:\/\/www.canspace.ca\/blog\/wp-content\/uploads\/2022\/09\/canspace-solutions-whats-coming-php-8-2-featured.jpg","width":1280,"height":853},{"@type":"BreadcrumbList","@id":"https:\/\/www.canspace.ca\/blog\/hosting-servers\/whats-coming-in-php-8-2\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Blog","item":"https:\/\/www.canspace.ca\/blog\/"},{"@type":"ListItem","position":2,"name":"What&#8217;s Coming in PHP 8.2"}]},{"@type":"WebSite","@id":"https:\/\/www.canspace.ca\/blog\/#website","url":"https:\/\/www.canspace.ca\/blog\/","name":"Canada&#039;s Leading Web Hosting and Domain Name Provider","description":"Canada&#039;s Leading Domain Registrar and Web Hosting Provider","publisher":{"@id":"https:\/\/www.canspace.ca\/blog\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/www.canspace.ca\/blog\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Organization","@id":"https:\/\/www.canspace.ca\/blog\/#organization","name":"CanSpace Solutions","url":"https:\/\/www.canspace.ca\/blog\/","logo":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.canspace.ca\/blog\/#\/schema\/logo\/image\/","url":"https:\/\/www.canspace.ca\/blog\/wp-content\/uploads\/2016\/11\/logolargesize.png","contentUrl":"https:\/\/www.canspace.ca\/blog\/wp-content\/uploads\/2016\/11\/logolargesize.png","width":2200,"height":709,"caption":"CanSpace Solutions"},"image":{"@id":"https:\/\/www.canspace.ca\/blog\/#\/schema\/logo\/image\/"}},{"@type":"Person","@id":"https:\/\/www.canspace.ca\/blog\/#\/schema\/person\/6bf91c438b083753bbb7d2736141a6bb","name":"CanSpace Team","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/secure.gravatar.com\/avatar\/9b2bb643a6826d4384e5d0aaa9b5fd33aeec14a0d6a07b042f333625711d334f?s=96&d=mm&r=g","url":"https:\/\/secure.gravatar.com\/avatar\/9b2bb643a6826d4384e5d0aaa9b5fd33aeec14a0d6a07b042f333625711d334f?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/9b2bb643a6826d4384e5d0aaa9b5fd33aeec14a0d6a07b042f333625711d334f?s=96&d=mm&r=g","caption":"CanSpace Team"},"description":"CanSpace Solutions is Canada's leading domain name registrar and web hosting provider. Keep an eye on our blog for expert information on domain names, websites, and running a business online.","sameAs":["https:\/\/www.canspace.ca","https:\/\/www.facebook.com\/canspace.ca","https:\/\/ca.linkedin.com\/company\/canspace","https:\/\/x.com\/canspace_ca"],"url":"https:\/\/www.canspace.ca\/blog\/author\/admin\/"}]}},"_links":{"self":[{"href":"https:\/\/www.canspace.ca\/blog\/wp-json\/wp\/v2\/posts\/4089","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/www.canspace.ca\/blog\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/www.canspace.ca\/blog\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/www.canspace.ca\/blog\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/www.canspace.ca\/blog\/wp-json\/wp\/v2\/comments?post=4089"}],"version-history":[{"count":5,"href":"https:\/\/www.canspace.ca\/blog\/wp-json\/wp\/v2\/posts\/4089\/revisions"}],"predecessor-version":[{"id":4097,"href":"https:\/\/www.canspace.ca\/blog\/wp-json\/wp\/v2\/posts\/4089\/revisions\/4097"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/www.canspace.ca\/blog\/wp-json\/wp\/v2\/media\/4093"}],"wp:attachment":[{"href":"https:\/\/www.canspace.ca\/blog\/wp-json\/wp\/v2\/media?parent=4089"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/www.canspace.ca\/blog\/wp-json\/wp\/v2\/categories?post=4089"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/www.canspace.ca\/blog\/wp-json\/wp\/v2\/tags?post=4089"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}