{"id":1237,"date":"2026-03-09T14:06:09","date_gmt":"2026-03-09T13:06:09","guid":{"rendered":"https:\/\/hollands-spoor.com\/debugging-on-demand\/"},"modified":"2026-03-10T10:49:23","modified_gmt":"2026-03-10T09:49:23","slug":"debugging-on-demand","status":"publish","type":"post","link":"https:\/\/hollands-spoor.com\/nl\/debugging-on-demand\/","title":{"rendered":"Debugging on Demand"},"content":{"rendered":"\n<div class=\"wp-block-columns is-layout-flex wp-container-core-columns-is-layout-28f84493 wp-block-columns-is-layout-flex\">\n<div class=\"wp-block-column is-layout-flow wp-block-column-is-layout-flow\" style=\"flex-basis:66.66%\">\n<p>Als ik XAMPP gebruik voor lokaal werk aan PHP scripts, schakel ik telkens de Xdebugger aan en uit vanwege de vertraging van PHP door Xdebug. Als ik geen foutopsporing nodig heb, schakel ik Xdebug geheel uit. <\/p>\n\n\n\n<p>Er zijn goede aanbevelingen voor het versnellen van PHP bij gebruik van Xdebug, bijvoorbeeld <a href=\"https:\/\/jtreminio.com\/blog\/developing-at-full-speed-with-xdebug\/\">hier<\/a> en <a href=\"https:\/\/www.reddit.com\/r\/PHP\/comments\/1ip90th\/optimizing_xdebug_performance\/\">hier<\/a>. Desondanks schakel ik Xdebug liever helemaal uit. <\/p>\n\n\n\n<p>Omdat ik in een Windows omgeving werk, schreef ik twee batch-bestanden die ik in de XAMPP directory plaats naast de bestaande batch-bestanden van XAMPP, <em>apache_start.bat<\/em> en <em>apache_stop.bat<\/em>.<\/p>\n\n\n\n<p>Het eerste script, <a href=\"https:\/\/github.com\/hollands-spoor\/Xdebug_On_Demand\/blob\/main\/apache_debug.ps1\">apache_debug.ps1<\/a> start Apache op met actieve debugger. Dit doet hij door een blok met Xdebug instellingen in het PHP.ini bestand te injecteren, vlak voordat Apache wordt opgestart. <\/p>\n\n\n\n<p>Het <a href=\"https:\/\/github.com\/hollands-spoor\/Xdebug_On_Demand\/blob\/main\/apache_restart.ps1\">tweede script <\/a>herstart Apache zonder actieve debugger. Hier wordt het blokje Xdebug instellingen in commentaar verstopt, voordat Apache opstart. <\/p>\n\n\n\n<p>Voor het gemak heb ik ook <a href=\"https:\/\/github.com\/hollands-spoor\/Xdebug_On_Demand\/blob\/main\/apache_mode_status.ps1\">een derde script<\/a> dat de huidige debugstatus meldt. Soms vergeet ik of de debugger aan staat.<\/p>\n\n\n\n<p>Alle scripts werken ook al Apache als service draait. <\/p>\n\n\n\n<h3 class=\"wp-block-heading\">Installeren<\/h3>\n\n\n\n<p>Kopieer de drie scripts naar de map met de XAMPP installatie, standaard is dat C:\\XAMPP. Als XAMPP zich ergens anders bevindt, pas dan de $xamppDir declaratie aan die aan het begin van de scripts staat. <\/p>\n\n\n\n<h3 class=\"wp-block-heading\">Gebruik:<\/h3>\n\n\n\n<p>Voer de scripts uit vanuit een terminal venster. Of gebruik onderstaande automatisering.<\/p>\n\n\n\n<h3 class=\"wp-block-heading\">Optionele verbetering:<\/h3>\n\n\n\n<p>Gebruik eventueel deze VS Code integratie:<\/p>\n\n\n\n<p>Om VS Code de debugger automatisch aan en uit te laten schakelen, kunnen de volgende twee .vscode\/tasks.json worden toegevoegd:<\/p>\n\n\n\n<p>1. Add two shell tasks in `.vscode\/tasks.json`:<\/p>\n\n\n\n<p> &#8211; \u00e9\u00e9n taak om `apache_debug.ps1` uit te voeren voor foutopsporing begint;<\/p>\n\n\n\n<p> &#8211; \u00e9\u00e9n taak om `apache_restart.ps1` uit te voeren na de foutopsporing.<\/p>\n\n\n\n<p>2. Zorg ervoor dat deze taken worden uitgevoerd in PHP-debug configuratie in `.vscode\/launch.json` door gebruik te maken van:<\/p>\n\n\n\n<p> &#8211; preLaunchTask<\/p>\n\n\n\n<p> &#8211; postDebugTask<\/p>\n\n\n\n<p><strong>Voorbeeld `.vscode\/tasks.json`<\/strong><\/p>\n\n\n\n<pre class=\"wp-block-code hs-prism language-json line-numbers\"><code>{\n&nbsp; \"version\": \"2.0.0\",\n&nbsp; \"tasks\": &#91;\n&nbsp; &nbsp; {\n&nbsp; &nbsp; &nbsp; \"label\": \"xampp:enable-debug\",\n&nbsp; &nbsp; &nbsp; \"type\": \"shell\",\n&nbsp; &nbsp; &nbsp; \"command\": \"powershell\",\n&nbsp; &nbsp; &nbsp; \"args\": &#91;\n&nbsp; &nbsp; &nbsp; &nbsp; \"-ExecutionPolicy\",\n&nbsp; &nbsp; &nbsp; &nbsp; \"Bypass\",\n&nbsp; &nbsp; &nbsp; &nbsp; \"-File\",\n&nbsp; &nbsp; &nbsp; &nbsp; \"c:\\\\\\\\xampp\\\\\\\\apache_debug.ps1\"\n&nbsp; &nbsp; &nbsp; ],\n&nbsp; &nbsp; &nbsp; \"problemMatcher\": &#91;]\n&nbsp; &nbsp; },\n&nbsp; &nbsp; {\n&nbsp; &nbsp; &nbsp; \"label\": \"xampp:disable-debug\",\n&nbsp; &nbsp; &nbsp; \"type\": \"shell\",\n&nbsp; &nbsp; &nbsp; \"command\": \"powershell\",\n&nbsp; &nbsp; &nbsp; \"args\": &#91;\n&nbsp; &nbsp; &nbsp; &nbsp; \"-ExecutionPolicy\",\n&nbsp; &nbsp; &nbsp; &nbsp; \"Bypass\",\n&nbsp; &nbsp; &nbsp; &nbsp; \"-File\",\n&nbsp; &nbsp; &nbsp; &nbsp; \"c:\\\\\\\\xampp\\\\\\\\apache_restart.ps1\"\n&nbsp; &nbsp; &nbsp; ],\n&nbsp; &nbsp; &nbsp; \"problemMatcher\": &#91;]\n&nbsp; &nbsp; }\n&nbsp; ]\n}<\/code><\/pre>\n\n\n\n<p>Deze taken worden aangeroepen als het volgende wordt toegevoegd aan launch.json:<\/p>\n\n\n\n<p><strong>Voorbeeld `.vscode\/launch.json`(PHP Listen)<\/strong><\/p>\n\n\n\n<pre class=\"wp-block-code hs-prism language-json line-numbers\"><code>{\n&nbsp; \"version\": \"0.2.0\",\n&nbsp; \"configurations\": &#91;\n&nbsp; &nbsp; {\n&nbsp; &nbsp; &nbsp; \"name\": \"Listen for Xdebug\",\n&nbsp; &nbsp; &nbsp; \"type\": \"php\",\n&nbsp; &nbsp; &nbsp; \"request\": \"launch\",\n&nbsp; &nbsp; &nbsp; \"port\": 9003,\n&nbsp; &nbsp; &nbsp; \"preLaunchTask\": \"xampp:enable-debug\",\n&nbsp; &nbsp; &nbsp; \"postDebugTask\": \"xampp:disable-debug\"\n&nbsp; &nbsp; }\n&nbsp; ]\n}<\/code><\/pre>\n\n\n\n<p>Na al deze toevoegingen start en stopt Xdebug naar gelang de status van de VSCode debugger.<\/p>\n\n\n\n<p><\/p>\n<\/div>\n\n\n\n<div class=\"wp-block-column is-layout-flow wp-block-column-is-layout-flow\" style=\"flex-basis:33.33%\"><\/div>\n<\/div>\n","protected":false},"excerpt":{"rendered":"<p>Als ik XAMPP gebruik voor lokaal werk aan PHP scripts, schakel ik telkens de Xdebugger aan en uit vanwege de vertraging van PHP door Xdebug. Als ik geen foutopsporing nodig heb, schakel ik Xdebug geheel uit. Er zijn goede aanbevelingen voor het versnellen van PHP bij gebruik van Xdebug, bijvoorbeeld hier en hier. Desondanks schakel [&hellip;]<\/p>\n","protected":false},"author":1,"featured_media":0,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"_acf_changed":false,"hsb_test_text":"","test_via_wp_cf":"","footnotes":""},"categories":[32],"tags":[60,59,56,57,58],"class_list":["post-1237","post","type-post","status-publish","format-standard","hentry","category-ongecategoriseerd","tag-shell-nl","tag-vscode-nl","tag-windows-nl","tag-xampp-nl","tag-xdebug-nl"],"acf":[],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v27.1.1 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>Debugging on Demand - Hollands Spoor<\/title>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/hollands-spoor.com\/nl\/debugging-on-demand\/\" \/>\n<meta property=\"og:locale\" content=\"nl_NL\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Debugging on Demand - Hollands Spoor\" \/>\n<meta property=\"og:description\" content=\"Als ik XAMPP gebruik voor lokaal werk aan PHP scripts, schakel ik telkens de Xdebugger aan en uit vanwege de vertraging van PHP door Xdebug. Als ik geen foutopsporing nodig heb, schakel ik Xdebug geheel uit. Er zijn goede aanbevelingen voor het versnellen van PHP bij gebruik van Xdebug, bijvoorbeeld hier en hier. Desondanks schakel [&hellip;]\" \/>\n<meta property=\"og:url\" content=\"https:\/\/hollands-spoor.com\/nl\/debugging-on-demand\/\" \/>\n<meta property=\"og:site_name\" content=\"Hollands Spoor\" \/>\n<meta property=\"article:published_time\" content=\"2026-03-09T13:06:09+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2026-03-10T09:49:23+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/hollands-spoor.com\/wp-content\/uploads\/2026\/03\/notebooks-ls.png\" \/>\n\t<meta property=\"og:image:width\" content=\"1200\" \/>\n\t<meta property=\"og:image:height\" content=\"675\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/png\" \/>\n<meta name=\"author\" content=\"admin\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:label1\" content=\"Geschreven door\" \/>\n\t<meta name=\"twitter:data1\" content=\"admin\" \/>\n\t<meta name=\"twitter:label2\" content=\"Geschatte leestijd\" \/>\n\t<meta name=\"twitter:data2\" content=\"2 minuten\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\/\/hollands-spoor.com\/nl\/debugging-on-demand\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/hollands-spoor.com\/nl\/debugging-on-demand\/\"},\"author\":{\"name\":\"admin\",\"@id\":\"https:\/\/hollands-spoor.com\/nl\/#\/schema\/person\/bf238eddca0c37cd6718bf5cbd2a9d60\"},\"headline\":\"Debugging on Demand\",\"datePublished\":\"2026-03-09T13:06:09+00:00\",\"dateModified\":\"2026-03-10T09:49:23+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/hollands-spoor.com\/nl\/debugging-on-demand\/\"},\"wordCount\":352,\"commentCount\":0,\"publisher\":{\"@id\":\"https:\/\/hollands-spoor.com\/nl\/#organization\"},\"keywords\":[\"Shell\",\"VSCode\",\"windows\",\"xampp\",\"Xdebug\"],\"articleSection\":[\"Ongecategoriseerd\"],\"inLanguage\":\"nl-NL\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\/\/hollands-spoor.com\/nl\/debugging-on-demand\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/hollands-spoor.com\/nl\/debugging-on-demand\/\",\"url\":\"https:\/\/hollands-spoor.com\/nl\/debugging-on-demand\/\",\"name\":\"Debugging on Demand - Hollands Spoor\",\"isPartOf\":{\"@id\":\"https:\/\/hollands-spoor.com\/nl\/#website\"},\"datePublished\":\"2026-03-09T13:06:09+00:00\",\"dateModified\":\"2026-03-10T09:49:23+00:00\",\"breadcrumb\":{\"@id\":\"https:\/\/hollands-spoor.com\/nl\/debugging-on-demand\/#breadcrumb\"},\"inLanguage\":\"nl-NL\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/hollands-spoor.com\/nl\/debugging-on-demand\/\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/hollands-spoor.com\/nl\/debugging-on-demand\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/hollands-spoor.com\/nl\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Debugging on Demand\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\/\/hollands-spoor.com\/nl\/#website\",\"url\":\"https:\/\/hollands-spoor.com\/nl\/\",\"name\":\"Hollands Spoor\",\"description\":\"The Notebooks\",\"publisher\":{\"@id\":\"https:\/\/hollands-spoor.com\/nl\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\/\/hollands-spoor.com\/nl\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"nl-NL\"},{\"@type\":\"Organization\",\"@id\":\"https:\/\/hollands-spoor.com\/nl\/#organization\",\"name\":\"Hollands Spoor\",\"url\":\"https:\/\/hollands-spoor.com\/nl\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"nl-NL\",\"@id\":\"https:\/\/hollands-spoor.com\/nl\/#\/schema\/logo\/image\/\",\"url\":\"https:\/\/hollands-spoor.com\/wp-content\/uploads\/2026\/03\/cropped-notebooks.png\",\"contentUrl\":\"https:\/\/hollands-spoor.com\/wp-content\/uploads\/2026\/03\/cropped-notebooks.png\",\"width\":512,\"height\":512,\"caption\":\"Hollands Spoor\"},\"image\":{\"@id\":\"https:\/\/hollands-spoor.com\/nl\/#\/schema\/logo\/image\/\"}},{\"@type\":\"Person\",\"@id\":\"https:\/\/hollands-spoor.com\/nl\/#\/schema\/person\/bf238eddca0c37cd6718bf5cbd2a9d60\",\"name\":\"admin\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"nl-NL\",\"@id\":\"https:\/\/hollands-spoor.com\/nl\/#\/schema\/person\/image\/\",\"url\":\"https:\/\/secure.gravatar.com\/avatar\/4c1de669e8c522c10854630af96a269dcb3a4f6835143cd0ad49538c05eb63bf?s=96&d=mm&r=g\",\"contentUrl\":\"https:\/\/secure.gravatar.com\/avatar\/4c1de669e8c522c10854630af96a269dcb3a4f6835143cd0ad49538c05eb63bf?s=96&d=mm&r=g\",\"caption\":\"admin\"},\"sameAs\":[\"https:\/\/hollands-spoor.com\"],\"url\":\"https:\/\/hollands-spoor.com\/nl\/author\/admin\/\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"Debugging on Demand - Hollands Spoor","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:\/\/hollands-spoor.com\/nl\/debugging-on-demand\/","og_locale":"nl_NL","og_type":"article","og_title":"Debugging on Demand - Hollands Spoor","og_description":"Als ik XAMPP gebruik voor lokaal werk aan PHP scripts, schakel ik telkens de Xdebugger aan en uit vanwege de vertraging van PHP door Xdebug. Als ik geen foutopsporing nodig heb, schakel ik Xdebug geheel uit. Er zijn goede aanbevelingen voor het versnellen van PHP bij gebruik van Xdebug, bijvoorbeeld hier en hier. Desondanks schakel [&hellip;]","og_url":"https:\/\/hollands-spoor.com\/nl\/debugging-on-demand\/","og_site_name":"Hollands Spoor","article_published_time":"2026-03-09T13:06:09+00:00","article_modified_time":"2026-03-10T09:49:23+00:00","og_image":[{"width":1200,"height":675,"url":"https:\/\/hollands-spoor.com\/wp-content\/uploads\/2026\/03\/notebooks-ls.png","type":"image\/png"}],"author":"admin","twitter_card":"summary_large_image","twitter_misc":{"Geschreven door":"admin","Geschatte leestijd":"2 minuten"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/hollands-spoor.com\/nl\/debugging-on-demand\/#article","isPartOf":{"@id":"https:\/\/hollands-spoor.com\/nl\/debugging-on-demand\/"},"author":{"name":"admin","@id":"https:\/\/hollands-spoor.com\/nl\/#\/schema\/person\/bf238eddca0c37cd6718bf5cbd2a9d60"},"headline":"Debugging on Demand","datePublished":"2026-03-09T13:06:09+00:00","dateModified":"2026-03-10T09:49:23+00:00","mainEntityOfPage":{"@id":"https:\/\/hollands-spoor.com\/nl\/debugging-on-demand\/"},"wordCount":352,"commentCount":0,"publisher":{"@id":"https:\/\/hollands-spoor.com\/nl\/#organization"},"keywords":["Shell","VSCode","windows","xampp","Xdebug"],"articleSection":["Ongecategoriseerd"],"inLanguage":"nl-NL","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/hollands-spoor.com\/nl\/debugging-on-demand\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/hollands-spoor.com\/nl\/debugging-on-demand\/","url":"https:\/\/hollands-spoor.com\/nl\/debugging-on-demand\/","name":"Debugging on Demand - Hollands Spoor","isPartOf":{"@id":"https:\/\/hollands-spoor.com\/nl\/#website"},"datePublished":"2026-03-09T13:06:09+00:00","dateModified":"2026-03-10T09:49:23+00:00","breadcrumb":{"@id":"https:\/\/hollands-spoor.com\/nl\/debugging-on-demand\/#breadcrumb"},"inLanguage":"nl-NL","potentialAction":[{"@type":"ReadAction","target":["https:\/\/hollands-spoor.com\/nl\/debugging-on-demand\/"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/hollands-spoor.com\/nl\/debugging-on-demand\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/hollands-spoor.com\/nl\/"},{"@type":"ListItem","position":2,"name":"Debugging on Demand"}]},{"@type":"WebSite","@id":"https:\/\/hollands-spoor.com\/nl\/#website","url":"https:\/\/hollands-spoor.com\/nl\/","name":"Hollands Spoor","description":"The Notebooks","publisher":{"@id":"https:\/\/hollands-spoor.com\/nl\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/hollands-spoor.com\/nl\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"nl-NL"},{"@type":"Organization","@id":"https:\/\/hollands-spoor.com\/nl\/#organization","name":"Hollands Spoor","url":"https:\/\/hollands-spoor.com\/nl\/","logo":{"@type":"ImageObject","inLanguage":"nl-NL","@id":"https:\/\/hollands-spoor.com\/nl\/#\/schema\/logo\/image\/","url":"https:\/\/hollands-spoor.com\/wp-content\/uploads\/2026\/03\/cropped-notebooks.png","contentUrl":"https:\/\/hollands-spoor.com\/wp-content\/uploads\/2026\/03\/cropped-notebooks.png","width":512,"height":512,"caption":"Hollands Spoor"},"image":{"@id":"https:\/\/hollands-spoor.com\/nl\/#\/schema\/logo\/image\/"}},{"@type":"Person","@id":"https:\/\/hollands-spoor.com\/nl\/#\/schema\/person\/bf238eddca0c37cd6718bf5cbd2a9d60","name":"admin","image":{"@type":"ImageObject","inLanguage":"nl-NL","@id":"https:\/\/hollands-spoor.com\/nl\/#\/schema\/person\/image\/","url":"https:\/\/secure.gravatar.com\/avatar\/4c1de669e8c522c10854630af96a269dcb3a4f6835143cd0ad49538c05eb63bf?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/4c1de669e8c522c10854630af96a269dcb3a4f6835143cd0ad49538c05eb63bf?s=96&d=mm&r=g","caption":"admin"},"sameAs":["https:\/\/hollands-spoor.com"],"url":"https:\/\/hollands-spoor.com\/nl\/author\/admin\/"}]}},"_links":{"self":[{"href":"https:\/\/hollands-spoor.com\/nl\/wp-json\/wp\/v2\/posts\/1237","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/hollands-spoor.com\/nl\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/hollands-spoor.com\/nl\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/hollands-spoor.com\/nl\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/hollands-spoor.com\/nl\/wp-json\/wp\/v2\/comments?post=1237"}],"version-history":[{"count":5,"href":"https:\/\/hollands-spoor.com\/nl\/wp-json\/wp\/v2\/posts\/1237\/revisions"}],"predecessor-version":[{"id":1251,"href":"https:\/\/hollands-spoor.com\/nl\/wp-json\/wp\/v2\/posts\/1237\/revisions\/1251"}],"wp:attachment":[{"href":"https:\/\/hollands-spoor.com\/nl\/wp-json\/wp\/v2\/media?parent=1237"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/hollands-spoor.com\/nl\/wp-json\/wp\/v2\/categories?post=1237"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/hollands-spoor.com\/nl\/wp-json\/wp\/v2\/tags?post=1237"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}