create account

PHP Tutorial #24 Filters Part 2 " FILTER_SANITIZE " by alexendre-maxim

View this thread on: hive.blogpeakd.comecency.com
· @alexendre-maxim · (edited)
$21.58
PHP Tutorial #24 Filters Part 2 " FILTER_SANITIZE "
<html>
<p><img src="https://cdn.steemitimages.com/DQmR2CdPgUAaypJwbE8QhahqDxrabLTM5fHq8ZjTPcVr2fg/bbva-open4u-herramientas-basicas-desarrolladores-php_1.jpg" width="2122" height="1415"/></p>
<p><a href="https://cdn.steemitimages.com/DQmR2CdPgUAaypJwbE8QhahqDxrabLTM5fHq8ZjTPcVr2fg/bbva-open4u-herramientas-basicas-desarrolladores-php_1.jpg">Image Source</a></p>
<h2>Repository</h2>
<p><a href="https://github.com/php/php-src">https://github.com/php/php-src</a>&nbsp;</p>
<h2>What Will I Learn?</h2>
<ul>
  <li>You will learn the " FILTER_SANITIZE_EMAIL " and " FILTER_SANITIZE_ENCODED ".</li>
  <li>You will learn the " FILTER_SANITIZE_QUOTES " and " FILTER_SANITIZE_FLOAT ".</li>
  <li>You will learn the " FILTER_SANITIZE_INT " and " FILTER_SANITIZE_SPECIAL_CHARS &nbsp;".</li>
  <li>You will learn the " FILTER_SANITIZE_STRING " and " FILTER_SANITIZE_URL ".</li>
</ul>
<h2>Requirements</h2>
<h5>System Requirements:</h5>
<ul>
  <li>Server support PHP , <a href="https://www.apachefriends.org/fr/download.html">Xampp</a> or <a href="http://www.wampserver.com/">Wamp</a> for example</li>
  <li>An IDE like <a href="https://www.sublimetext.com/download">Sublime text</a>.</li>
  <li>Browser (<a href="https://www.google.com/intl/fr_ALL/chrome/">Chrome</a> for example)&nbsp;&nbsp;</li>
</ul>
<h5>OS Support for PHP</h5>
<ul>
  <li>Windows</li>
  <li>macOS</li>
  <li>Linux</li>
</ul>
<h4>Required Knowledge</h4>
<ul>
  <li>HTML language</li>
  <li>CSS language</li>
</ul>
<h2>Difficulty</h2>
<ul>
  <li>&nbsp;Intermediate&nbsp;</li>
