{"id":851,"date":"2024-02-29T21:48:06","date_gmt":"2024-02-29T20:48:06","guid":{"rendered":"https:\/\/bsod.wtf\/?p=851"},"modified":"2024-03-01T09:44:04","modified_gmt":"2024-03-01T08:44:04","slug":"php-84-implizit-nullable-deprecation","status":"publish","type":"post","link":"https:\/\/bsod.wtf\/2024\/02\/29\/php-84-implizit-nullable-deprecation\/","title":{"rendered":"PHP 8.4: Implizite Nullable Parameter-Typen werden wohl deprecated"},"content":{"rendered":"\n

K\u00fcrzlich sahen die anstehenden \u00c4nderungen in PHP 8.4 noch vergleichsweise harmlos<\/a> aus. Doch jetzt steht etwas zur Abstimmung, das seinen Weg in PHP 8.4 finden soll und eine neue Deprecated-Meldung werfen k\u00f6nnte. Es geht um implizite Nullable Parameter-Typen. Der Vorschlag m\u00f6chte damit eine alte Karteileiche in der Sprache beheben, die seinerzeit als \u201enotwendiges \u00dcbel\u201c implementiert wurde \u2013 und nicht erst heute f\u00fcr Verwirrung sorgt.<\/p>\n\n\n\n

Worum geht es?<\/h2>\n\n\n\n

Die RFC beschreibt genau<\/a>, was der Hintergrund der \u00c4nderung sein soll. Das \u201eProblem\u201c hei\u00dft Type Hinting. Damit kannst du im Code den Typ der Variable hinterlegen, die ein Parameter einer Funktion annehmen kann. Eine klassische PHP-Funktion k\u00f6nnte so aussehen:<\/p>\n\n\n

\nfunction foo($variable) {}\n<\/pre><\/div>\n\n\n

Per se k\u00f6nnte $variable<\/code> von einem beliebigen Typ sein. Seit PHP 5.1 kannst du PHP mitteilen, dass $variable<\/code> vom Typ array<\/code> sein muss:<\/p>\n\n\n

\nfunction foo(array $variable) {}\n<\/pre><\/div>\n\n\n

Sp\u00e4ter kamen noch weitere Typen hinzu (5.4: callable<\/code>, 7.0: skalare, also int<\/code>, float<\/code> und so weiter). PHP hat es jedoch erlaubt, dass $variable<\/code> auch null<\/code> sein darf \u2013 wenn du einen \u201eStandardwert\u201c auf null<\/code> setzt. Dann s\u00e4he der Code so aus:<\/p>\n\n\n

\nfunction foo(array $variable = null) {}\n<\/pre><\/div>\n\n\n

Das ist jedoch wenig intuitiv und wird richtig ekelig, wenn eine solche Variable nicht am Ende steht. Dann sieht es n\u00e4mlich so aus, als k\u00f6nnte man den Parameter auch weglassen. Das ist jedoch nur erlaubt, wenn ausschlie\u00dflich optionale Parameter folgen. Deshalb wirft PHP entsprechend eine Warnung seit Version 8.0.<\/p>\n\n\n\n

In PHP 7.1 wurde das Problem formell gel\u00f6st. Diese Version f\u00fchrte Nullable Typ-Deklarationen<\/a> ein. Sie werden mit einem Fragezeichen eingeleitet. Ab PHP 7.1 w\u00fcrde der Code also folgenderma\u00dfen aussehen (zum Vergleich auch im alten Syntax):<\/p>\n\n\n

\n\/\/ PHP 5.1+, Deprecation-Meldung in 8.4\nfunction foo_php51(array $variable = null) {}\nfoo_php51(null); \/\/ erlaubt\nfoo_php51(); \/\/ ebenfalls erlaubt, $variable wird als null (Standardwert) angenommen\n\n\/\/ PHP 7.1+\nfunction foo_php71(?array $variable) {}\nfoo_php71(null); \/\/ erlaubt ab 7.1, auch in 8.4\nfoo_php71(); \/\/ Fehler, weil Pflicht-Parameter nicht gesetzt ist\n<\/pre><\/div>\n\n\n

Der Vorschlag m\u00f6chte darauf hinaus, dass die erlaubten Datentypen f\u00fcr Parameter korrekt benannt werden und die alte Behelfsl\u00f6sung abschaffen. Das hat zudem den Vorteil, dass du zwar erlauben kannst<\/em>, dass $variable = null<\/code> wird, aber das nicht der Standardwert sein muss, falls kein Parameter angegeben ist. Du kannst ihn also als notwendigen Parameter definieren.<\/p>\n\n\n\n

Abstimmung f\u00fcr PHP 8.4 findet statt<\/h2>\n\n\n\n

Momentan findet bei PHP die Abstimmung statt, ob diese \u00c4nderung wirklich in die n\u00e4chste PHP-Version eingepflegt werden soll. Wie bei jeder RFC ist eine 2\/3-Mehrheit f\u00fcr eine Implementierung notwendig. Aktuell ist das Zwischenergebnis mit 14:1 f\u00fcr den Vorschlag ziemlich eindeutig. Die Abstimmung l\u00e4uft noch bis 13. M\u00e4rz 2024.<\/p>\n\n\n\n

Da die alte \u201eL\u00f6sung\u201c gewisserma\u00dfen schon immer suboptimal war, die neue ab PHP 7.1 funktioniert und selbst PHP 7.1 l\u00e4ngst veraltet ist, solltest du also deinen Code nach derartigen Abominationen durchsuchen. Wirst du f\u00fcndig, solltest du das Fragezeichen setzen und den Standardwert = null<\/code> nur dann drin lassen, wenn es wirklich gew\u00fcnscht ist, dass der Parameter weggelassen werden darf und dann als null<\/code> in der Funktion verwendet wird.<\/p>\n\n\n\n

Wenn der Vorschlag angenommen wird, wirft PHP andernfalls ab Version 8.4 eine Deprecated-Meldung. Die ist einmal unsch\u00f6n in den Logfiles und bedeutet au\u00dferdem, dass dein Code in PHP 9 gar nicht mehr funktioniert. Doch auch unabh\u00e4ngig vom Ausgang der Abstimmung solltest du die \u00c4nderungen vornehmen.<\/p>\n","protected":false},"excerpt":{"rendered":"

K\u00fcrzlich sahen die anstehenden \u00c4nderungen in PHP 8.4 noch vergleichsweise harmlos aus. Doch jetzt steht etwas zur Abstimmung, das seinen Weg in PHP 8.4 finden soll und eine neue Deprecated-Meldung werfen k\u00f6nnte. Es geht um implizite Nullable Parameter-Typen. Der Vorschlag m\u00f6chte damit eine alte Karteileiche in der Sprache beheben, die seinerzeit als \u201enotwendiges \u00dcbel\u201c implementiert … Weiterlesen …<\/a><\/p>\n","protected":false},"author":1,"featured_media":849,"comment_status":"open","ping_status":"closed","sticky":false,"template":"","format":"standard","meta":{"_acf_changed":false,"_metis_text_type":"standard","_metis_text_length":3555,"_post_count":0,"_jetpack_memberships_contains_paid_content":false,"footnotes":""},"categories":[1],"tags":[13],"class_list":["post-851","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-bsod","tag-php"],"acf":[],"yoast_head":"\nPHP 8.4: Implizit Nullable Parameter-Typen deprecated - bsod.wtf<\/title>\n<meta name=\"description\" content=\"PHP 8.4 wird wahrscheinlich implizit Nullable Parameter mit einer Deprecated-Meldung quittieren. Du solltest deinen Code schon mal \u00fcberpr\u00fcfen\" \/>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/bsod.wtf\/2024\/02\/29\/php-84-implizit-nullable-deprecation\/\" \/>\n<meta property=\"og:locale\" content=\"de_DE\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"PHP 8.4: Implizit Nullable Parameter-Typen deprecated - bsod.wtf\" \/>\n<meta property=\"og:description\" content=\"PHP 8.4 wird wahrscheinlich implizit Nullable Parameter mit einer Deprecated-Meldung quittieren. Du solltest deinen Code schon mal \u00fcberpr\u00fcfen\" \/>\n<meta property=\"og:url\" content=\"https:\/\/bsod.wtf\/2024\/02\/29\/php-84-implizit-nullable-deprecation\/\" \/>\n<meta property=\"og:site_name\" content=\"bsod.wtf\" \/>\n<meta property=\"article:published_time\" content=\"2024-02-29T20:48:06+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2024-03-01T08:44:04+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/bsod.wtf\/wp-content\/uploads\/2024\/02\/peter-maselkowski-N135eczYTAs-unsplash-scaled.jpg\" \/>\n\t<meta property=\"og:image:width\" content=\"2560\" \/>\n\t<meta property=\"og:image:height\" content=\"1709\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/jpeg\" \/>\n<meta name=\"author\" content=\"Stefan Keller\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:label1\" content=\"Verfasst von\" \/>\n\t<meta name=\"twitter:data1\" content=\"Stefan Keller\" \/>\n\t<meta name=\"twitter:label2\" content=\"Gesch\u00e4tzte Lesezeit\" \/>\n\t<meta name=\"twitter:data2\" content=\"3\u00a0Minuten\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\/\/bsod.wtf\/2024\/02\/29\/php-84-implizit-nullable-deprecation\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/bsod.wtf\/2024\/02\/29\/php-84-implizit-nullable-deprecation\/\"},\"author\":{\"name\":\"Stefan Keller\",\"@id\":\"https:\/\/bsod.wtf\/#\/schema\/person\/ffd6efdd0d1f1a21a22cf9babb3080c4\"},\"headline\":\"PHP 8.4: Implizite Nullable Parameter-Typen werden wohl deprecated\",\"datePublished\":\"2024-02-29T20:48:06+00:00\",\"dateModified\":\"2024-03-01T08:44:04+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/bsod.wtf\/2024\/02\/29\/php-84-implizit-nullable-deprecation\/\"},\"wordCount\":482,\"commentCount\":0,\"publisher\":{\"@id\":\"https:\/\/bsod.wtf\/#\/schema\/person\/ffd6efdd0d1f1a21a22cf9babb3080c4\"},\"image\":{\"@id\":\"https:\/\/bsod.wtf\/2024\/02\/29\/php-84-implizit-nullable-deprecation\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/bsod.wtf\/wp-content\/uploads\/2024\/02\/peter-maselkowski-N135eczYTAs-unsplash-scaled.jpg\",\"keywords\":[\"PHP\"],\"articleSection\":[\"bsod.wtf\"],\"inLanguage\":\"de\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\/\/bsod.wtf\/2024\/02\/29\/php-84-implizit-nullable-deprecation\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/bsod.wtf\/2024\/02\/29\/php-84-implizit-nullable-deprecation\/\",\"url\":\"https:\/\/bsod.wtf\/2024\/02\/29\/php-84-implizit-nullable-deprecation\/\",\"name\":\"PHP 8.4: Implizit Nullable Parameter-Typen deprecated - bsod.wtf\",\"isPartOf\":{\"@id\":\"https:\/\/bsod.wtf\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\/\/bsod.wtf\/2024\/02\/29\/php-84-implizit-nullable-deprecation\/#primaryimage\"},\"image\":{\"@id\":\"https:\/\/bsod.wtf\/2024\/02\/29\/php-84-implizit-nullable-deprecation\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/bsod.wtf\/wp-content\/uploads\/2024\/02\/peter-maselkowski-N135eczYTAs-unsplash-scaled.jpg\",\"datePublished\":\"2024-02-29T20:48:06+00:00\",\"dateModified\":\"2024-03-01T08:44:04+00:00\",\"description\":\"PHP 8.4 wird wahrscheinlich implizit Nullable Parameter mit einer Deprecated-Meldung quittieren. Du solltest deinen Code schon mal \u00fcberpr\u00fcfen\",\"breadcrumb\":{\"@id\":\"https:\/\/bsod.wtf\/2024\/02\/29\/php-84-implizit-nullable-deprecation\/#breadcrumb\"},\"inLanguage\":\"de\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/bsod.wtf\/2024\/02\/29\/php-84-implizit-nullable-deprecation\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"de\",\"@id\":\"https:\/\/bsod.wtf\/2024\/02\/29\/php-84-implizit-nullable-deprecation\/#primaryimage\",\"url\":\"https:\/\/bsod.wtf\/wp-content\/uploads\/2024\/02\/peter-maselkowski-N135eczYTAs-unsplash-scaled.jpg\",\"contentUrl\":\"https:\/\/bsod.wtf\/wp-content\/uploads\/2024\/02\/peter-maselkowski-N135eczYTAs-unsplash-scaled.jpg\",\"width\":2560,\"height\":1709,\"caption\":\"PHP-Quellcode, Bild: Peter Mase\u0142kowski\/Unsplash\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/bsod.wtf\/2024\/02\/29\/php-84-implizit-nullable-deprecation\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Startseite\",\"item\":\"https:\/\/bsod.wtf\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"PHP 8.4: Implizite Nullable Parameter-Typen werden wohl deprecated\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\/\/bsod.wtf\/#website\",\"url\":\"https:\/\/bsod.wtf\/\",\"name\":\"bsod.wtf\",\"description\":\"\",\"publisher\":{\"@id\":\"https:\/\/bsod.wtf\/#\/schema\/person\/ffd6efdd0d1f1a21a22cf9babb3080c4\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\/\/bsod.wtf\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"de\"},{\"@type\":[\"Person\",\"Organization\"],\"@id\":\"https:\/\/bsod.wtf\/#\/schema\/person\/ffd6efdd0d1f1a21a22cf9babb3080c4\",\"name\":\"Stefan Keller\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"de\",\"@id\":\"https:\/\/bsod.wtf\/#\/schema\/person\/image\/\",\"url\":\"https:\/\/bsod.wtf\/wp-content\/uploads\/2024\/02\/ava.jpg\",\"contentUrl\":\"https:\/\/bsod.wtf\/wp-content\/uploads\/2024\/02\/ava.jpg\",\"width\":1024,\"height\":1024,\"caption\":\"Stefan Keller\"},\"logo\":{\"@id\":\"https:\/\/bsod.wtf\/#\/schema\/person\/image\/\"},\"description\":\"Stefan machte seine ersten Linux-Gehversuche um die Jahrtausendwende. Er administriert seit 2008 Debian-Server. Au\u00dferdem programmiert er in PHP, oft in Kombination mit MySQL. Andere nennen ihn einen \u201everdammten Nerd\u201d und verstehen seine Witze nie.\",\"sameAs\":[\"https:\/\/bsod.wtf\"],\"url\":\"https:\/\/bsod.wtf\/author\/rellek\/\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"PHP 8.4: Implizit Nullable Parameter-Typen deprecated - bsod.wtf","description":"PHP 8.4 wird wahrscheinlich implizit Nullable Parameter mit einer Deprecated-Meldung quittieren. Du solltest deinen Code schon mal \u00fcberpr\u00fcfen","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:\/\/bsod.wtf\/2024\/02\/29\/php-84-implizit-nullable-deprecation\/","og_locale":"de_DE","og_type":"article","og_title":"PHP 8.4: Implizit Nullable Parameter-Typen deprecated - bsod.wtf","og_description":"PHP 8.4 wird wahrscheinlich implizit Nullable Parameter mit einer Deprecated-Meldung quittieren. Du solltest deinen Code schon mal \u00fcberpr\u00fcfen","og_url":"https:\/\/bsod.wtf\/2024\/02\/29\/php-84-implizit-nullable-deprecation\/","og_site_name":"bsod.wtf","article_published_time":"2024-02-29T20:48:06+00:00","article_modified_time":"2024-03-01T08:44:04+00:00","og_image":[{"width":2560,"height":1709,"url":"https:\/\/bsod.wtf\/wp-content\/uploads\/2024\/02\/peter-maselkowski-N135eczYTAs-unsplash-scaled.jpg","type":"image\/jpeg"}],"author":"Stefan Keller","twitter_card":"summary_large_image","twitter_misc":{"Verfasst von":"Stefan Keller","Gesch\u00e4tzte Lesezeit":"3\u00a0Minuten"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/bsod.wtf\/2024\/02\/29\/php-84-implizit-nullable-deprecation\/#article","isPartOf":{"@id":"https:\/\/bsod.wtf\/2024\/02\/29\/php-84-implizit-nullable-deprecation\/"},"author":{"name":"Stefan Keller","@id":"https:\/\/bsod.wtf\/#\/schema\/person\/ffd6efdd0d1f1a21a22cf9babb3080c4"},"headline":"PHP 8.4: Implizite Nullable Parameter-Typen werden wohl deprecated","datePublished":"2024-02-29T20:48:06+00:00","dateModified":"2024-03-01T08:44:04+00:00","mainEntityOfPage":{"@id":"https:\/\/bsod.wtf\/2024\/02\/29\/php-84-implizit-nullable-deprecation\/"},"wordCount":482,"commentCount":0,"publisher":{"@id":"https:\/\/bsod.wtf\/#\/schema\/person\/ffd6efdd0d1f1a21a22cf9babb3080c4"},"image":{"@id":"https:\/\/bsod.wtf\/2024\/02\/29\/php-84-implizit-nullable-deprecation\/#primaryimage"},"thumbnailUrl":"https:\/\/bsod.wtf\/wp-content\/uploads\/2024\/02\/peter-maselkowski-N135eczYTAs-unsplash-scaled.jpg","keywords":["PHP"],"articleSection":["bsod.wtf"],"inLanguage":"de","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/bsod.wtf\/2024\/02\/29\/php-84-implizit-nullable-deprecation\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/bsod.wtf\/2024\/02\/29\/php-84-implizit-nullable-deprecation\/","url":"https:\/\/bsod.wtf\/2024\/02\/29\/php-84-implizit-nullable-deprecation\/","name":"PHP 8.4: Implizit Nullable Parameter-Typen deprecated - bsod.wtf","isPartOf":{"@id":"https:\/\/bsod.wtf\/#website"},"primaryImageOfPage":{"@id":"https:\/\/bsod.wtf\/2024\/02\/29\/php-84-implizit-nullable-deprecation\/#primaryimage"},"image":{"@id":"https:\/\/bsod.wtf\/2024\/02\/29\/php-84-implizit-nullable-deprecation\/#primaryimage"},"thumbnailUrl":"https:\/\/bsod.wtf\/wp-content\/uploads\/2024\/02\/peter-maselkowski-N135eczYTAs-unsplash-scaled.jpg","datePublished":"2024-02-29T20:48:06+00:00","dateModified":"2024-03-01T08:44:04+00:00","description":"PHP 8.4 wird wahrscheinlich implizit Nullable Parameter mit einer Deprecated-Meldung quittieren. Du solltest deinen Code schon mal \u00fcberpr\u00fcfen","breadcrumb":{"@id":"https:\/\/bsod.wtf\/2024\/02\/29\/php-84-implizit-nullable-deprecation\/#breadcrumb"},"inLanguage":"de","potentialAction":[{"@type":"ReadAction","target":["https:\/\/bsod.wtf\/2024\/02\/29\/php-84-implizit-nullable-deprecation\/"]}]},{"@type":"ImageObject","inLanguage":"de","@id":"https:\/\/bsod.wtf\/2024\/02\/29\/php-84-implizit-nullable-deprecation\/#primaryimage","url":"https:\/\/bsod.wtf\/wp-content\/uploads\/2024\/02\/peter-maselkowski-N135eczYTAs-unsplash-scaled.jpg","contentUrl":"https:\/\/bsod.wtf\/wp-content\/uploads\/2024\/02\/peter-maselkowski-N135eczYTAs-unsplash-scaled.jpg","width":2560,"height":1709,"caption":"PHP-Quellcode, Bild: Peter Mase\u0142kowski\/Unsplash"},{"@type":"BreadcrumbList","@id":"https:\/\/bsod.wtf\/2024\/02\/29\/php-84-implizit-nullable-deprecation\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Startseite","item":"https:\/\/bsod.wtf\/"},{"@type":"ListItem","position":2,"name":"PHP 8.4: Implizite Nullable Parameter-Typen werden wohl deprecated"}]},{"@type":"WebSite","@id":"https:\/\/bsod.wtf\/#website","url":"https:\/\/bsod.wtf\/","name":"bsod.wtf","description":"","publisher":{"@id":"https:\/\/bsod.wtf\/#\/schema\/person\/ffd6efdd0d1f1a21a22cf9babb3080c4"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/bsod.wtf\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"de"},{"@type":["Person","Organization"],"@id":"https:\/\/bsod.wtf\/#\/schema\/person\/ffd6efdd0d1f1a21a22cf9babb3080c4","name":"Stefan Keller","image":{"@type":"ImageObject","inLanguage":"de","@id":"https:\/\/bsod.wtf\/#\/schema\/person\/image\/","url":"https:\/\/bsod.wtf\/wp-content\/uploads\/2024\/02\/ava.jpg","contentUrl":"https:\/\/bsod.wtf\/wp-content\/uploads\/2024\/02\/ava.jpg","width":1024,"height":1024,"caption":"Stefan Keller"},"logo":{"@id":"https:\/\/bsod.wtf\/#\/schema\/person\/image\/"},"description":"Stefan machte seine ersten Linux-Gehversuche um die Jahrtausendwende. Er administriert seit 2008 Debian-Server. Au\u00dferdem programmiert er in PHP, oft in Kombination mit MySQL. Andere nennen ihn einen \u201everdammten Nerd\u201d und verstehen seine Witze nie.","sameAs":["https:\/\/bsod.wtf"],"url":"https:\/\/bsod.wtf\/author\/rellek\/"}]}},"jetpack_featured_media_url":"https:\/\/bsod.wtf\/wp-content\/uploads\/2024\/02\/peter-maselkowski-N135eczYTAs-unsplash-scaled.jpg","jetpack_sharing_enabled":true,"public_identification_id":"9185c10712e241b08ad5b7a13814fdaa","private_identification_id":"174f8a550bc246ac91d5f51a305c4410","_links":{"self":[{"href":"https:\/\/bsod.wtf\/wp-json\/wp\/v2\/posts\/851","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/bsod.wtf\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/bsod.wtf\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/bsod.wtf\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/bsod.wtf\/wp-json\/wp\/v2\/comments?post=851"}],"version-history":[{"count":12,"href":"https:\/\/bsod.wtf\/wp-json\/wp\/v2\/posts\/851\/revisions"}],"predecessor-version":[{"id":867,"href":"https:\/\/bsod.wtf\/wp-json\/wp\/v2\/posts\/851\/revisions\/867"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/bsod.wtf\/wp-json\/wp\/v2\/media\/849"}],"wp:attachment":[{"href":"https:\/\/bsod.wtf\/wp-json\/wp\/v2\/media?parent=851"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/bsod.wtf\/wp-json\/wp\/v2\/categories?post=851"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/bsod.wtf\/wp-json\/wp\/v2\/tags?post=851"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}