{"id":453,"date":"2019-09-09T12:08:42","date_gmt":"2019-09-09T12:08:42","guid":{"rendered":"https:\/\/www.webhozz.com\/code\/?p=453"},"modified":"2019-09-09T12:08:43","modified_gmt":"2019-09-09T12:08:43","slug":"php-math-operation","status":"publish","type":"post","link":"https:\/\/www.webhozz.com\/code\/php-math-operation\/","title":{"rendered":"PHP : Math Operation"},"content":{"rendered":"\n<h5 class=\"wp-block-heading\">Melakukan Operasi Matematika<\/h5>\n\n\n\n<p>PHP memiliki beberapa fungsi bawaan yang membantu kalian melakukan apa saja mulai dari penambahan atau pengurangan sederhana hingga perhitungan lanjutan. Kalian telah melihat cara melakukan operasi matematika dasar di bab operator PHP. Mari kita lihat contoh di bawah ini:<\/p>\n\n\n<div class=\"wp-block-syntaxhighlighter-code \"><pre class=\"brush: php; title: ; notranslate\" title=\"\">\n&lt;?php\necho 7 + 3; \/\/ 0utputs: 10\necho 7 - 2; \/\/ 0utputs: 5\necho 7 * 2; \/\/ 0utputs: 14\necho 7 \/ 2; \/\/ 0utputs: 3.5\necho 7 % 2; \/\/ 0utputs: 1\n?&gt;\n<\/pre><\/div>\n\n\n<p>Setiap operasi matematika memiliki tingkatannya sendiri; umumnya perkalian dan pembagian dilakukan sebelum penambahan dan pengurangan. Namun, tanda kurung dapat mengubah prioritas ini; ekspression yang terlampir di dalam tanda kurung selalu dievaluasi terlebih dahulu, terlepas dari tingkat presedensi operasi, seperti yang ditunjukkan pada contoh berikut:<\/p>\n\n\n<div class=\"wp-block-syntaxhighlighter-code \"><pre class=\"brush: php; title: ; notranslate\" title=\"\">\n&lt;?php\necho 5 + 4 * 10;         \/\/ 0utputs: 45\necho (5 + 4) * 10;       \/\/ 0utputs: 90\necho 5 + 4 * 10 \/ 2;     \/\/ 0utputs: 25\necho 8 * 10 \/ 4 - 2;     \/\/ 0utputs: 18\necho 8 * 10 \/ (4 - 2);   \/\/ 0utputs: 40\necho 8 + 10 \/ 4 - 2;     \/\/ 0utputs: 8.5\necho (8 + 10) \/ (4 - 2); \/\/ 0utputs: 9\n?&gt;\n<\/pre><\/div>\n\n\n<p>Pada bagian berikut kita akan melihat beberapa fungsi PHP bawaan yang paling sering digunakan dalam melakukan operasi matematika.<\/p>\n\n\n\n<h5 class=\"wp-block-heading\">Mendapatkan Nilai Absolut dari Sebuah Angka<\/h5>\n\n\n\n<p>Nilai absolut <em>integer <\/em>atau <em>float<\/em> dapat ditemukan dengan fungsi <strong><em>abs()<\/em><\/strong>, seperti yang ditunjukkan dalam contoh berikut:<\/p>\n\n\n<div class=\"wp-block-syntaxhighlighter-code \"><pre class=\"brush: php; title: ; notranslate\" title=\"\">\n&lt;?php\necho abs(5);    \/\/ 0utputs: 5 (integer)\necho abs(-5);   \/\/ 0utputs: 5 (integer)\necho abs(4.2);  \/\/ 0utputs: 4.2 (double\/float)\necho abs(-4.2); \/\/ 0utputs: 4.2 (double\/float)\n?&gt;\n<\/pre><\/div>\n\n\n<p>Seperti yang kalian lihat jika angka yang diberikan negatif,\nnilai yang dikembalikan adalah positif. Tetapi, jika angkanya positif, fungsi\nini hanya mengembalikan angkanya.<\/p>\n\n\n\n<h5 class=\"wp-block-heading\">Membulatkan Nilai Fractional Atas atau Bawah<\/h5>\n\n\n\n<p>Fungsi <strong><em>ceil()<\/em><\/strong> dapat digunakan untuk membulatkan nilai fraksional hingga nilai integer tertinggi berikutnya, sedangkan fungsi <strong><em>floor()<\/em><\/strong> dapat digunakan untuk membulatkan nilai fraksional ke nilai integer terendah berikutnya, seperti yang ditunjukkan pada contoh berikut:<\/p>\n\n\n<div class=\"wp-block-syntaxhighlighter-code \"><pre class=\"brush: php; title: ; notranslate\" title=\"\">\n&lt;?php\n\/\/ Round fractions up\necho ceil(4.2);    \/\/ 0utputs: 5\necho ceil(9.99);   \/\/ 0utputs: 10\necho ceil(-5.18);  \/\/ 0utputs: -5\n \n\/\/ Round fractions down\necho floor(4.2);    \/\/ 0utputs: 4\necho floor(9.99);   \/\/ 0utputs: 9\necho floor(-5.18);  \/\/ 0utputs: -6\n?&gt;\n<\/pre><\/div>\n\n\n<h5 class=\"wp-block-heading\">Mendapatkan Akar Kuadrat dari Sebuah Angka<\/h5>\n\n\n\n<p>Kalian dapat menggunakan fungsi <strong><em>sqrt()<\/em><\/strong> untuk menemukan akar kuadrat dari angka positif. Fungsi ini mengembalikan nilai khusus <strong><em>NAN<\/em><\/strong> untuk angka negatif. Berikut contohnya:<\/p>\n\n\n<div class=\"wp-block-syntaxhighlighter-code \"><pre class=\"brush: php; title: ; notranslate\" title=\"\">\n&lt;?php\necho sqrt(9);   \/\/ 0utputs: 3\necho sqrt(25);  \/\/ 0utputs: 5\necho sqrt(10);  \/\/ 0utputs: 3.1622776601684\necho sqrt(-16); \/\/ 0utputs: NAN\n?&gt;\n<\/pre><\/div>\n\n\n<h5 class=\"wp-block-heading\">Menghasilkan Angka Random<\/h5>\n\n\n\n<p>Fungsi <strong><em>rand() <\/em><\/strong>dapat digunakan untuk menghasilkan angka acak (random). Kalian bisa menentukan rentangnya dengan passing <em>argumen min, maks<\/em>, seperti ditunjukkan dalam contoh berikut:<\/p>\n\n\n<div class=\"wp-block-syntaxhighlighter-code \"><pre class=\"brush: php; title: ; notranslate\" title=\"\">\n&lt;?php\n\/\/ Generate some random numbers\necho rand() . &quot;&lt;br&gt;&quot;;\necho rand() . &quot;&lt;br&gt;&quot;;\n \n\/\/ Generate some random numbers between 1 and 10 (inclusive)\necho rand(1, 10) . &quot;&lt;br&gt;&quot;;\necho rand(1, 10) . &quot;&lt;br&gt;&quot;;\n?&gt;\n<\/pre><\/div>\n\n\n<p>Jika fungsi <strong><em>rand()<\/em><\/strong> dipanggil tanpa argumen opsional <strong><em>min, maks<\/em><\/strong>, maka fungsi tersebut akan mengembalikan angka <em>pseudo-random<\/em> antara <strong><em>0<\/em><\/strong> dan <strong><em>getrandmax()<\/em><\/strong>. Fungsi <strong><em>getrandmax()<\/em><\/strong> menunjukkan possible random value, yang hanya 32767 pada platform Windows. Jadi, jika kalian memerlukan rentang yang lebih besar dari 32767, kalian cukup menentukan argumen <strong><em>min<\/em><\/strong> dan <strong><em>max<\/em><\/strong>.<\/p>\n\n\n\n<h5 class=\"wp-block-heading\">Mengkonversi Bilangan Desimal ke Biner dan sebaliknya<\/h5>\n\n\n\n<p>Fungsi <strong><em>decbin()<\/em><\/strong> digunakan untuk mengubah angka desimal menjadi angka biner. Sedangkan pasangannya fungsi <strong><em>bindec()<\/em><\/strong> mengubah angka dari biner menjadi desimal.<\/p>\n\n\n<div class=\"wp-block-syntaxhighlighter-code \"><pre class=\"brush: php; title: ; notranslate\" title=\"\">\n&lt;?php\n\/\/ Convert Decimal to Binary \necho decbin(2);    \/\/ 0utputs: 10  \necho decbin(12);   \/\/ 0utputs: 1100  \necho decbin(100);  \/\/ 0utputs: 1100100\n \n\/\/ Convert Binary to Decimal\necho bindec(10);       \/\/ 0utputs: 2 \necho bindec(1100);     \/\/ 0utputs: 12  \necho bindec(1100100);  \/\/ 0utputs: 100\n?&gt;\n<\/pre><\/div>\n\n\n<h5 class=\"wp-block-heading\">Mengkonversi Bilangan Desimal ke Heksadesimal dan Sebaliknya<\/h5>\n\n\n\n<p>Fungsi <strong><em>dechex()<\/em><\/strong> digunakan untuk mengubah angka desimal menjadi representasi heksadesimal. Sedangkan, fungsi <strong><em>hexdec()<\/em><\/strong> digunakan untuk mengubah string heksadesimal menjadi angka desimal.<\/p>\n\n\n<div class=\"wp-block-syntaxhighlighter-code \"><pre class=\"brush: php; title: ; notranslate\" title=\"\">\n&lt;?php\n\/\/ Convert decimal to hexadecimal \necho dechex(255);  \/\/ 0utputs: ff\necho dechex(196);  \/\/ 0utputs: c4\necho dechex(0);    \/\/ 0utputs: 0\n \n\/\/ Convert hexadecimal to decimal\necho hexdec('ff');  \/\/ 0utputs: 255\necho hexdec('c4');  \/\/ 0utputs: 196\necho hexdec(0);     \/\/ 0utputs: 0\n?&gt;\n<\/pre><\/div>\n\n\n<h5 class=\"wp-block-heading\">Mengonversi Angka Desimal ke Oktal dan sebaliknya<\/h5>\n\n\n\n<p>Fungsi <strong><em>decoct()<\/em><\/strong> digunakan untuk mengubah angka desimal menjadi representasi oktal. Sedangkan fungsi <strong><em>octdec() <\/em><\/strong>digunakan untuk mengubah angka oktal menjadi angka desimal.<\/p>\n\n\n<div class=\"wp-block-syntaxhighlighter-code \"><pre class=\"brush: php; title: ; notranslate\" title=\"\">\n&lt;?php\n\/\/ Convert decimal to octal \necho decoct(12);   \/\/ 0utputs: 14\necho decoct(256);  \/\/ 0utputs: 400\necho decoct(77);   \/\/ 0utputs: 115\n \n\/\/ Convert octal to decimal\necho octdec('14');   \/\/ 0utputs: 12\necho octdec('400');  \/\/ 0utputs: 256\necho octdec('115');  \/\/ 0utputs: 77\n?&gt;\n<\/pre><\/div>\n\n\n<h5 class=\"wp-block-heading\">Konversi Nomor dari Satu Basis Sistem ke Sistem Lainnya<\/h5>\n\n\n\n<p>Fungsi <strong><em>base_convert()<\/em><\/strong> dapat digunakan untuk\nmengonversi angka dari satu sistem basis ke sistem lainnya. Misalnya, kalian dapat\nmengubah desimal (<em>base 10<\/em>) menjadi\nbiner (<em>base 2<\/em>), heksadesimal (<em>base 16<\/em>) menjadi oktal (<em>base 8<\/em>), oktal ke heksadesimal,\nheksadesimal ke desimal, dan seterusnya.<\/p>\n\n\n\n<p>Fungsi ini menerima tiga parameter: jumlah untuk dikonversi, basis saat ini, dan basis untuk dikonversi. Sintaks dasarnya adalah sebagai berikut:<\/p>\n\n\n<div class=\"wp-block-syntaxhighlighter-code \"><pre class=\"brush: php; title: ; notranslate\" title=\"\">\nbase_convert(number, frombase, tobase);\n<\/pre><\/div>\n\n\n<p>Di sini, angka dapat berupa integer atau string yang mewakili integer. Baik <strong><em>frombase <\/em><\/strong>dan <strong><em>tobase<\/em><\/strong> harus antara 2 dan 36, inklusif. Angka dalam angka dengan basis (base) lebih tinggi dari 10 akan diwakili dengan huruf a-z, di mana a berarti 10, b berarti 11 dan z berarti 35. Berikut adalah contoh sederhana untuk menunjukkan bagaimana fungsi ini bekerja:<\/p>\n\n\n<div class=\"wp-block-syntaxhighlighter-code \"><pre class=\"brush: php; title: ; notranslate\" title=\"\">\n&lt;?php\n\/\/ Convert decimal to binary\necho base_convert('12', 10, 2);  \/\/ 0utputs: 1100\n\/\/ Convert binary to decimal\necho base_convert('1100', 2, 10);  \/\/ 0utputs: 12\n \n\/\/ Convert decimal to hexadecimal\necho base_convert('10889592', 10, 16);  \/\/ 0utputs: a62978\n\/\/ Convert hexadecimal to decimal\necho base_convert('a62978', 16, 10);  \/\/ 0utputs: 10889592\n \n\/\/ Convert decimal to octal\necho base_convert('82', 10, 8);  \/\/ 0utputs: 122\n\/\/ Convert octal to decimal\necho base_convert('122', 8, 10);  \/\/ 0utputs: 82\n \n\/\/ Convert hexadecimal to octal\necho base_convert('c2c6a8', 16, 8);  \/\/ 0utputs: 60543250\n\/\/ Convert octal to hexadecimal\necho base_convert('60543250', 8, 16);  \/\/ 0utputs: c2c6a8\n \n\/\/ Convert octal to binary\necho base_convert('42', 8, 2);  \/\/ 0utputs: 100010\n\/\/ Convert binary to octal\necho base_convert('100010', 2, 8);  \/\/ 0utputs: 42\n \n\/\/ Convert hexadecimal to binary\necho base_convert('abc', 16, 2);  \/\/ 0utputs: 101010111100\n\/\/ Convert binary to hexadecimal\necho base_convert('101010111100', 2, 16);  \/\/ 0utputs: abc\n?&gt;\n<\/pre><\/div>","protected":false},"excerpt":{"rendered":"<p>Melakukan Operasi Matematika PHP memiliki beberapa fungsi bawaan yang membantu kalian melakukan apa saja mulai dari penambahan atau pengurangan sederhana hingga perhitungan lanjutan. Kalian telah<\/p>\n","protected":false},"author":2,"featured_media":0,"comment_status":"closed","ping_status":"closed","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[7],"tags":[],"class_list":["post-453","post","type-post","status-publish","format-standard","hentry","category-php"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v27.7 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>Belajar PHP : Math Operation - WebHozz Code<\/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:\/\/www.webhozz.com\/code\/php-math-operation\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Belajar PHP : Math Operation - WebHozz Code\" \/>\n<meta property=\"og:description\" content=\"Melakukan Operasi Matematika PHP memiliki beberapa fungsi bawaan yang membantu kalian melakukan apa saja mulai dari penambahan atau pengurangan sederhana hingga perhitungan lanjutan. Kalian telah\" \/>\n<meta property=\"og:url\" content=\"https:\/\/www.webhozz.com\/code\/php-math-operation\/\" \/>\n<meta property=\"og:site_name\" content=\"WebHozz Code\" \/>\n<meta property=\"article:published_time\" content=\"2019-09-09T12:08:42+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2019-09-09T12:08:43+00:00\" \/>\n<meta name=\"author\" content=\"admin\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"admin\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"4 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\\\/\\\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\\\/\\\/www.webhozz.com\\\/code\\\/php-math-operation\\\/#article\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/www.webhozz.com\\\/code\\\/php-math-operation\\\/\"},\"author\":{\"name\":\"admin\",\"@id\":\"https:\\\/\\\/www.webhozz.com\\\/code\\\/#\\\/schema\\\/person\\\/3b2b79dc317236b0dde4b1fda37263e1\"},\"headline\":\"PHP : Math Operation\",\"datePublished\":\"2019-09-09T12:08:42+00:00\",\"dateModified\":\"2019-09-09T12:08:43+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/www.webhozz.com\\\/code\\\/php-math-operation\\\/\"},\"wordCount\":493,\"articleSection\":[\"PHP\"],\"inLanguage\":\"en-US\"},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/www.webhozz.com\\\/code\\\/php-math-operation\\\/\",\"url\":\"https:\\\/\\\/www.webhozz.com\\\/code\\\/php-math-operation\\\/\",\"name\":\"Belajar PHP : Math Operation - WebHozz Code\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/www.webhozz.com\\\/code\\\/#website\"},\"datePublished\":\"2019-09-09T12:08:42+00:00\",\"dateModified\":\"2019-09-09T12:08:43+00:00\",\"author\":{\"@id\":\"https:\\\/\\\/www.webhozz.com\\\/code\\\/#\\\/schema\\\/person\\\/3b2b79dc317236b0dde4b1fda37263e1\"},\"breadcrumb\":{\"@id\":\"https:\\\/\\\/www.webhozz.com\\\/code\\\/php-math-operation\\\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/www.webhozz.com\\\/code\\\/php-math-operation\\\/\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/www.webhozz.com\\\/code\\\/php-math-operation\\\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/www.webhozz.com\\\/code\\\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"PHP : Math Operation\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\\\/\\\/www.webhozz.com\\\/code\\\/#website\",\"url\":\"https:\\\/\\\/www.webhozz.com\\\/code\\\/\",\"name\":\"WebHozz Code\",\"description\":\"Tutorial Web &amp; Pemrograman Indonesia\",\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\\\/\\\/www.webhozz.com\\\/code\\\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Person\",\"@id\":\"https:\\\/\\\/www.webhozz.com\\\/code\\\/#\\\/schema\\\/person\\\/3b2b79dc317236b0dde4b1fda37263e1\",\"name\":\"admin\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/f222cb0ed38f2100d666bb262fd38d4f0d8e5673698208e40ff83118f10a4e8e?s=96&d=mm&r=g\",\"url\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/f222cb0ed38f2100d666bb262fd38d4f0d8e5673698208e40ff83118f10a4e8e?s=96&d=mm&r=g\",\"contentUrl\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/f222cb0ed38f2100d666bb262fd38d4f0d8e5673698208e40ff83118f10a4e8e?s=96&d=mm&r=g\",\"caption\":\"admin\"},\"url\":\"https:\\\/\\\/www.webhozz.com\\\/code\\\/author\\\/dody\\\/\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"Belajar PHP : Math Operation - WebHozz Code","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.webhozz.com\/code\/php-math-operation\/","og_locale":"en_US","og_type":"article","og_title":"Belajar PHP : Math Operation - WebHozz Code","og_description":"Melakukan Operasi Matematika PHP memiliki beberapa fungsi bawaan yang membantu kalian melakukan apa saja mulai dari penambahan atau pengurangan sederhana hingga perhitungan lanjutan. Kalian telah","og_url":"https:\/\/www.webhozz.com\/code\/php-math-operation\/","og_site_name":"WebHozz Code","article_published_time":"2019-09-09T12:08:42+00:00","article_modified_time":"2019-09-09T12:08:43+00:00","author":"admin","twitter_card":"summary_large_image","twitter_misc":{"Written by":"admin","Est. reading time":"4 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/www.webhozz.com\/code\/php-math-operation\/#article","isPartOf":{"@id":"https:\/\/www.webhozz.com\/code\/php-math-operation\/"},"author":{"name":"admin","@id":"https:\/\/www.webhozz.com\/code\/#\/schema\/person\/3b2b79dc317236b0dde4b1fda37263e1"},"headline":"PHP : Math Operation","datePublished":"2019-09-09T12:08:42+00:00","dateModified":"2019-09-09T12:08:43+00:00","mainEntityOfPage":{"@id":"https:\/\/www.webhozz.com\/code\/php-math-operation\/"},"wordCount":493,"articleSection":["PHP"],"inLanguage":"en-US"},{"@type":"WebPage","@id":"https:\/\/www.webhozz.com\/code\/php-math-operation\/","url":"https:\/\/www.webhozz.com\/code\/php-math-operation\/","name":"Belajar PHP : Math Operation - WebHozz Code","isPartOf":{"@id":"https:\/\/www.webhozz.com\/code\/#website"},"datePublished":"2019-09-09T12:08:42+00:00","dateModified":"2019-09-09T12:08:43+00:00","author":{"@id":"https:\/\/www.webhozz.com\/code\/#\/schema\/person\/3b2b79dc317236b0dde4b1fda37263e1"},"breadcrumb":{"@id":"https:\/\/www.webhozz.com\/code\/php-math-operation\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/www.webhozz.com\/code\/php-math-operation\/"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/www.webhozz.com\/code\/php-math-operation\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/www.webhozz.com\/code\/"},{"@type":"ListItem","position":2,"name":"PHP : Math Operation"}]},{"@type":"WebSite","@id":"https:\/\/www.webhozz.com\/code\/#website","url":"https:\/\/www.webhozz.com\/code\/","name":"WebHozz Code","description":"Tutorial Web &amp; Pemrograman Indonesia","potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/www.webhozz.com\/code\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Person","@id":"https:\/\/www.webhozz.com\/code\/#\/schema\/person\/3b2b79dc317236b0dde4b1fda37263e1","name":"admin","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/secure.gravatar.com\/avatar\/f222cb0ed38f2100d666bb262fd38d4f0d8e5673698208e40ff83118f10a4e8e?s=96&d=mm&r=g","url":"https:\/\/secure.gravatar.com\/avatar\/f222cb0ed38f2100d666bb262fd38d4f0d8e5673698208e40ff83118f10a4e8e?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/f222cb0ed38f2100d666bb262fd38d4f0d8e5673698208e40ff83118f10a4e8e?s=96&d=mm&r=g","caption":"admin"},"url":"https:\/\/www.webhozz.com\/code\/author\/dody\/"}]}},"_links":{"self":[{"href":"https:\/\/www.webhozz.com\/code\/wp-json\/wp\/v2\/posts\/453","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/www.webhozz.com\/code\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/www.webhozz.com\/code\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/www.webhozz.com\/code\/wp-json\/wp\/v2\/users\/2"}],"replies":[{"embeddable":true,"href":"https:\/\/www.webhozz.com\/code\/wp-json\/wp\/v2\/comments?post=453"}],"version-history":[{"count":1,"href":"https:\/\/www.webhozz.com\/code\/wp-json\/wp\/v2\/posts\/453\/revisions"}],"predecessor-version":[{"id":454,"href":"https:\/\/www.webhozz.com\/code\/wp-json\/wp\/v2\/posts\/453\/revisions\/454"}],"wp:attachment":[{"href":"https:\/\/www.webhozz.com\/code\/wp-json\/wp\/v2\/media?parent=453"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/www.webhozz.com\/code\/wp-json\/wp\/v2\/categories?post=453"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/www.webhozz.com\/code\/wp-json\/wp\/v2\/tags?post=453"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}