{"id":1657,"date":"2016-05-15T17:32:50","date_gmt":"2016-05-15T17:32:50","guid":{"rendered":"http:\/\/box.jharaphula.com\/?p=1657"},"modified":"2022-07-23T13:04:56","modified_gmt":"2022-07-23T18:34:56","slug":"php-error-handling-techniques","status":"publish","type":"post","link":"https:\/\/jharaphula.com\/php-error-handling-techniques\/","title":{"rendered":"Techniques behind PHP Error Handling for Developer"},"content":{"rendered":"<p>In Software Designing &#8220;Zero Defects&#8221; is a Challenge. To achieve &#8220;Zero Defects&#8221; we depends upon many factors. Starting from &#8220;Developers Team&#8221; to &#8220;Quality Assurance&#8221; all are equally responsible for an error in production. To reduce error the primary role a developer&#8217;s play. I believe in the matter of Error or Exception handling a Experienced developer do better than a fresher. This is the cause we are hunting experience professionals. During an application development Coding Can any developer do but quality Coding is rare. To write an error free logic we required to understood &#8220;How Compiler works?&#8221; and what are the ways to handle exceptions. In this session let us share <a href=\"https:\/\/jharaphula.com\/category\/programming-solutions\/php-demo-apps\/\" target=\"_blank\" rel=\"noopener noreferrer\">PHP<\/a> Error Handling technique for Developer.<\/p>\n<h3>Practice to PHP Error Handling using Try Catch block<\/h3>\n<p>While implementing a logic do the Complex part (Which has more Chance for Exception) in-side Try .. Catch block. Try Catch block has 3 units Try, Catch and Finally. Each try block must at-least required one catch block. More than one catch blocks can be used to catch different classes of exceptions.<\/p>\n<p>Let us assume you are going to insert a record to the database. In this case after created the SQL query dynamically, while executing that query do that inside the try block. During run-time if connection will break with Server during database interaction the execution will jump to Catch block. In Catch block you can know the Error &amp; handle the Exception. Finally block execute at any case. If there is a error in try block then after Catch block finally block executes. Similarly if try block executes successfully then also Finally block executes. It is a best place for Close Database Connection.<\/p>\n<p><strong>Example of Try .. Catch<\/strong><\/p>\n<pre class=\"brush: php; title: ; notranslate\" title=\"\">try {\r\nthrow new Exception('error');\r\n}\r\ncatch(Exception $e) {\r\necho &quot;There is an Error.&quot;;\r\nthrow $e;\r\n}\r\nfinally {\r\n\/\/ Code in Finally block Overrides the exception\r\nreturn &quot;\\nException erased&quot;;\r\n}<\/pre>\n<p>Some Errors occurs in run-time for those errors Try Catch is the best approach to deal. Let&#8217;s talk an another example. While Sending mail execute the Send() method in-side Try Catch block. In run-time in-case the SMTP Server is down. System will show the real error message &#8220;Mail Server is Down. Please try later&#8221;.<\/p>\n<h3>Use PHP die() method<\/h3>\n<p>Die() is a simple and effective PHP Error Handling method. When ever there is a possibility of an error use die() method. Generally die() method is useful for Conditional Checking. For an example if you are going to upload a file here while you are checking &#8220;is file exists?&#8221; using <code>if(!file_exists(\"\/tmp\/logo.png\"))<\/code> use die() method to handle possible errors. Look at the example below.<\/p>\n<pre class=\"brush: php; title: ; notranslate\" title=\"\">&lt;?php\r\nif(!file_exists(&quot;\/tmp\/logo.png&quot;)) {\r\ndie(&quot;File is not exists Physically.&quot;);\r\n} else {\r\n$file = fopen(&quot;\/tmp\/logo.png&quot;,&quot;r&quot;);\r\nprint &quot;Able to Open the File Successfully.&quot;;\r\n}\r\n?&gt;<\/pre>\n<p>In the above example before Opening the file I am checking is there any file exists to open. If there is no such files using die() method with message &#8220;File is not exists Physically.&#8221;. Die() method handles error as well as Clears memory whole. Kills unwanted process and helps to improve performance.<\/p>\n<h3>Create Custom Error Handler<\/h3>\n<p>Using PHP it is very easy to Create Custom Error handlers. The Syntax is as below.<\/p>\n<p><code>error_function(error_level, error_message, error_file, error_line, error_context)<\/code><\/p>\n<p>While Creating a Custom Error function keep remember that the first two parameters are mandatory. The rest 3 (error_file, error_line and error_context) are optional. Error_level must be a value in number. Refer the below table to know more about the error_level values.<\/p>\n<table>\n<tr>\n<th>Value<\/th>\n<th>Constants<\/th>\n<th>Description<\/th>\n<\/tr>\n<tr>\n<td>1<\/td>\n<td>.E_ERROR<\/td>\n<td>Error level with value 1 indicates run-time Fatal errors. Execution of the script is halted.<\/td>\n<\/tr>\n<tr>\n<td>2<\/td>\n<td>E_WARNING<\/td>\n<td>Error level with value 2 indicated run-time Non-fatal errors. Compare to Error level 1 here execution of the script is not halted.<\/td>\n<\/tr>\n<tr>\n<td>4<\/td>\n<td>E_PARSE<\/td>\n<td>Error level with value 4 indicates Compile-time parse errors.<\/td>\n<\/tr>\n<tr>\n<td>8<\/td>\n<td>E_NOTICE<\/td>\n<td>Value 8 is for run-time notices. During execution the script found something that might be an error, but could also happen when running a script normally.<\/td>\n<\/tr>\n<tr>\n<td>16<\/td>\n<td>E_CORE_ERROR<\/td>\n<td>Error level with value 16 indicates Fatal errors. Fatal Errors generally occur during PHP initial start-up.<\/td>\n<\/tr>\n<tr>\n<td>32<\/td>\n<td>E_CORE_WARNING<\/td>\n<td>The error level value 32 speaks non-fatal run-time errors. This also occurs during PHP initial start-up.<\/td>\n<\/tr>\n<tr>\n<td>256<\/td>\n<td>E_USER_ERROR<\/td>\n<td>Fatal user-generated error. This is like an E_ERROR set by the programmer using the PHP function trigger_error().<\/td>\n<\/tr>\n<tr>\n<td>512<\/td>\n<td>E_USER_WARNING<\/td>\n<td>Error level with value 512 indicates Non-fatal user generated warning. It is similar to E_WARNING set by the developer using the PHP trigger_error() function.<\/td>\n<\/tr>\n<tr>\n<td>1024<\/td>\n<td>E_USER_NOTICE<\/td>\n<td>The error code with 1024 value speaks user-generated notice. This is like an E_NOTICE set by the developer using the PHP function trigger_error().<\/td>\n<\/tr>\n<tr>\n<td>4096<\/td>\n<td>E_RECOVERABLE_ERROR<\/td>\n<td>This error level says Catchable fatal error. It is like an E_ERROR but can be caught by a user defined error handlers.<\/td>\n<\/tr>\n<tr>\n<td>8191<\/td>\n<td>E_ALL<\/td>\n<td>The error level value 8191 indicates all errors and warnings.<\/td>\n<\/tr>\n<\/table>\n<p>All the listed error levels you can use with PHP in-built function &#8220;error_reporting()&#8221;. The Syntax is as &#8220;error_reporting ([int $level])&#8221;.<\/p>\n<p>While defining a Custom error handler function you need to use PHP in-built library set_error_handler() function.<\/p>\n<h3>Trigger an Error<\/h3>\n<p>In Script where user inputs data use trigger_error() function to handle illegal inputs. Trigger error can be use for Server side validations.<\/p>\n<p><strong>Example of trigger_error<\/strong><\/p>\n<pre class=\"brush: php; title: ; notranslate\" title=\"\">&lt;?php\r\n$myVal = 3;\r\nif ($myVal &gt; 2) {\r\ntrigger_error(&quot;Value must be 2 or below&quot;);\r\n}\r\n?&gt;<\/pre>\n<h3>Exception Classes<\/h3>\n<p>While Creating a Custom Error there are following functions which can be used from Exception class.<\/p>\n<table>\n<tr>\n<th>Function<\/th>\n<th>Description<\/th>\n<\/tr>\n<tr>\n<td>getMessage()<\/td>\n<td>This function shows exact message why error occurs. What are the possible factors generate the error.<\/td>\n<\/tr>\n<tr>\n<td>getCode()<\/td>\n<td>Using getCode() we can detect the block of Code showing Error.<\/td>\n<\/tr>\n<tr>\n<td>getFile()<\/td>\n<td>Shows Source File name.<\/td>\n<\/tr>\n<tr>\n<td>getLine()<\/td>\n<td>This function shows in which line error occurred. It saves programmer time to locate error.<\/td>\n<\/tr>\n<tr>\n<td>getTrace()<\/td>\n<td>It&#8217;s an array of the back-trace()<\/td>\n<\/tr>\n<tr>\n<td>getTraceAsString()<\/td>\n<td>Presents Formatted string of Trace.<\/td>\n<\/tr>\n<\/table>\n<p><strong>Referrals:<\/strong><\/p>\n<p><a href=\"http:\/\/www.tutorialspoint.com\/php\/php_error_handling.htm\" target=\"_blank\" rel=\"noopener noreferrer nofollow\">http:\/\/www.tutorialspoint.com\/php\/php_error_handling.htm<\/a><br \/>\n<a href=\"http:\/\/www.w3schools.com\/php\/php_error.asp\" target=\"_blank\" rel=\"nofollow noopener noreferrer\">http:\/\/www.w3schools.com\/php\/php_error.asp<\/a><\/p>\n","protected":false},"excerpt":{"rendered":"<p>In Software Designing &ldquo;Zero Defects&rdquo; is a Challenge. To achieve &ldquo;Zero Defects&rdquo; we depends upon many factors. Starting from &ldquo;Developers Team&rdquo; to &ldquo;Quality Assurance&rdquo; all&#8230;<\/p>\n","protected":false},"author":3,"featured_media":1851,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[69],"tags":[39793,38683,39792,39786,39530],"class_list":["post-1657","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-php-demo-apps","tag-error-handling-for-developer","tag-firebug","tag-php-error-handling","tag-php-file-handling","tag-php-string-functions"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v26.6 - https:\/\/yoast.com\/wordpress\/plugins\/seo\/ -->\n<title>Techniques behind PHP Error Handling for Developer<\/title>\n<meta name=\"description\" content=\"To design error free application we required to know How Compiler works &amp; Exception handling tricks. In this session read PHP Error handling Techniques.\" \/>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/jharaphula.com\/php-error-handling-techniques\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Techniques behind PHP Error Handling for Developer\" \/>\n<meta property=\"og:description\" content=\"To design error free application we required to know How Compiler works &amp; Exception handling tricks. In this session read PHP Error handling Techniques.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/jharaphula.com\/php-error-handling-techniques\/\" \/>\n<meta property=\"og:site_name\" content=\"OneStop Shop\" \/>\n<meta property=\"article:publisher\" content=\"https:\/\/www.facebook.com\/tajinweb\" \/>\n<meta property=\"article:published_time\" content=\"2016-05-15T17:32:50+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2022-07-23T18:34:56+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/jharaphula.com\/wp-content\/uploads\/2016\/05\/php-program.png\" \/>\n\t<meta property=\"og:image:width\" content=\"750\" \/>\n\t<meta property=\"og:image:height\" content=\"428\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/png\" \/>\n<meta name=\"author\" content=\"Nibedita Panda\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"Nibedita Panda\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"5 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\/\/jharaphula.com\/php-error-handling-techniques\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/jharaphula.com\/php-error-handling-techniques\/\"},\"author\":{\"name\":\"Nibedita Panda\",\"@id\":\"https:\/\/jharaphula.com\/#\/schema\/person\/129213d91cdcccd8f9396797c56e7dc3\"},\"headline\":\"Techniques behind PHP Error Handling for Developer\",\"datePublished\":\"2016-05-15T17:32:50+00:00\",\"dateModified\":\"2022-07-23T18:34:56+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/jharaphula.com\/php-error-handling-techniques\/\"},\"wordCount\":1018,\"commentCount\":0,\"publisher\":{\"@id\":\"https:\/\/jharaphula.com\/#organization\"},\"image\":{\"@id\":\"https:\/\/jharaphula.com\/php-error-handling-techniques\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/jharaphula.com\/wp-content\/uploads\/2016\/05\/php-program.png\",\"keywords\":[\"Error Handling for Developer\",\"Firebug\",\"PHP Error Handling\",\"PHP File Handling\",\"PHP String Functions\"],\"articleSection\":[\"Learn PHP with Examples\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\/\/jharaphula.com\/php-error-handling-techniques\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/jharaphula.com\/php-error-handling-techniques\/\",\"url\":\"https:\/\/jharaphula.com\/php-error-handling-techniques\/\",\"name\":\"Techniques behind PHP Error Handling for Developer\",\"isPartOf\":{\"@id\":\"https:\/\/jharaphula.com\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\/\/jharaphula.com\/php-error-handling-techniques\/#primaryimage\"},\"image\":{\"@id\":\"https:\/\/jharaphula.com\/php-error-handling-techniques\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/jharaphula.com\/wp-content\/uploads\/2016\/05\/php-program.png\",\"datePublished\":\"2016-05-15T17:32:50+00:00\",\"dateModified\":\"2022-07-23T18:34:56+00:00\",\"description\":\"To design error free application we required to know How Compiler works & Exception handling tricks. In this session read PHP Error handling Techniques.\",\"breadcrumb\":{\"@id\":\"https:\/\/jharaphula.com\/php-error-handling-techniques\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/jharaphula.com\/php-error-handling-techniques\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/jharaphula.com\/php-error-handling-techniques\/#primaryimage\",\"url\":\"https:\/\/jharaphula.com\/wp-content\/uploads\/2016\/05\/php-program.png\",\"contentUrl\":\"https:\/\/jharaphula.com\/wp-content\/uploads\/2016\/05\/php-program.png\",\"width\":750,\"height\":428,\"caption\":\"Techniques behind PHP Error Handling for Developer\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/jharaphula.com\/php-error-handling-techniques\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/jharaphula.com\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Techniques behind PHP Error Handling for Developer\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\/\/jharaphula.com\/#website\",\"url\":\"https:\/\/jharaphula.com\/\",\"name\":\"OneStop Shop\",\"description\":\"Blog for SEO Guest Posting, Digital Marketing or Home Remedies\",\"publisher\":{\"@id\":\"https:\/\/jharaphula.com\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\/\/jharaphula.com\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Organization\",\"@id\":\"https:\/\/jharaphula.com\/#organization\",\"name\":\"OneStop Shop\",\"url\":\"https:\/\/jharaphula.com\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/jharaphula.com\/#\/schema\/logo\/image\/\",\"url\":\"https:\/\/jharaphula.com\/wp-content\/uploads\/2023\/10\/logo.jpg\",\"contentUrl\":\"https:\/\/jharaphula.com\/wp-content\/uploads\/2023\/10\/logo.jpg\",\"width\":409,\"height\":91,\"caption\":\"OneStop Shop\"},\"image\":{\"@id\":\"https:\/\/jharaphula.com\/#\/schema\/logo\/image\/\"},\"sameAs\":[\"https:\/\/www.facebook.com\/tajinweb\",\"https:\/\/x.com\/guestpostingopp\"]},{\"@type\":\"Person\",\"@id\":\"https:\/\/jharaphula.com\/#\/schema\/person\/129213d91cdcccd8f9396797c56e7dc3\",\"name\":\"Nibedita Panda\",\"description\":\"Mrs. Nibedita is a housewife. She is passionate about to write various information's depending upon the growing market trend. In our unit she takes care of many major releases. Her contribution is most valued for us.\",\"sameAs\":[\"https:\/\/jharaphula.com\"],\"url\":\"https:\/\/jharaphula.com\/author\/nibeditap\/\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"Techniques behind PHP Error Handling for Developer","description":"To design error free application we required to know How Compiler works & Exception handling tricks. In this session read PHP Error handling Techniques.","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:\/\/jharaphula.com\/php-error-handling-techniques\/","og_locale":"en_US","og_type":"article","og_title":"Techniques behind PHP Error Handling for Developer","og_description":"To design error free application we required to know How Compiler works & Exception handling tricks. In this session read PHP Error handling Techniques.","og_url":"https:\/\/jharaphula.com\/php-error-handling-techniques\/","og_site_name":"OneStop Shop","article_publisher":"https:\/\/www.facebook.com\/tajinweb","article_published_time":"2016-05-15T17:32:50+00:00","article_modified_time":"2022-07-23T18:34:56+00:00","og_image":[{"width":750,"height":428,"url":"https:\/\/jharaphula.com\/wp-content\/uploads\/2016\/05\/php-program.png","type":"image\/png"}],"author":"Nibedita Panda","twitter_misc":{"Written by":"Nibedita Panda","Est. reading time":"5 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/jharaphula.com\/php-error-handling-techniques\/#article","isPartOf":{"@id":"https:\/\/jharaphula.com\/php-error-handling-techniques\/"},"author":{"name":"Nibedita Panda","@id":"https:\/\/jharaphula.com\/#\/schema\/person\/129213d91cdcccd8f9396797c56e7dc3"},"headline":"Techniques behind PHP Error Handling for Developer","datePublished":"2016-05-15T17:32:50+00:00","dateModified":"2022-07-23T18:34:56+00:00","mainEntityOfPage":{"@id":"https:\/\/jharaphula.com\/php-error-handling-techniques\/"},"wordCount":1018,"commentCount":0,"publisher":{"@id":"https:\/\/jharaphula.com\/#organization"},"image":{"@id":"https:\/\/jharaphula.com\/php-error-handling-techniques\/#primaryimage"},"thumbnailUrl":"https:\/\/jharaphula.com\/wp-content\/uploads\/2016\/05\/php-program.png","keywords":["Error Handling for Developer","Firebug","PHP Error Handling","PHP File Handling","PHP String Functions"],"articleSection":["Learn PHP with Examples"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/jharaphula.com\/php-error-handling-techniques\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/jharaphula.com\/php-error-handling-techniques\/","url":"https:\/\/jharaphula.com\/php-error-handling-techniques\/","name":"Techniques behind PHP Error Handling for Developer","isPartOf":{"@id":"https:\/\/jharaphula.com\/#website"},"primaryImageOfPage":{"@id":"https:\/\/jharaphula.com\/php-error-handling-techniques\/#primaryimage"},"image":{"@id":"https:\/\/jharaphula.com\/php-error-handling-techniques\/#primaryimage"},"thumbnailUrl":"https:\/\/jharaphula.com\/wp-content\/uploads\/2016\/05\/php-program.png","datePublished":"2016-05-15T17:32:50+00:00","dateModified":"2022-07-23T18:34:56+00:00","description":"To design error free application we required to know How Compiler works & Exception handling tricks. In this session read PHP Error handling Techniques.","breadcrumb":{"@id":"https:\/\/jharaphula.com\/php-error-handling-techniques\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/jharaphula.com\/php-error-handling-techniques\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/jharaphula.com\/php-error-handling-techniques\/#primaryimage","url":"https:\/\/jharaphula.com\/wp-content\/uploads\/2016\/05\/php-program.png","contentUrl":"https:\/\/jharaphula.com\/wp-content\/uploads\/2016\/05\/php-program.png","width":750,"height":428,"caption":"Techniques behind PHP Error Handling for Developer"},{"@type":"BreadcrumbList","@id":"https:\/\/jharaphula.com\/php-error-handling-techniques\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/jharaphula.com\/"},{"@type":"ListItem","position":2,"name":"Techniques behind PHP Error Handling for Developer"}]},{"@type":"WebSite","@id":"https:\/\/jharaphula.com\/#website","url":"https:\/\/jharaphula.com\/","name":"OneStop Shop","description":"Blog for SEO Guest Posting, Digital Marketing or Home Remedies","publisher":{"@id":"https:\/\/jharaphula.com\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/jharaphula.com\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Organization","@id":"https:\/\/jharaphula.com\/#organization","name":"OneStop Shop","url":"https:\/\/jharaphula.com\/","logo":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/jharaphula.com\/#\/schema\/logo\/image\/","url":"https:\/\/jharaphula.com\/wp-content\/uploads\/2023\/10\/logo.jpg","contentUrl":"https:\/\/jharaphula.com\/wp-content\/uploads\/2023\/10\/logo.jpg","width":409,"height":91,"caption":"OneStop Shop"},"image":{"@id":"https:\/\/jharaphula.com\/#\/schema\/logo\/image\/"},"sameAs":["https:\/\/www.facebook.com\/tajinweb","https:\/\/x.com\/guestpostingopp"]},{"@type":"Person","@id":"https:\/\/jharaphula.com\/#\/schema\/person\/129213d91cdcccd8f9396797c56e7dc3","name":"Nibedita Panda","description":"Mrs. Nibedita is a housewife. She is passionate about to write various information's depending upon the growing market trend. In our unit she takes care of many major releases. Her contribution is most valued for us.","sameAs":["https:\/\/jharaphula.com"],"url":"https:\/\/jharaphula.com\/author\/nibeditap\/"}]}},"_links":{"self":[{"href":"https:\/\/jharaphula.com\/wp-json\/wp\/v2\/posts\/1657","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/jharaphula.com\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/jharaphula.com\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/jharaphula.com\/wp-json\/wp\/v2\/users\/3"}],"replies":[{"embeddable":true,"href":"https:\/\/jharaphula.com\/wp-json\/wp\/v2\/comments?post=1657"}],"version-history":[{"count":0,"href":"https:\/\/jharaphula.com\/wp-json\/wp\/v2\/posts\/1657\/revisions"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/jharaphula.com\/wp-json\/wp\/v2\/media\/1851"}],"wp:attachment":[{"href":"https:\/\/jharaphula.com\/wp-json\/wp\/v2\/media?parent=1657"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/jharaphula.com\/wp-json\/wp\/v2\/categories?post=1657"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/jharaphula.com\/wp-json\/wp\/v2\/tags?post=1657"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}