{"id":15,"date":"2007-03-18T23:22:00","date_gmt":"2007-03-18T23:22:00","guid":{"rendered":"http:\/\/grummfy.be\/blog\/?p=15"},"modified":"2007-03-18T23:22:00","modified_gmt":"2007-03-18T23:22:00","slug":"jouons-aves-php-et-la-poo","status":"publish","type":"post","link":"https:\/\/grummfy.be\/blog\/15","title":{"rendered":"Jouons aves PHP et la poo"},"content":{"rendered":"<p>Amusons nous avec PHP4, et PHP5 en poo.<\/p>\n<p> Comparons le comportement de ceci :<\/p>\n<pre class=\"code php\"><span style=\"color: rgb(0, 0, 0); font-weight: bold;\">class<\/span> A<br \/><span style=\"color: rgb(102, 204, 102);\">{<\/span><br \/>    <span style=\"color: rgb(0, 0, 0); font-weight: bold;\">function<\/span> A<span style=\"color: rgb(102, 204, 102);\">(<\/span><span style=\"color: rgb(102, 204, 102);\">)<\/span><br \/>    <span style=\"color: rgb(102, 204, 102);\">{<\/span><\/pre>\n<p>\n<!--more--><\/p>\n<pre class=\"code php\">        <a href=\"http:\/\/www.php.net\/echo\"><span style=\"color: rgb(0, 0, 102);\">echo<\/span><\/a> <span style=\"color: rgb(255, 0, 0);\">'Je me nome A'<\/span> . <span style=\"color: rgb(255, 0, 0);\">\"<span style=\"color: rgb(0, 0, 153); font-weight: bold;\"> <\/span>\"<\/span>;<br \/>    <span style=\"color: rgb(102, 204, 102);\">}<\/span><br \/><br \/>    <span style=\"color: rgb(0, 0, 0); font-weight: bold;\">function<\/span> B<span style=\"color: rgb(102, 204, 102);\">(<\/span><span style=\"color: rgb(102, 204, 102);\">)<\/span><br \/>    <span style=\"color: rgb(102, 204, 102);\">{<\/span><br \/>        <a href=\"http:\/\/www.php.net\/echo\"><span style=\"color: rgb(0, 0, 102);\">echo<\/span><\/a> <span style=\"color: rgb(255, 0, 0);\">'Je me nome B'<\/span> . <span style=\"color: rgb(255, 0, 0);\">\"<span style=\"color: rgb(0, 0, 153); font-weight: bold;\"> <\/span>\"<\/span>;<br \/>    <span style=\"color: rgb(102, 204, 102);\">}<\/span><br \/><br \/><span style=\"color: rgb(102, 204, 102);\">}<\/span><br \/>&nbsp;<br \/><span style=\"color: rgb(0, 0, 0); font-weight: bold;\">class<\/span> B <span style=\"color: rgb(0, 0, 0); font-weight: bold;\">extends<\/span> A<br \/><span style=\"color: rgb(102, 204, 102);\">{<\/span><br \/>    <span style=\"color: rgb(0, 0, 0); font-weight: bold;\">function<\/span> C<span style=\"color: rgb(102, 204, 102);\">(<\/span><span style=\"color: rgb(102, 204, 102);\">)<\/span><br \/>    <span style=\"color: rgb(102, 204, 102);\">{<\/span><br \/>        <a href=\"http:\/\/www.php.net\/echo\"><span style=\"color: rgb(0, 0, 102);\">echo<\/span><\/a> <span style=\"color: rgb(255, 0, 0);\">'Je me nome C'<\/span> . <span style=\"color: rgb(255, 0, 0);\">\"<span style=\"color: rgb(0, 0, 153); font-weight: bold;\"> <\/span>\"<\/span>;<br \/>    <span style=\"color: rgb(102, 204, 102);\">}<\/span><br \/><span style=\"color: rgb(102, 204, 102);\">}<\/span><br \/><br \/><span style=\"color: rgb(0, 0, 0); font-weight: bold;\">class<\/span> C <span style=\"color: rgb(0, 0, 0); font-weight: bold;\">extends<\/span> B<br \/><span style=\"color: rgb(102, 204, 102);\">{<\/span><br \/>&nbsp;<br \/><span style=\"color: rgb(102, 204, 102);\">}<\/span><br \/>&nbsp;<br \/><span style=\"color: rgb(0, 0, 255);\">$B<\/span> = <span style=\"color: rgb(0, 0, 0); font-weight: bold;\">new<\/span> B<span style=\"color: rgb(102, 204, 102);\">(<\/span><span style=\"color: rgb(102, 204, 102);\">)<\/span>;<br \/><span style=\"color: rgb(0, 0, 255);\">$C<\/span> = <span style=\"color: rgb(0, 0, 0); font-weight: bold;\">new<\/span> C<span style=\"color: rgb(102, 204, 102);\">(<\/span><span style=\"color: rgb(102, 204, 102);\">)<\/span>;<\/pre>\n<ul>\n<li>en PHP4 :<br \/>\n<blockquote>\n<p>Je me nome B<br \/>\n Je me nome C<\/p>\n<\/blockquote>\n<\/li>\n<li>en PHP5<br \/>\n<blockquote>\n<p>Je me nome A <br \/>Je me nome A<\/p>\n<\/blockquote>\n<\/li>\n<\/ul>\n<p> <ins> Avant tout il faut savoi<\/ins>r que en PHP, si une class enfant n&rsquo;as pas de constructeur d\u00e9fini, c&rsquo;est le constructeur parent qui sera appel\u00e9.<\/p>\n<p> En PHP5, on peux le voir c&rsquo;est effectivement le cas.<br \/>Mais en PHP4, cela ne semble pas tout a fait juste.<\/p>\n<p>Changeons un peu le code, en rempla\u00e7ant :<br \/><code> function C()<\/code><br \/>par<br \/><code>function Cbis()<\/code> <br \/>Et l\u00e0 le r\u00e9sultat pour PHP4 change :<\/p>\n<blockquote>\n<p>Je me nome B<br \/>\n Je me nome B<\/p>\n<\/blockquote>\n<p>C&rsquo;est toujours utile a savoir&#8230; et surtotu cela peux \u00e9viter de longue heures de debug &#8230;<\/p>\n","protected":false},"excerpt":{"rendered":"<p>Amusons nous avec PHP4, et PHP5 en poo.<\/p>\n<p> Comparons le comportement de ceci :<\/p>\n<pre class=\"code php\"><span style=\"color: rgb(0, 0, 0); font-weight: bold;\">class<\/span> A<br \/><span style=\"color: rgb(102, 204, 102);\">{<\/span><br \/>    <span style=\"color: rgb(0, 0, 0); font-weight: bold;\">function<\/span> A<span style=\"color: rgb(102, 204, 102);\">(<\/span><span style=\"color: rgb(102, 204, 102);\">)<\/span><br \/>    <span style=\"color: rgb(102, 204, 102);\">{<\/span><\/pre>\n<p><\/p>\n","protected":false},"author":1,"featured_media":0,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"webmentions_disabled_pings":false,"webmentions_disabled":false,"footnotes":""},"categories":[10],"tags":[22,110,23,24],"class_list":["post-15","post","type-post","status-publish","format-standard","hentry","category-php","tag-jouons","tag-php","tag-poo","tag-programmation"],"aioseo_notices":[],"aioseo_head":"\n\t\t<!-- All in One SEO 4.9.9 - aioseo.com -->\n\t<meta name=\"description\" content=\"Amusons nous avec PHP4, et PHP5 en poo. Comparons le comportement de ceci : class A{ function A() {\" \/>\n\t<meta name=\"robots\" content=\"max-image-preview:large\" \/>\n\t<meta name=\"author\" content=\"Grummfy\"\/>\n\t<meta name=\"google-site-verification\" content=\"d4qc9gnvtzVc9s5gDVkEqZIVZLo42Wi\/lYmFP7\/G0Kw=\" \/>\n\t<meta name=\"keywords\" content=\"jouons,php,poo,programmation\" \/>\n\t<link rel=\"canonical\" href=\"https:\/\/grummfy.be\/blog\/15\" \/>\n\t<meta name=\"generator\" content=\"All in One SEO (AIOSEO) 4.9.9\" \/>\n\t\t<meta property=\"og:locale\" content=\"fr_FR\" \/>\n\t\t<meta property=\"og:site_name\" content=\"Grummfy&#039;s project\" \/>\n\t\t<meta property=\"og:type\" content=\"article\" \/>\n\t\t<meta property=\"og:title\" content=\"Grummfy&#039;s project .:. Jouons aves PHP et la poo\" \/>\n\t\t<meta property=\"og:description\" content=\"Amusons nous avec PHP4, et PHP5 en poo. Comparons le comportement de ceci : class A{ function A() {\" \/>\n\t\t<meta property=\"og:url\" content=\"https:\/\/grummfy.be\/blog\/15\" \/>\n\t\t<meta property=\"fb:admins\" content=\"580961199\" \/>\n\t\t<meta property=\"article:tag\" content=\"jouons\" \/>\n\t\t<meta property=\"article:tag\" content=\"php\" \/>\n\t\t<meta property=\"article:tag\" content=\"poo\" \/>\n\t\t<meta property=\"article:tag\" content=\"programmation\" \/>\n\t\t<meta property=\"article:published_time\" content=\"2007-03-18T23:22:00+00:00\" \/>\n\t\t<meta property=\"article:modified_time\" content=\"2007-03-18T23:22:00+00:00\" \/>\n\t\t<meta name=\"twitter:card\" content=\"summary\" \/>\n\t\t<meta name=\"twitter:site\" content=\"@Grummfy\" \/>\n\t\t<meta name=\"twitter:title\" content=\"Grummfy&#039;s project .:. Jouons aves PHP et la poo\" \/>\n\t\t<meta name=\"twitter:description\" content=\"Amusons nous avec PHP4, et PHP5 en poo. Comparons le comportement de ceci : class A{ function A() {\" \/>\n\t\t<script type=\"application\/ld+json\" class=\"aioseo-schema\">\n\t\t\t{\"@context\":\"https:\\\/\\\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\\\/\\\/grummfy.be\\\/blog\\\/15#article\",\"name\":\"Grummfy's project .:. Jouons aves PHP et la poo\",\"headline\":\"Jouons aves PHP et la poo\",\"author\":{\"@id\":\"https:\\\/\\\/grummfy.be\\\/blog\\\/author\\\/admin#author\"},\"publisher\":{\"@id\":\"https:\\\/\\\/grummfy.be\\\/blog\\\/#organization\"},\"datePublished\":\"2007-03-18T23:22:00+02:00\",\"dateModified\":\"2007-03-18T23:22:00+02:00\",\"inLanguage\":\"fr-BE\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/grummfy.be\\\/blog\\\/15#webpage\"},\"isPartOf\":{\"@id\":\"https:\\\/\\\/grummfy.be\\\/blog\\\/15#webpage\"},\"articleSection\":\"PHP, jouons, PHP, poo, programmation\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/grummfy.be\\\/blog\\\/15#breadcrumblist\",\"itemListElement\":[{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/grummfy.be\\\/blog#listItem\",\"position\":1,\"name\":\"Accueil\",\"item\":\"https:\\\/\\\/grummfy.be\\\/blog\",\"nextItem\":{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/grummfy.be\\\/blog\\\/cat\\\/php#listItem\",\"name\":\"PHP\"}},{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/grummfy.be\\\/blog\\\/cat\\\/php#listItem\",\"position\":2,\"name\":\"PHP\",\"item\":\"https:\\\/\\\/grummfy.be\\\/blog\\\/cat\\\/php\",\"nextItem\":{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/grummfy.be\\\/blog\\\/15#listItem\",\"name\":\"Jouons aves PHP et la poo\"},\"previousItem\":{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/grummfy.be\\\/blog#listItem\",\"name\":\"Accueil\"}},{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/grummfy.be\\\/blog\\\/15#listItem\",\"position\":3,\"name\":\"Jouons aves PHP et la poo\",\"previousItem\":{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/grummfy.be\\\/blog\\\/cat\\\/php#listItem\",\"name\":\"PHP\"}}]},{\"@type\":\"Organization\",\"@id\":\"https:\\\/\\\/grummfy.be\\\/blog\\\/#organization\",\"name\":\"Grummfy's project\",\"description\":\"Mes projets, mes r\\u00eaves, mes envies, ...\",\"url\":\"https:\\\/\\\/grummfy.be\\\/blog\\\/\"},{\"@type\":\"Person\",\"@id\":\"https:\\\/\\\/grummfy.be\\\/blog\\\/author\\\/admin#author\",\"url\":\"https:\\\/\\\/grummfy.be\\\/blog\\\/author\\\/admin\",\"name\":\"Grummfy\",\"image\":{\"@type\":\"ImageObject\",\"@id\":\"https:\\\/\\\/grummfy.be\\\/blog\\\/15#authorImage\",\"url\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/97f073e7de2fb1e9d5c5329eb7db2c6de1c5a80e8cfe9b1233473f78a1c908f6?s=96&d=identicon&r=g\",\"width\":96,\"height\":96,\"caption\":\"Grummfy\"}},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/grummfy.be\\\/blog\\\/15#webpage\",\"url\":\"https:\\\/\\\/grummfy.be\\\/blog\\\/15\",\"name\":\"Grummfy's project .:. Jouons aves PHP et la poo\",\"description\":\"Amusons nous avec PHP4, et PHP5 en poo. Comparons le comportement de ceci : class A{ function A() {\",\"inLanguage\":\"fr-BE\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/grummfy.be\\\/blog\\\/#website\"},\"breadcrumb\":{\"@id\":\"https:\\\/\\\/grummfy.be\\\/blog\\\/15#breadcrumblist\"},\"author\":{\"@id\":\"https:\\\/\\\/grummfy.be\\\/blog\\\/author\\\/admin#author\"},\"creator\":{\"@id\":\"https:\\\/\\\/grummfy.be\\\/blog\\\/author\\\/admin#author\"},\"datePublished\":\"2007-03-18T23:22:00+02:00\",\"dateModified\":\"2007-03-18T23:22:00+02:00\"},{\"@type\":\"WebSite\",\"@id\":\"https:\\\/\\\/grummfy.be\\\/blog\\\/#website\",\"url\":\"https:\\\/\\\/grummfy.be\\\/blog\\\/\",\"name\":\"Grummfy's project\",\"description\":\"Mes projets, mes r\\u00eaves, mes envies, ...\",\"inLanguage\":\"fr-BE\",\"publisher\":{\"@id\":\"https:\\\/\\\/grummfy.be\\\/blog\\\/#organization\"}}]}\n\t\t<\/script>\n\t\t<!-- All in One SEO -->\n\n","aioseo_head_json":{"title":"Grummfy's project .:. Jouons aves PHP et la poo","description":"Amusons nous avec PHP4, et PHP5 en poo. Comparons le comportement de ceci : class A{ function A() {","canonical_url":"https:\/\/grummfy.be\/blog\/15","robots":"max-image-preview:large","keywords":"jouons,php,poo,programmation","webmasterTools":{"google-site-verification":"d4qc9gnvtzVc9s5gDVkEqZIVZLo42Wi\/lYmFP7\/G0Kw=","miscellaneous":""},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/grummfy.be\/blog\/15#article","name":"Grummfy's project .:. Jouons aves PHP et la poo","headline":"Jouons aves PHP et la poo","author":{"@id":"https:\/\/grummfy.be\/blog\/author\/admin#author"},"publisher":{"@id":"https:\/\/grummfy.be\/blog\/#organization"},"datePublished":"2007-03-18T23:22:00+02:00","dateModified":"2007-03-18T23:22:00+02:00","inLanguage":"fr-BE","mainEntityOfPage":{"@id":"https:\/\/grummfy.be\/blog\/15#webpage"},"isPartOf":{"@id":"https:\/\/grummfy.be\/blog\/15#webpage"},"articleSection":"PHP, jouons, PHP, poo, programmation"},{"@type":"BreadcrumbList","@id":"https:\/\/grummfy.be\/blog\/15#breadcrumblist","itemListElement":[{"@type":"ListItem","@id":"https:\/\/grummfy.be\/blog#listItem","position":1,"name":"Accueil","item":"https:\/\/grummfy.be\/blog","nextItem":{"@type":"ListItem","@id":"https:\/\/grummfy.be\/blog\/cat\/php#listItem","name":"PHP"}},{"@type":"ListItem","@id":"https:\/\/grummfy.be\/blog\/cat\/php#listItem","position":2,"name":"PHP","item":"https:\/\/grummfy.be\/blog\/cat\/php","nextItem":{"@type":"ListItem","@id":"https:\/\/grummfy.be\/blog\/15#listItem","name":"Jouons aves PHP et la poo"},"previousItem":{"@type":"ListItem","@id":"https:\/\/grummfy.be\/blog#listItem","name":"Accueil"}},{"@type":"ListItem","@id":"https:\/\/grummfy.be\/blog\/15#listItem","position":3,"name":"Jouons aves PHP et la poo","previousItem":{"@type":"ListItem","@id":"https:\/\/grummfy.be\/blog\/cat\/php#listItem","name":"PHP"}}]},{"@type":"Organization","@id":"https:\/\/grummfy.be\/blog\/#organization","name":"Grummfy's project","description":"Mes projets, mes r\u00eaves, mes envies, ...","url":"https:\/\/grummfy.be\/blog\/"},{"@type":"Person","@id":"https:\/\/grummfy.be\/blog\/author\/admin#author","url":"https:\/\/grummfy.be\/blog\/author\/admin","name":"Grummfy","image":{"@type":"ImageObject","@id":"https:\/\/grummfy.be\/blog\/15#authorImage","url":"https:\/\/secure.gravatar.com\/avatar\/97f073e7de2fb1e9d5c5329eb7db2c6de1c5a80e8cfe9b1233473f78a1c908f6?s=96&d=identicon&r=g","width":96,"height":96,"caption":"Grummfy"}},{"@type":"WebPage","@id":"https:\/\/grummfy.be\/blog\/15#webpage","url":"https:\/\/grummfy.be\/blog\/15","name":"Grummfy's project .:. Jouons aves PHP et la poo","description":"Amusons nous avec PHP4, et PHP5 en poo. Comparons le comportement de ceci : class A{ function A() {","inLanguage":"fr-BE","isPartOf":{"@id":"https:\/\/grummfy.be\/blog\/#website"},"breadcrumb":{"@id":"https:\/\/grummfy.be\/blog\/15#breadcrumblist"},"author":{"@id":"https:\/\/grummfy.be\/blog\/author\/admin#author"},"creator":{"@id":"https:\/\/grummfy.be\/blog\/author\/admin#author"},"datePublished":"2007-03-18T23:22:00+02:00","dateModified":"2007-03-18T23:22:00+02:00"},{"@type":"WebSite","@id":"https:\/\/grummfy.be\/blog\/#website","url":"https:\/\/grummfy.be\/blog\/","name":"Grummfy's project","description":"Mes projets, mes r\u00eaves, mes envies, ...","inLanguage":"fr-BE","publisher":{"@id":"https:\/\/grummfy.be\/blog\/#organization"}}]},"og:locale":"fr_FR","og:site_name":"Grummfy's project","og:type":"article","og:title":"Grummfy's project .:. Jouons aves PHP et la poo","og:description":"Amusons nous avec PHP4, et PHP5 en poo. Comparons le comportement de ceci : class A{ function A() {","og:url":"https:\/\/grummfy.be\/blog\/15","fb:admins":"580961199","article:tag":["jouons","php","poo","programmation"],"article:published_time":"2007-03-18T23:22:00+00:00","article:modified_time":"2007-03-18T23:22:00+00:00","twitter:card":"summary","twitter:site":"@Grummfy","twitter:title":"Grummfy's project .:. Jouons aves PHP et la poo","twitter:description":"Amusons nous avec PHP4, et PHP5 en poo. Comparons le comportement de ceci : class A{ function A() {"},"aioseo_meta_data":{"post_id":"15","title":null,"description":null,"keywords":null,"keyphrases":null,"primary_term":null,"canonical_url":null,"og_title":null,"og_description":null,"og_object_type":"default","og_image_type":"default","og_image_url":null,"og_image_width":null,"og_image_height":null,"og_image_custom_url":null,"og_image_custom_fields":null,"og_video":null,"og_custom_url":null,"og_article_section":null,"og_article_tags":null,"twitter_use_og":false,"twitter_card":"default","twitter_image_type":"default","twitter_image_url":null,"twitter_image_custom_url":null,"twitter_image_custom_fields":null,"twitter_title":null,"twitter_description":null,"schema":{"blockGraphs":[],"customGraphs":[],"default":{"data":{"Article":[],"Course":[],"Dataset":[],"FAQPage":[],"Movie":[],"Person":[],"Product":[],"ProductReview":[],"Car":[],"Recipe":[],"Service":[],"SoftwareApplication":[],"WebPage":[]},"graphName":"","isEnabled":true},"graphs":[],"defaultGraph":"","defaultPostTypeGraph":""},"schema_type":null,"schema_type_options":null,"pillar_content":false,"robots_default":true,"robots_noindex":false,"robots_noarchive":false,"robots_nosnippet":false,"robots_nofollow":false,"robots_noimageindex":false,"robots_noodp":false,"robots_notranslate":false,"robots_max_snippet":null,"robots_max_videopreview":null,"robots_max_imagepreview":"large","priority":null,"frequency":null,"location":null,"local_seo":null,"breadcrumb_settings":null,"limit_modified_date":false,"ai":null,"created":"2021-01-21 15:12:40","updated":"2025-06-03 23:56:05","seo_analyzer_scan_date":null},"aioseo_breadcrumb":"<div class=\"aioseo-breadcrumbs\"><span class=\"aioseo-breadcrumb\">\n\t\t\t<a href=\"https:\/\/grummfy.be\/blog\" title=\"Accueil\">Accueil<\/a>\n\t\t<\/span><span class=\"aioseo-breadcrumb-separator\">&raquo;<\/span><span class=\"aioseo-breadcrumb\">\n\t\t\t<a href=\"https:\/\/grummfy.be\/blog\/cat\/php\" title=\"PHP\">PHP<\/a>\n\t\t<\/span><span class=\"aioseo-breadcrumb-separator\">&raquo;<\/span><span class=\"aioseo-breadcrumb\">\n\t\t\tJouons aves PHP et la poo\n\t\t<\/span><\/div>","aioseo_breadcrumb_json":[{"label":"Accueil","link":"https:\/\/grummfy.be\/blog"},{"label":"PHP","link":"https:\/\/grummfy.be\/blog\/cat\/php"},{"label":"Jouons aves PHP et la poo","link":"https:\/\/grummfy.be\/blog\/15"}],"_links":{"self":[{"href":"https:\/\/grummfy.be\/blog\/wp-json\/wp\/v2\/posts\/15","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/grummfy.be\/blog\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/grummfy.be\/blog\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/grummfy.be\/blog\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/grummfy.be\/blog\/wp-json\/wp\/v2\/comments?post=15"}],"version-history":[{"count":0,"href":"https:\/\/grummfy.be\/blog\/wp-json\/wp\/v2\/posts\/15\/revisions"}],"wp:attachment":[{"href":"https:\/\/grummfy.be\/blog\/wp-json\/wp\/v2\/media?parent=15"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/grummfy.be\/blog\/wp-json\/wp\/v2\/categories?post=15"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/grummfy.be\/blog\/wp-json\/wp\/v2\/tags?post=15"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}