</ul>
<h2>Description</h2>
<p>In this tutorial we will learn the second part of "filters", in the previous tutorial we have learned the "<code>FILTER_VALIDATE</code>", today we will take the "<code>FILTER_SANITIZE</code>".</p>
<p>The idea is that the "<code>FILTER_VALIDATE</code>" will test and will validate if the value entered by the user is suitable and is correct with the type of the column in the database for example or not.</p>
<p>But the "<code>FILTER_SANITIZE</code>" will clean or delete all the characters that don't belong to this type, and will return the original caracters of this type.</p>
<p>We need before validation to do the impossible and to minimize the faults of the user, and for that we will use before any validate the sanitize.</p>
<p>PHP offers 11 types of filtering, we will see 8 important types with their flags and use.</p>
<h3>FILTER_SANITIZE_EMAIL , QUOTES and URL&nbsp;</h3>
<p>Before using the validation filters as we have already said, we must minimize the rate of mistakes by the use of cleaning filters, for that we have the " <code>FILTER_SANITIZE_EMAIL</code> " that goes Deletes all the characters except the letters, numbers, and these characters : <code>[! # $% &amp; '* + - =? ^ _ `{|} ~ @. []] </code>, to return a correct email.</p>
<p>And we also have the " <code>FILTER_SANITIZE_URL</code> " to delete all characters except the letters, digits, and special characters : <code>[$ -_. +! * '(), {} | \\ ^ ~ [] `&lt;&gt; #%"; /? : @ &amp; =]</code> to clean the URL.</p>
<p>Finally we have the " <code>FILTER_SANITIZE_MAGIC_QUOTES</code> ", which will apply the rules of the " <code>addslaches()</code> " function, to add backslaches before the characters :&nbsp;</p>
<p>Single quotation marks (')</p>
<p>Double quotation marks (")</p>
<p><img src="https://cdn.steemitimages.com/DQmWxi1kzk2JuKrrGEywvTNQnLLdiauVh31WMbwMNAx9z9E/1.jpg" width="939" height="540"/></p>
<h3>FILTER_SANITIZE_FLOAT and INT&nbsp;</h3>
<p>We have learned the previous tutorial that we can easly validate the value entered by the user if it's a correct value or not , or it's a number or not, with both possibilties "Float and Int", today is in this tutorial, we will learn how to sanitize the value entered by the user to be a correct number, using " <code>FILTER_SANITIZE_NUMBER_FLOAT</code> " and these flags</p>
<p>FILTER_FLAG_ALLOW_FRACTION</p>
<p>FILTER_FLAG_ALLOW_THOUSAND</p>
<p>FILTER_FLAG_ALLOW_SCIENTIFIC</p>
<p>And also the " <code>FILTER_SANITIZE_NUMBER_INT</code> " .</p>
<p><img src="https://cdn.steemitimages.com/DQmYF5ZiYC3rxUmjQ3jRCWmmDgiaMsp5aLpvrL9EEsYAZER/capture-20190322-020545.png" width="1044" height="391"/></p>
<h3>FILTER_SANITIZE_ENCODED, STRING and &nbsp;FILTER_SANITIZE_SPECIAL_CHARS&nbsp;</h3>
<p>For the security of your site or database, you must use the " <code>FILTER_SANITIZE_ENCODED</code> " or " <code>FILTER_SANITIZE_SPECIAL_CHARS</code> " to transform the HTML tags and codes, the spaces and all to HTML entities and apply the encoding for these characters.</p>
<p>For more security you can use the " <code>FILTER_SANITIZE_STRING</code> " that will just return the text, if you pass a code javascript or HTML code, it will filter it and just return the text.</p>
<p>They have several common flags:</p>
<p>FILTER_FLAG_NO_ENCODE_QUOTES</p>
<p>FILTER_FLAG_STRIP_LOW</p>
<p>FILTER_FLAG_STRIP_HIGH</p>
<p>FILTER_FLAG_STRIP_BACKTICK</p>
<p>FILTER_FLAG_ENCODE_LOW</p>
<p>FILTER_FLAG_ENCODE_HIGH</p>
<p>FILTER_FLAG_ENCODE_AMP</p>
<p><img src="https://cdn.steemitimages.com/DQmW179AnCDG4MyzHdJRP9Lu4HmNYd34EqSY1gtvFueNmnn/3.jpg" width="977" height="554"/></p>
<p>The effect of the special characters will be in the source code&nbsp;</p>
<p><img src="https://cdn.steemitimages.com/DQmbNKx6fv59Ki3BCg7jXtJbCQrrdvyXxXUote8iQboR1S2/capture-20190321-161927.png" width="917" height="32"/></p>
<h2>Video Tutorial</h2>
<p>https://www.youtube.com/watch?v=q96dlRLhm6E&amp;feature=youtu.be</p>
<h2>Curriculum</h2>
<ul>
  <li><a href="https://steemit.com/utopian-io/@alexendre-maxim/php-tutorial-11-string-methods-addslaches-chr-chop-and-chunksplite">PHP Tutorial #11 String Methods ( Addslaches, Chr, Chop and Chunk_splite )</a></li>
  <li><a href="https://steemit.com/utopian-io/@alexendre-maxim/php-tutorial-12-string-methods-bin2hex-countchars-explode-and-hex2bin">PHP Tutorial #12 String Methods ( Bin2Hex, Count_Chars, Explode and Hex2Bin )</a></li>
  <li><a href="https://steemit.com/utopian-io/@alexendre-maxim/php-tutorial-13-string-methods-implode-join-lcfirst-ltrim-and-fprintf">PHP Tutorial #13 String Methods (Implode, Join, Lcfirst, Ltrim and Fprintf )</a></li>
  <li><a href="https://steemit.com/utopian-io/@alexendre-maxim/php-tutorial-14-string-methods-md5file-md5-nl2br-and-addcslaches">PHP Tutorial #14 String Methods (Md5_File, Md5, Nl2br and Addcslaches )</a></li>
  <li><a href="https://steemit.com/utopian-io/@alexendre-maxim/php-tutorial-15-string-methods-numberformat-ord-parsestr-print-and-printf">PHP Tutorial #15 String Methods (Number_Format, Ord, Parse_Str, Print and Printf )</a></li>
  <li><a href="https://steemit.com/utopian-io/@alexendre-maxim/php-tutorial-16-string-methods-quotemeta-rtrim-sha1file-and-sha1">PHP Tutorial #16 String Methods (QuoteMeta, Rtrim , Sha1_file and Sha1 )</a></li>
  <li><a href="https://steemit.com/utopian-io/@alexendre-maxim/php-tutorial-17-mathematical-methods-abs-acos-acosh-and-asin">PHP Tutorial #17 Mathematical Methods (Abs, Acos , Acosh and Asin )</a></li>
  <li><a href="https://steemit.com/utopian-io/@alexendre-maxim/php-tutorial-18-get-and-post-methods-and-usdserver-variables">PHP Tutorial #18 ( GET and POST ) Methods and $_SERVER Variables</a></li>
  <li><a href="https://steemit.com/utopian-io/@alexendre-maxim/php-tutorial-19-include-and-require-globals-variable-request-and-usdserver-variables">PHP Tutorial #19 ( Include and Require ) , Globals Variable, Request and $_SERVER Variables</a></li>
  <li><a href="https://steemit.com/utopian-io/@alexendre-maxim/php-tutorial-20-the-cookie-how-to-create-modify-and-delete-a-cookie">PHP Tutorial #20 The Cookie How To Create , Modify And Delete A Cookie</a></li>
  <li><a href="https://steemit.com/utopian-io/@alexendre-maxim/php-tutorial-21-the-session-how-to-create-modify-and-delete-a-session">PHP Tutorial #21 The Session How To Create , Modify And Delete A Session</a></li>
  <li><a href="https://steemit.com/utopian-io/@alexendre-maxim/php-tutorial-22-the-outputbuffer-and-how-to-control-it">PHP Tutorial #22 The Output_Buffer And How To Control It</a></li>
  <li>&nbsp;<a href="https://steemit.com/utopian-io/@alexendre-maxim/php-tutorial-23-filters-part-1-filtervalidate">PHP Tutorial #23 Filters Part 1 " FILTER_VALIDATE "</a></li>
</ul>
<h2>Proof of Work Done</h2>
<p>https://github.com/alexendre-maxim/PHP-Tutorial/blob/master/sanitize.html</p>
<p>https://github.com/alexendre-maxim/PHP-Tutorial/blob/master/sanitize.php</p>
</html>
πŸ‘  , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , and 92 others
properties (23)
authoralexendre-maxim
permlinkphp-tutorial-24-filters-part-2-filtersanitize
categoryutopian-io
json_metadata{"tags":["utopian-io","video-tutorials","video","programming"],"image":["https://cdn.steemitimages.com/DQmR2CdPgUAaypJwbE8QhahqDxrabLTM5fHq8ZjTPcVr2fg/bbva-open4u-herramientas-basicas-desarrolladores-php_1.jpg","https://cdn.steemitimages.com/DQmWxi1kzk2JuKrrGEywvTNQnLLdiauVh31WMbwMNAx9z9E/1.jpg","https://cdn.steemitimages.com/DQmYF5ZiYC3rxUmjQ3jRCWmmDgiaMsp5aLpvrL9EEsYAZER/capture-20190322-020545.png","https://cdn.steemitimages.com/DQmW179AnCDG4MyzHdJRP9Lu4HmNYd34EqSY1gtvFueNmnn/3.jpg","https://cdn.steemitimages.com/DQmbNKx6fv59Ki3BCg7jXtJbCQrrdvyXxXUote8iQboR1S2/capture-20190321-161927.png","https://img.youtube.com/vi/q96dlRLhm6E/0.jpg"],"links":["https://cdn.steemitimages.com/DQmR2CdPgUAaypJwbE8QhahqDxrabLTM5fHq8ZjTPcVr2fg/bbva-open4u-herramientas-basicas-desarrolladores-php_1.jpg","https://github.com/php/php-src","https://www.apachefriends.org/fr/download.html","http://www.wampserver.com/","https://www.sublimetext.com/download","https://www.google.com/intl/fr_ALL/chrome/","https://www.youtube.com/watch?v=q96dlRLhm6E&feature=youtu.be","https://steemit.com/utopian-io/@alexendre-maxim/php-tutorial-11-string-methods-addslaches-chr-chop-and-chunksplite","https://steemit.com/utopian-io/@alexendre-maxim/php-tutorial-12-string-methods-bin2hex-countchars-explode-and-hex2bin","https://steemit.com/utopian-io/@alexendre-maxim/php-tutorial-13-string-methods-implode-join-lcfirst-ltrim-and-fprintf","https://steemit.com/utopian-io/@alexendre-maxim/php-tutorial-14-string-methods-md5file-md5-nl2br-and-addcslaches","https://steemit.com/utopian-io/@alexendre-maxim/php-tutorial-15-string-methods-numberformat-ord-parsestr-print-and-printf","https://steemit.com/utopian-io/@alexendre-maxim/php-tutorial-16-string-methods-quotemeta-rtrim-sha1file-and-sha1","https://steemit.com/utopian-io/@alexendre-maxim/php-tutorial-17-mathematical-methods-abs-acos-acosh-and-asin","https://steemit.com/utopian-io/@alexendre-maxim/php-tutorial-18-get-and-post-methods-and-usdserver-variables","https://steemit.com/utopian-io/@alexendre-maxim/php-tutorial-19-include-and-require-globals-variable-request-and-usdserver-variables","https://steemit.com/utopian-io/@alexendre-maxim/php-tutorial-20-the-cookie-how-to-create-modify-and-delete-a-cookie","https://steemit.com/utopian-io/@alexendre-maxim/php-tutorial-21-the-session-how-to-create-modify-and-delete-a-session","https://steemit.com/utopian-io/@alexendre-maxim/php-tutorial-22-the-outputbuffer-and-how-to-control-it","https://steemit.com/utopian-io/@alexendre-maxim/php-tutorial-23-filters-part-1-filtervalidate","https://github.com/alexendre-maxim/PHP-Tutorial/blob/master/sanitize.html","https://github.com/alexendre-maxim/PHP-Tutorial/blob/master/sanitize.php"],"app":"steemit/0.1","format":"html"}
created2019-03-22 00:50:21
last_update2019-03-22 01:08:57
depth0
children9
last_payout2019-03-29 00:50:21
cashout_time1969-12-31 23:59:59
total_payout_value16.444 HBD
curator_payout_value5.132 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length8,445
author_reputation18,071,828,077,109
root_title"PHP Tutorial #24 Filters Part 2 " FILTER_SANITIZE ""
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id81,709,158
net_rshares33,497,194,895,192
author_curate_reward""
vote details (156)
@channel64 ·
Great post! I invite you to watch the last video on [channel54](https://steemit.com/programming/@channel64/developing-kubernetes-services-at-airbnb-scale-melanie-cebul)
properties (22)
authorchannel64
permlinkre-alexendre-maxim-php-tutorial-24-filters-part-2-filtersanitize-20190322t091519856z
categoryutopian-io
json_metadata{"tags":["utopian-io"],"links":["https://steemit.com/programming/@channel64/developing-kubernetes-services-at-airbnb-scale-melanie-cebul"],"app":"steemit/0.1"}
created2019-03-22 09:15:21
last_update2019-03-22 09:15:21
depth1
children1
last_payout2019-03-29 09:15:21
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length168
author_reputation669,246,752
root_title"PHP Tutorial #24 Filters Part 2 " FILTER_SANITIZE ""
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id81,725,303
net_rshares0
@alexendre-maxim ·
Thank you for your invetation@channel64
properties (22)
authoralexendre-maxim
permlinkre-channel64-re-alexendre-maxim-php-tutorial-24-filters-part-2-filtersanitize-20190329t192902778z
categoryutopian-io
json_metadata{"tags":["utopian-io"],"app":"steemit/0.1"}
created2019-03-29 19:28:36
last_update2019-03-29 19:28:36
depth2
children0
last_payout2019-04-05 19:28:36
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length39
author_reputation18,071,828,077,109
root_title"PHP Tutorial #24 Filters Part 2 " FILTER_SANITIZE ""
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id82,166,137
net_rshares0
@rosatravels ·
$12.48
Hi @alexendre-maxim

Thank you for your contribution to the video category.

I see that you try to write better post.  Sometimes it is difficult for people whose English is their second language.  

Try to write simple sentences.  This will help to make your text flow in the tutorial.

Again, your deliverance in the video tutorial is improving.

Your contribution has been evaluated according to [Utopian policies and guidelines](https://join.utopian.io/guidelines), as well as a predefined set of questions pertaining to the category.

To view those questions and the relevant answers related to your post, [click here](https://review.utopian.io/result/9/2-2-2-2-2-2-1-2-3-).

---- 
Need help? Chat with us on [Discord](https://discord.gg/uTyJkNm).

[[utopian-moderator]](https://join.utopian.io/)
πŸ‘  , , , , , , , , , , ,
properties (23)
authorrosatravels
permlinkre-alexendre-maxim-php-tutorial-24-filters-part-2-filtersanitize-20190323t075701079z
categoryutopian-io
json_metadata{"tags":["utopian-io"],"users":["alexendre-maxim"],"links":["https://join.utopian.io/guidelines","https://review.utopian.io/result/9/2-2-2-2-2-2-1-2-3-","https://discord.gg/uTyJkNm","https://join.utopian.io/"],"app":"steemit/0.1"}
created2019-03-23 07:57:00
last_update2019-03-23 07:57:00
depth1
children2
last_payout2019-03-30 07:57:00
cashout_time1969-12-31 23:59:59
total_payout_value9.466 HBD
curator_payout_value3.016 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length800
author_reputation422,827,447,688,168
root_title"PHP Tutorial #24 Filters Part 2 " FILTER_SANITIZE ""
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id81,789,139
net_rshares19,213,398,538,157
author_curate_reward""
vote details (12)
@alexendre-maxim ·
Thank you @rosatravels, I will try to put more detailed and precise sentences.
properties (22)
authoralexendre-maxim
permlinkre-rosatravels-re-alexendre-maxim-php-tutorial-24-filters-part-2-filtersanitize-20190329t192841488z
categoryutopian-io
json_metadata{"tags":["utopian-io"],"users":["rosatravels"],"app":"steemit/0.1"}
created2019-03-29 19:28:15
last_update2019-03-29 19:28:15
depth2
children0
last_payout2019-04-05 19:28:15
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length78
author_reputation18,071,828,077,109
root_title"PHP Tutorial #24 Filters Part 2 " FILTER_SANITIZE ""
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id82,166,123
net_rshares0
@utopian-io ·
Thank you for your review, @rosatravels! Keep up the good work!
properties (22)
authorutopian-io
permlinkre-re-alexendre-maxim-php-tutorial-24-filters-part-2-filtersanitize-20190323t075701079z-20190326t043017z
categoryutopian-io
json_metadata"{"app": "beem/0.20.17"}"
created2019-03-26 04:30:18
last_update2019-03-26 04:30:18
depth2
children0
last_payout2019-04-02 04:30:18
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length63
author_reputation152,955,367,999,756
root_title"PHP Tutorial #24 Filters Part 2 " FILTER_SANITIZE ""
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id81,960,702
net_rshares0
@steem-ua ·
#### Hi @alexendre-maxim!

Your post was upvoted by @steem-ua, new Steem dApp, using UserAuthority for algorithmic post curation!
Your post is eligible for our upvote, thanks to our collaboration with @utopian-io!
**Feel free to join our [@steem-ua Discord server](https://discord.gg/KpBNYGz)**
properties (22)
authorsteem-ua
permlinkre-php-tutorial-24-filters-part-2-filtersanitize-20190323t081415z
categoryutopian-io
json_metadata"{"app": "beem/0.20.18"}"
created2019-03-23 08:14:18
last_update2019-03-23 08:14:18
depth1
children1
last_payout2019-03-30 08:14:18
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length294
author_reputation23,214,230,978,060
root_title"PHP Tutorial #24 Filters Part 2 " FILTER_SANITIZE ""
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id81,789,926
net_rshares0
@alexendre-maxim ·
Thank you @steem-ua
properties (22)
authoralexendre-maxim
permlinkre-steem-ua-re-php-tutorial-24-filters-part-2-filtersanitize-20190323t081415z-20190329t192910184z
categoryutopian-io
json_metadata{"tags":["utopian-io"],"users":["steem-ua"],"app":"steemit/0.1"}
created2019-03-29 19:28:45
last_update2019-03-29 19:28:45
depth2
children0
last_payout2019-04-05 19:28:45
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length19
author_reputation18,071,828,077,109
root_title"PHP Tutorial #24 Filters Part 2 " FILTER_SANITIZE ""
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id82,166,140
net_rshares0
@utopian-io ·
Hey, @alexendre-maxim!

**Thanks for contributing on Utopian**.
We’re already looking forward to your next contribution!

**Get higher incentives and support Utopian.io!**
 Simply set @utopian.pay as a 5% (or higher) payout beneficiary on your contribution post (via [SteemPlus](https://chrome.google.com/webstore/detail/steemplus/mjbkjgcplmaneajhcbegoffkedeankaj?hl=en) or [Steeditor](https://steeditor.app)).

**Want to chat? Join us on Discord https://discord.gg/h52nFrV.**

<a href='https://steemconnect.com/sign/account-witness-vote?witness=utopian-io&approve=1'>Vote for Utopian Witness!</a>
properties (22)
authorutopian-io
permlinkre-php-tutorial-24-filters-part-2-filtersanitize-20190323t122602z
categoryutopian-io
json_metadata"{"app": "beem/0.20.17"}"
created2019-03-23 12:26:03
last_update2019-03-23 12:26:03
depth1
children1
last_payout2019-03-30 12:26:03
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length597
author_reputation152,955,367,999,756
root_title"PHP Tutorial #24 Filters Part 2 " FILTER_SANITIZE ""
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id81,799,636
net_rshares0
@alexendre-maxim ·
Thank you
properties (22)
authoralexendre-maxim
permlinkre-utopian-io-re-php-tutorial-24-filters-part-2-filtersanitize-20190323t122602z-20190329t192918731z
categoryutopian-io
json_metadata{"tags":["utopian-io"],"app":"steemit/0.1"}
created2019-03-29 19:28:54
last_update2019-03-29 19:28:54
depth2
children0
last_payout2019-04-05 19:28:54
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length9
author_reputation18,071,828,077,109
root_title"PHP Tutorial #24 Filters Part 2 " FILTER_SANITIZE ""
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id82,166,149
net_rshares0