{"id":2935,"date":"2022-08-17T07:51:15","date_gmt":"2022-08-17T02:51:15","guid":{"rendered":"https:\/\/www.edopedia.com\/blog\/?p=2935"},"modified":"2022-09-18T13:33:14","modified_gmt":"2022-09-18T08:33:14","slug":"php-to-javascript-converter-online-full-source-code","status":"publish","type":"post","link":"https:\/\/www.edopedia.com\/blog\/php-to-javascript-converter-online-full-source-code\/","title":{"rendered":"PHP to JavaScript Converter Online Full Source Code"},"content":{"rendered":"\n<p>Do you need a tool that can <strong>convert PHP code to JavaScript online<\/strong>?<\/p>\n\n\n\n<p>In this tutorial, I&#8217;ll guide you step-by-step on how to create a <strong>PHP to JavaScript Converter<\/strong>. You can easily download the complete <strong>source code<\/strong> of this project and try it yourself on your computer.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">Download Source Code<\/h2>\n\n\n<p><a class=\"ep_link_major\" href=\"https:\/\/github.com\/edopedia\/PHP-to-Javascript\" target=\"_blank\" rel=\"noopener\">Download<\/a><\/p>\n\n\n<h2 class=\"wp-block-heading\">Supported Functionality of PHP to JavaScript Converter Online<\/h2>\n\n\n\n<ul class=\"wp-block-list\"><li>Namespaces, use<\/li><li>Class, abstract class<\/li><li>extends and interfaces<\/li><li>constants and define<\/li><li>Exceptions and catch<\/li><li>continue, break<\/li><li>anonymous classes<\/li><li>magic constants<\/li><li>list()<\/li><li>magic methods __get __set and __call (only in ES6&nbsp;<a href=\"https:\/\/kangax.github.io\/compat-table\/es6\/#test-Proxy\">see Proxy in compatibility table<\/a>)<\/li><li>private methods and properties (only in ES6&nbsp;<a href=\"https:\/\/kangax.github.io\/compat-table\/es6\/#test-WeakMap\">see WeakMap in compatibility table<\/a>)<\/li><\/ul>\n\n\n\n<h2 class=\"wp-block-heading\">Planned Features to be Added in Future<\/h2>\n\n\n\n<ul class=\"wp-block-list\"><li>include and require<\/li><li>class generation<\/li><li>yield<\/li><\/ul>\n\n\n\n<h2 class=\"wp-block-heading\">Limitations of PHP to JavaScript Converter<\/h2>\n\n\n\n<p>There are many differences between PHP and JS. For example, PHP has associate arrays but JS does not. For that reason, you can use&nbsp;<a href=\"https:\/\/github.com\/tito10047\/PHP-to-Javascript\/blob\/master\/test\/code\/jsPrinter\/phpSrc\/global\/JsArray.js.php\"><code>jsphp\\JsArray<\/code><\/a>&nbsp;which gives you the same functionality as the built-in JS Array.<\/p>\n\n\n\n<p>In JS you have an object which is similar to PHP arrays, but there is different ordering. Also, it is not working with built-in PHP functions for manipulating arrays. So if you need this object, which works with foreach loop, then you can use&nbsp;jsphp\\JsObject. This object has the same functionality as JsObject. But if you want to extend it, your extended object can&#8217;t have public or protected members, just use it, but not declare it.<\/p>\n\n\n\n<p>If you need something like an associate array you can also use&nbsp;<a href=\"https:\/\/github.com\/tito10047\/PHP-to-Javascript\/blob\/master\/test\/code\/jsPrinter\/phpSrc\/JsPrinter\/array.js.php\"><code>jsphp\\HashArray<\/code><\/a><\/p>\n\n\n\n<p>You can&#8217;t define class constant and static properties with the same name in JS will be overridden.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">Features Not Supported<\/h2>\n\n\n\n<ul class=\"wp-block-list\"><li>trait<\/li><li>goto<\/li><li>declare(ticks)<\/li><\/ul>\n\n\n\n<h2 class=\"wp-block-heading\">How to Use PHP to JavaScript Converter?<\/h2>\n\n\n\n<div class=\"wp-block-codemirror-blocks-code-block code-block\"><pre class=\"CodeMirror\" data-setting=\"{&quot;showPanel&quot;:true,&quot;languageLabel&quot;:&quot;language&quot;,&quot;fullScreenButton&quot;:true,&quot;copyButton&quot;:true,&quot;mode&quot;:&quot;php&quot;,&quot;mime&quot;:&quot;text\/x-php&quot;,&quot;theme&quot;:&quot;material&quot;,&quot;lineNumbers&quot;:true,&quot;styleActiveLine&quot;:true,&quot;lineWrapping&quot;:false,&quot;readOnly&quot;:true,&quot;fileName&quot;:&quot;&quot;,&quot;language&quot;:&quot;PHP&quot;,&quot;maxHeight&quot;:&quot;400px&quot;,&quot;modeName&quot;:&quot;php&quot;}\">    $parser = (new \\PhpParser\\ParserFactory())-&gt;create(\\PhpParser\\ParserFactory::PREFER_PHP7);\n    $jsPrinter = new \\phptojs\\JsPrinter\\JsPrinter();\n\n    $phpCode = file_get_contents('path\/to\/phpCode');\n    $stmts = $parser-&gt;parse($phpCode);\n    $jsCode = $jsPrinter-&gt;jsPrint($stmts);<\/pre><\/div>\n\n\n\n<h2 class=\"wp-block-heading\">Use auto converter<\/h2>\n\n\n\n<p>You can create a file watcher for auto-generation of JS script from your PHP code whenever it is saved.<\/p>\n\n\n\n<h3 class=\"wp-block-heading\">PHPStorm<\/h3>\n\n\n\n<p>go to&nbsp;<code>File\/Setting\/Tools\/File Watchers<\/code>&nbsp;add custom watcher and set<\/p>\n\n\n\n<ul class=\"wp-block-list\"><li>File type: PHP<\/li><li>Scope: Create new scope to your php scripts to convert<\/li><li>Program: chose yor location to&nbsp;<code>php.exe<\/code><\/li><li>Arguments:<ul><li><code>-f<\/code><\/li><li><code>$ProjectFileDir$\/..\/PHP-to-Javascript\/bin\/phpstormWatcher.php<\/code><\/li><li><code>$FileName$<\/code><\/li><li><code>$ProjectFileDir$\/phpJs<\/code>&nbsp;php scripts to generate<\/li><li><code>$ProjectFileDir$\/public\/js\/phpjs<\/code>&nbsp;output directory<\/li><li><code>[-p]<\/code>&nbsp;enable support of private properties and method. If is disabled, all private fields is converted as public<\/li><\/ul><\/li><li>Output paths to refresh:&nbsp;<code>$ProjectFileDir$\/public\/js\/phpjs<\/code><\/li><\/ul>\n\n\n\n<h2 class=\"wp-block-heading\">Example PHP Code<\/h2>\n\n\n\n<div class=\"wp-block-codemirror-blocks-code-block code-block\"><pre class=\"CodeMirror\" data-setting=\"{&quot;showPanel&quot;:true,&quot;languageLabel&quot;:&quot;language&quot;,&quot;fullScreenButton&quot;:true,&quot;copyButton&quot;:true,&quot;mode&quot;:&quot;php&quot;,&quot;mime&quot;:&quot;text\/x-php&quot;,&quot;theme&quot;:&quot;material&quot;,&quot;lineNumbers&quot;:true,&quot;styleActiveLine&quot;:true,&quot;lineWrapping&quot;:false,&quot;readOnly&quot;:true,&quot;fileName&quot;:&quot;&quot;,&quot;language&quot;:&quot;PHP&quot;,&quot;maxHeight&quot;:&quot;400px&quot;,&quot;modeName&quot;:&quot;php&quot;}\">interface FooInt{\n    function fooIntFunc1($a, $b = 5);\n}\n\nabstract class FooAbs implements FooInt\n{\n    abstract function fooAbsFunc1($a, $b);\n\n    function fooAbsFunc2($a, $b){\n        return $a + $b + 10;\n    }\n}\n\nclass FooParent extends FooAbs{\n    public $foo = 5;\n\n    public function __construct() {\n\t\t$this-&gt;foo=5;\n\t}\n\n\tfunction fooAbsFunc1($a, $b){\n\t\tparent::fooAbsFunc2(1,5);\n        return $a + $b;\n    }\n\n    function fooIntFunc1($a, $b = 5){\n        return $a + $b + 5;\n    }\n\n    public static function fooStatic(){\n    \treturn 10;\n\t}\n}\n\nclass FooChild extends FooParent\n{\n    public $foo = 6;\n\n    function fooIntFunc1($a, $b = 5){\n        return $a + $b;\n    }\n\n    function testParent(){\n        assert_($this-&gt;fooIntFunc1(5, 5), 10, 'testParent 1');\n        assert_(parent::fooIntFunc1(5, 5), 15, 'testParent 2');\n    }\n}\n\n$fooParent = new FooParent();\n$fooChild = new FooChild();\n\nassert_($fooParent instanceof FooParent, true, 'fooParent instanceof FooParent');\nassert_($fooParent instanceof FooInt, true, 'fooParent instanceof FooInt');\n\nassert_($fooChild instanceof FooChild, true, 'fooChild instanceof FooChild');\nassert_($fooChild instanceof FooParent, true, 'fooChild instanceof FooParent');\nassert_($fooChild instanceof FooAbs, true, 'fooChild instanceof FooAbs');\nassert_($fooChild instanceof FooInt, true, 'fooChild instanceof FooInt');\n\nassert_(FooChild::fooStatic(),10, &quot;FooChild::fooStatic()&quot;);\n\n$fooChild-&gt;testParent();<\/pre><\/div>\n\n\n\n<h2 class=\"wp-block-heading\">Above PHP Code is Converted to this JavaScript Code<\/h2>\n\n\n\n<div class=\"wp-block-codemirror-blocks-code-block code-block\"><pre class=\"CodeMirror\" data-setting=\"{&quot;showPanel&quot;:true,&quot;languageLabel&quot;:&quot;language&quot;,&quot;fullScreenButton&quot;:true,&quot;copyButton&quot;:true,&quot;mode&quot;:&quot;javascript&quot;,&quot;mime&quot;:&quot;text\/javascript&quot;,&quot;theme&quot;:&quot;material&quot;,&quot;lineNumbers&quot;:true,&quot;styleActiveLine&quot;:true,&quot;lineWrapping&quot;:false,&quot;readOnly&quot;:true,&quot;fileName&quot;:&quot;&quot;,&quot;language&quot;:&quot;JavaScript&quot;,&quot;maxHeight&quot;:&quot;400px&quot;,&quot;modeName&quot;:&quot;js&quot;}\">var FooInt = (function() {\n    function FooInt() {\n        window.__IS_INHERITANCE__ = false;\n        __INTERFACE_NEW__();\n    }\n    FooInt.prototype.fooIntFunc1 = function(a, b) {\n        __INTERFACE_FUNC__();\n    };\n    return FooInt;\n})();\nvar FooAbs = (function() {\n    function FooAbs() {\n        window.__IS_INHERITANCE__ = false;\n    }\n    __extends(FooAbs, null, arguments[1]);\n    FooAbs.prototype.__isAbstract__ = true;\n    FooAbs.prototype.fooAbsFunc1 = function(a, b) {\n        __ABSTRACT_FUNC__();\n    };\n    FooAbs.prototype.fooAbsFunc2 = function(a, b) {\n        return a + b + 10;\n    };\n    return FooAbs;\n})(null, [FooInt]);\nvar FooParent = (function(parent) {\n    function FooParent() {\n        var __isInheritance = __IS_INHERITANCE__;\n        window.__IS_INHERITANCE__ = true;\n        parent.call(this);\n        this.foo = 5;\n        if (__isInheritance == false) {\n            this.__construct();\n        }\n    }\n    __extends(FooParent, parent);\n    FooParent.prototype.__construct = function() {\n        this.foo = 5;\n    };\n    FooParent.prototype.fooAbsFunc1 = function(a, b) {\n        parent.prototype.fooAbsFunc2.call(this, 1, 5);\n        return a + b;\n    };\n    FooParent.prototype.fooIntFunc1 = function(a, b) {\n        if (typeof b == 'undefined') b = 5;\n        return a + b + 5;\n    };\n    FooParent.fooStatic = function() {\n        return 10;\n    };\n    return FooParent;\n})(FooAbs);\nvar FooChild = (function(parent) {\n    function FooChild() {\n        window.__IS_INHERITANCE__ = true;\n        parent.call(this);\n        this.foo = 6;\n    }\n    __extends(FooChild, parent);\n    FooChild.prototype.fooIntFunc1 = function(a, b) {\n        if (typeof b == 'undefined') b = 5;\n        return a + b;\n    };\n    FooChild.prototype.testParent = function() {\n        assert_(this.fooIntFunc1(5, 5), 10, 'testParent 1');\n        assert_(parent.prototype.fooIntFunc1.call(this, 5, 5), 15, 'testParent 2');\n    };\n    return FooChild;\n})(FooParent);\nvar fooParent;\nfooParent = new FooParent();\nvar fooChild;\nfooChild = new FooChild();\nassert_(fooParent instanceof FooParent, true, 'fooParent instanceof FooParent');\nassert_(fooParent instanceof FooInt, true, 'fooParent instanceof FooInt');\nassert_(fooChild instanceof FooChild, true, 'fooChild instanceof FooChild');\nassert_(fooChild instanceof FooParent, true, 'fooChild instanceof FooParent');\nassert_(fooChild instanceof FooAbs, true, 'fooChild instanceof FooAbs');\nassert_(fooChild instanceof FooInt, true, 'fooChild instanceof FooInt');\nassert_(FooChild.fooStatic(), 10, 'FooChild::fooStatic()');\nfooChild.testParent();<\/pre><\/div>\n","protected":false},"excerpt":{"rendered":"<p>Do you need a tool that can convert PHP code to JavaScript online? In this tutorial, I&#8217;ll guide you step-by-step on how to create a PHP to JavaScript Converter. You can easily download the complete source code of this project and try it yourself on your computer. Download Source Code Download Supported Functionality of PHP &#8230; <a title=\"PHP to JavaScript Converter Online Full Source Code\" class=\"read-more\" href=\"https:\/\/www.edopedia.com\/blog\/php-to-javascript-converter-online-full-source-code\/\" aria-label=\"Read more about PHP to JavaScript Converter Online Full Source Code\">Read more<\/a><\/p>\n","protected":false},"author":1,"featured_media":3337,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[112],"tags":[],"class_list":["post-2935","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-tutorials"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v26.2 - https:\/\/yoast.com\/wordpress\/plugins\/seo\/ -->\n<title>PHP to JavaScript Converter Online Full Source Code<\/title>\n<meta name=\"description\" content=\"Do you need a tool that can convert PHP code to JavaScript online? In this tutorial, I&#039;ll guide you step-by-step on how to create a PHP to JavaScript\" \/>\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.edopedia.com\/blog\/php-to-javascript-converter-online-full-source-code\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"PHP to JavaScript Converter Online Full Source Code\" \/>\n<meta property=\"og:description\" content=\"Do you need a tool that can convert PHP code to JavaScript online? In this tutorial, I&#039;ll guide you step-by-step on how to create a PHP to JavaScript\" \/>\n<meta property=\"og:url\" content=\"https:\/\/www.edopedia.com\/blog\/php-to-javascript-converter-online-full-source-code\/\" \/>\n<meta property=\"og:site_name\" content=\"Edopedia\" \/>\n<meta property=\"article:author\" content=\"trulyfurqan\" \/>\n<meta property=\"article:published_time\" content=\"2022-08-17T02:51:15+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2022-09-18T08:33:14+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/www.edopedia.com\/blog\/wp-content\/uploads\/2022\/08\/php_to_javascript.jpg\" \/>\n\t<meta property=\"og:image:width\" content=\"880\" \/>\n\t<meta property=\"og:image:height\" content=\"495\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/jpeg\" \/>\n<meta name=\"author\" content=\"Furqan\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"Furqan\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"4 minutes\" \/>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"PHP to JavaScript Converter Online Full Source Code","description":"Do you need a tool that can convert PHP code to JavaScript online? In this tutorial, I'll guide you step-by-step on how to create a PHP to JavaScript","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.edopedia.com\/blog\/php-to-javascript-converter-online-full-source-code\/","og_locale":"en_US","og_type":"article","og_title":"PHP to JavaScript Converter Online Full Source Code","og_description":"Do you need a tool that can convert PHP code to JavaScript online? In this tutorial, I'll guide you step-by-step on how to create a PHP to JavaScript","og_url":"https:\/\/www.edopedia.com\/blog\/php-to-javascript-converter-online-full-source-code\/","og_site_name":"Edopedia","article_author":"trulyfurqan","article_published_time":"2022-08-17T02:51:15+00:00","article_modified_time":"2022-09-18T08:33:14+00:00","og_image":[{"width":880,"height":495,"url":"https:\/\/www.edopedia.com\/blog\/wp-content\/uploads\/2022\/08\/php_to_javascript.jpg","type":"image\/jpeg"}],"author":"Furqan","twitter_card":"summary_large_image","twitter_misc":{"Written by":"Furqan","Est. reading time":"4 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/www.edopedia.com\/blog\/php-to-javascript-converter-online-full-source-code\/#article","isPartOf":{"@id":"https:\/\/www.edopedia.com\/blog\/php-to-javascript-converter-online-full-source-code\/"},"author":{"name":"Furqan","@id":"https:\/\/www.edopedia.com\/blog\/#\/schema\/person\/3951cb19e3aa56df09e408c98aa02339"},"headline":"PHP to JavaScript Converter Online Full Source Code","datePublished":"2022-08-17T02:51:15+00:00","dateModified":"2022-09-18T08:33:14+00:00","mainEntityOfPage":{"@id":"https:\/\/www.edopedia.com\/blog\/php-to-javascript-converter-online-full-source-code\/"},"wordCount":389,"commentCount":0,"publisher":{"@id":"https:\/\/www.edopedia.com\/blog\/#organization"},"image":{"@id":"https:\/\/www.edopedia.com\/blog\/php-to-javascript-converter-online-full-source-code\/#primaryimage"},"thumbnailUrl":"https:\/\/www.edopedia.com\/blog\/wp-content\/uploads\/2022\/08\/php_to_javascript.jpg","articleSection":["Tutorials"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/www.edopedia.com\/blog\/php-to-javascript-converter-online-full-source-code\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/www.edopedia.com\/blog\/php-to-javascript-converter-online-full-source-code\/","url":"https:\/\/www.edopedia.com\/blog\/php-to-javascript-converter-online-full-source-code\/","name":"PHP to JavaScript Converter Online Full Source Code","isPartOf":{"@id":"https:\/\/www.edopedia.com\/blog\/#website"},"primaryImageOfPage":{"@id":"https:\/\/www.edopedia.com\/blog\/php-to-javascript-converter-online-full-source-code\/#primaryimage"},"image":{"@id":"https:\/\/www.edopedia.com\/blog\/php-to-javascript-converter-online-full-source-code\/#primaryimage"},"thumbnailUrl":"https:\/\/www.edopedia.com\/blog\/wp-content\/uploads\/2022\/08\/php_to_javascript.jpg","datePublished":"2022-08-17T02:51:15+00:00","dateModified":"2022-09-18T08:33:14+00:00","description":"Do you need a tool that can convert PHP code to JavaScript online? In this tutorial, I'll guide you step-by-step on how to create a PHP to JavaScript","breadcrumb":{"@id":"https:\/\/www.edopedia.com\/blog\/php-to-javascript-converter-online-full-source-code\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/www.edopedia.com\/blog\/php-to-javascript-converter-online-full-source-code\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.edopedia.com\/blog\/php-to-javascript-converter-online-full-source-code\/#primaryimage","url":"https:\/\/www.edopedia.com\/blog\/wp-content\/uploads\/2022\/08\/php_to_javascript.jpg","contentUrl":"https:\/\/www.edopedia.com\/blog\/wp-content\/uploads\/2022\/08\/php_to_javascript.jpg","width":880,"height":495,"caption":"PHP to JavaScript Converter Online Full Source Code"},{"@type":"BreadcrumbList","@id":"https:\/\/www.edopedia.com\/blog\/php-to-javascript-converter-online-full-source-code\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/www.edopedia.com\/blog\/"},{"@type":"ListItem","position":2,"name":"PHP to JavaScript Converter Online Full Source Code"}]},{"@type":"WebSite","@id":"https:\/\/www.edopedia.com\/blog\/#website","url":"https:\/\/www.edopedia.com\/blog\/","name":"Edopedia","description":"Coding\/Programming Blog","publisher":{"@id":"https:\/\/www.edopedia.com\/blog\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/www.edopedia.com\/blog\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Organization","@id":"https:\/\/www.edopedia.com\/blog\/#organization","name":"Edopedia","url":"https:\/\/www.edopedia.com\/blog\/","logo":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.edopedia.com\/blog\/#\/schema\/logo\/image\/","url":"https:\/\/www.edopedia.com\/blog\/wp-content\/uploads\/2017\/10\/edopedia_icon_text_10.jpg","contentUrl":"https:\/\/www.edopedia.com\/blog\/wp-content\/uploads\/2017\/10\/edopedia_icon_text_10.jpg","width":400,"height":100,"caption":"Edopedia"},"image":{"@id":"https:\/\/www.edopedia.com\/blog\/#\/schema\/logo\/image\/"}},{"@type":"Person","@id":"https:\/\/www.edopedia.com\/blog\/#\/schema\/person\/3951cb19e3aa56df09e408c98aa02339","name":"Furqan","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.edopedia.com\/blog\/#\/schema\/person\/image\/","url":"https:\/\/secure.gravatar.com\/avatar\/e5e68aef3ad8f0b83d56f4953c512c8e57bd2e6dc64daec33b5d0495d9058f51?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/e5e68aef3ad8f0b83d56f4953c512c8e57bd2e6dc64daec33b5d0495d9058f51?s=96&d=mm&r=g","caption":"Furqan"},"description":"Well. I've been working for the past three years as a web designer and developer. I have successfully created websites for small to medium sized companies as part of my freelance career. During that time I've also completed my bachelor's in Information Technology.","sameAs":["http:\/\/www.edopedia.com\/blog\/","trulyfurqan"],"url":"https:\/\/www.edopedia.com\/blog\/author\/furqan\/"}]}},"_links":{"self":[{"href":"https:\/\/www.edopedia.com\/blog\/wp-json\/wp\/v2\/posts\/2935","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/www.edopedia.com\/blog\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/www.edopedia.com\/blog\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/www.edopedia.com\/blog\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/www.edopedia.com\/blog\/wp-json\/wp\/v2\/comments?post=2935"}],"version-history":[{"count":1,"href":"https:\/\/www.edopedia.com\/blog\/wp-json\/wp\/v2\/posts\/2935\/revisions"}],"predecessor-version":[{"id":3338,"href":"https:\/\/www.edopedia.com\/blog\/wp-json\/wp\/v2\/posts\/2935\/revisions\/3338"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/www.edopedia.com\/blog\/wp-json\/wp\/v2\/media\/3337"}],"wp:attachment":[{"href":"https:\/\/www.edopedia.com\/blog\/wp-json\/wp\/v2\/media?parent=2935"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/www.edopedia.com\/blog\/wp-json\/wp\/v2\/categories?post=2935"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/www.edopedia.com\/blog\/wp-json\/wp\/v2\/tags?post=2935"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}