create account

PHP Tutorial #14 String Methods (Md5_File, Md5, Nl2br and Addcslaches ) by alexendre-maxim

View this thread on: hive.blogpeakd.comecency.com
· @alexendre-maxim ·
$18.37
PHP Tutorial #14 String Methods (Md5_File, Md5, Nl2br and Addcslaches )
<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>
<p>I will learn the string methods this is the fourth part , we will take the " Md5_File, Md5, Nl2br and Addcslaches " methods.&nbsp;</p>
<ul>
  <li>What's the " Md5_File " method and how to use it.</li>
  <li>How to crypt a string using " Md5 " method.</li>
  <li>What's the " Nl2br " method and their uses.</li>
  <li>How to add slashes before predefined characters using " Addslashes " method.</li>
</ul>
<h2>Requirements</h2>
<ul>
  <li>Server support PHP , Xampp or Wamp for example</li>
  <li>An IDE like Sublime text.</li>
  <li>Browser (Chrome for example)&nbsp;</li>
</ul>
<h2>Difficulty</h2>
<ul>
  <li>Basic</li>
</ul>
<h2>Description</h2>
<h3>1- Md5_File Method&nbsp;</h3>
<p>The md5_file method calculates the MD5 of the filename file using the RSA Data Security algorithm, and then returns the calculated value. The result is a number of 32 hexadecimal characters.&nbsp;</p>
<p>It has two parameters :&nbsp;</p>
<p>- <strong>The first parameter is the file :</strong></p>
<p>&nbsp;which is the file to calculate.&nbsp;</p>
<p>- <strong>The second parameter is the format &nbsp;:</strong></p>
<p>It's optional, specifies the format, when TRUE, returns the pretreatment in raw binary format with a size of 16.</p>
<p>- TRUE- the binary format of 16 characters .</p>
<p>- FALSE - Default. The binary format of 32 characters .</p>
<p>This parameter was added in PHP 5.0 . &nbsp;</p>
<p>To use the md5_file we need to pass the file as parameter</p>
<p><code>md5_file($file, format);</code></p>
<p>I have a " txt " file named " utopian " I want to hash the content in this file using the " md5_file " method</p>
<p><code>echo "&lt;h3&gt;md5_file Method&lt;/h3&gt;";</code></p>
<p><code>echo md5_file("utopian.txt");</code></p>
<p>The md5_file will return a string of md5 , you can replace the content of the file by the result of the md5_file , I will print the result</p>
<p><img src="https://cdn.steemitimages.com/DQmYLr1nNqijzAahjZyrbsNGn3HJ8czKjr7abfJnZQdpQ7u/capture-20190102-002531.png" width="542" height="124"/></p>
<h3>2- Md5 Method&nbsp;</h3>
<p>The md5 method returns the md5 of the string, as a hexadecimal number of 32 characters. The md5 function calculates the MD5 of the character string using the RSA Data Security algorithm, and returns the result.&nbsp;</p>
<p>It has two parameters : &nbsp;</p>
<p><strong>- The first parameter is the string&nbsp;</strong></p>
<p><strong>- The second is the cript :</strong></p>
<p>It's optional. By default it is false. If the optional cript parameter is set to TRUE, then the md5 is returned in raw binary format with a length of 16.&nbsp;</p>
<p>- True - the binary format cript of 16 characters&nbsp;</p>
<p>- False- Default. spell number of 32 characters .</p>
<p>This parameter was added in PHP 5.0 .</p>
<p>To use the md5 method we need to pass the string as parameter</p>
<p><code>md5($string, format);</code></p>
<p>I have a string and I want to hash it using md5 method</p>
<p><code>echo "&lt;h3&gt;md5 Method&lt;/h3&gt;";</code></p>
<p><code>$string = "I love utopian !";</code></p>
<p><code>echo md5($string);</code></p>
<p>The md5 will return a string of 32 characters , this is the result</p>
<p><img src="https://cdn.steemitimages.com/DQmZHdHda13GmcMpc2jg1YBD8jKTWABXGYBoD2xj7zZPzfe/capture-20190102-003115.png" width="534" height="127"/></p>
<h3>3- Nl2br Method&nbsp;</h3>
<p>The nl2br method returns string after inserting "&lt;br&gt;" or "&lt;/br&gt;" tags in front of all new lines.&nbsp;</p>
<p>It has the string as parameter which is the string to process.&nbsp;</p>
<p>To use the nl2br method we need to pass the string as parameter</p>
<p><code>nl2br($string);</code></p>
<p>The browser will ignore all new lines , and to be sensitive we need to use the nl2br method</p>
<p><code>$string2 = "</code></p>
<p><code>1- PHP is the best !</code></p>
<p><code>2- I love utopian !</code></p>
<p><code>";</code></p>
<p>We have 2 points , if we print directly this string without the nl2br method the browser will ignore the lines</p>
<p><img src="https://cdn.steemitimages.com/DQmWCV5JQcwco81CPoi82FD1rqr29WGSPG1CyQsvsXvnnnt/capture-20190102-174253.png" width="634" height="52"/></p>
<p><img src="https://cdn.steemitimages.com/DQmNYb59CK2jewHMy1PzBQ8qy9Tie8dPptXzxDLu7a36oeU/capture-20190102-174507.png" width="294" height="109"/></p>
<h3>4 - Addcslaches Method&nbsp;</h3>
<p>The addcslaches Method Returns string, after adding backslashes in front of any characters that are in the charlist.</p>
<p>&nbsp;It has two parameters :&nbsp;</p>
<p><strong>- The first is the string :</strong> specifies the string to escape&nbsp;</p>
<p><strong>- The second parameter is the charlist :</strong></p>
<p>Specifies the characters or range of characters to be assigned by addcslashes .</p>
<p>Pay attention to the use of characters such as 0, a, b, f, n, r, t and v. They will be converted to \ 0, \ a, \ b, \ f, \ n, \ r, \ t and \ v.&nbsp;</p>
<p>In PHP, \ 0 (NULL), \ r (carriage return), \ n (new line), \ v (horizontal tab) and \ t (tab) are predefined as escape sequences.</p>
<p>To use the addcslaches we need to pass two parameters , the string and the charlist</p>
<p><code>addcslaches($string , charlist);</code></p>
<p>I have a string and I want to insert slaches before some characters</p>
<p><code>echo "&lt;h3&gt;addcslashes Method&lt;/h3&gt;";</code></p>
<p><code>echo addcslashes($string2, 'ei');</code></p>
<p>The method will add slaches before the letters " e " and " i "</p>
<p><img src="https://cdn.steemitimages.com/DQmYa7tk66pYukXix61UvohtvM1d7EtC1ebktG6wWRzh1fw/capture-20190102-180351.png" width="557" height="160"/></p>
<h2>Video Tutorial&nbsp;</h2>
<p>https://www.youtube.com/watch?v=FTOYV8KG4Lg&amp;feature=youtu.be</p>
<h2>Curriculum</h2>
<ul>
  <li><a href="https://steemit.com/utopian-io/@alexendre-maxim/php-tutorial-01-indexed-arrays-associative-arrays-and-multidimensional-arrays">PHP Tutorial #01 Indexed Arrays, Associative Arrays and Multidimensional Arrays</a></li>
  <li><a href="https://steemit.com/utopian-io/@alexendre-maxim/php-tutorial-02-array-methods-sort-rsort-ksort-krsort-arrayreverse-and-shuffle">PHP Tutorial #02 Array Methods (Sort, Rsort, Ksort, Krsort , Array_Reverse And Shuffle)</a></li>
  <li><a href="https://steemit.com/utopian-io/@alexendre-maxim/5jhula-php-tutorial-03-array-methods-search-methods-addition-methods-and-the-remove-methods">PHP Tutorial #03 Array Methods ( Search Methods , Addition Methods and the Remove Methods)</a></li>
  <li><a href="https://steemit.com/utopian-io/@alexendre-maxim/php-tutorial-04-array-methods-arraysum-arrayrand-arraycolumn-and-arrayunique">PHP Tutorial #04 Array Methods (Array_Sum, Array_Rand, Array_Column and Array_Unique)</a></li>
  <li><a href="https://steemit.com/utopian-io/@alexendre-maxim/php-tutorial-05-array-methods-arraychunk-arraycombine-arraycountvalues-and-arrayproduct">PHP Tutorial #05 Array Methods (Array_Chunk, Array_Combine, Array_Count_Values and Array_Product)</a></li>
  <li><a href="https://steemit.com/utopian-io/@alexendre-maxim/php-tutorial-06-array-methods-arrayfillkeys-arrayfill-arrayflip-and-arrayfilter">PHP Tutorial #06 &nbsp;Array Methods (Array_Fill_Keys,Array_Fill, Array_Flip and Array_Filter)</a></li>
  <li><a href="https://steemit.com/utopian-io/@alexendre-maxim/php-tutorial-07-array-methods-arraykeys-arraymap-arraymerge-and-arraypad">PHP Tutorial #07 Array Methods ( Array_Keys, Array_Map, Array_Merge and Array_Pad )</a></li>
  <li><a href="https://steemit.com/utopian-io/@alexendre-maxim/php-tutorial-08-array-methods-arrayreplace-arrayvalues-arrayslice-and-arrayintersect">PHP Tutorial #08 Array Methods ( Array_Replace, Array_Values, Array_Slice and Array_Intersect )</a></li>
  <li><a href="https://steemit.com/utopian-io/@alexendre-maxim/php-tutorial-09-array-methods-arraywalk-current-next-prev-end-and-reset">PHP Tutorial #09 Array Methods (Array_Walk, Current, Next, Prev, End and Reset )</a></li>
  <li><a href="https://steemit.com/utopian-io/@alexendre-maxim/php-tutorial-10-array-methods-arraydiffkey-arraydiff-arrayintersectkey-and-arraychangekeycase">PHP Tutorial #10 Array Methods (Array_Diff_Key, Array_Diff, Array_Intersect_Key and Array_Change_Key_Case )</a></li>
  <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>&nbsp;<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>
</ul>
<h2>Proof of Work Done&nbsp;</h2>
<p>https://github.com/alexendre-maxim/PHP-Tutorial/blob/master/str4.php</p>
</html>
πŸ‘  , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , and 20 others
properties (23)
authoralexendre-maxim
permlinkphp-tutorial-14-string-methods-md5file-md5-nl2br-and-addcslaches
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/DQmYLr1nNqijzAahjZyrbsNGn3HJ8czKjr7abfJnZQdpQ7u/capture-20190102-002531.png","https://cdn.steemitimages.com/DQmZHdHda13GmcMpc2jg1YBD8jKTWABXGYBoD2xj7zZPzfe/capture-20190102-003115.png","https://cdn.steemitimages.com/DQmWCV5JQcwco81CPoi82FD1rqr29WGSPG1CyQsvsXvnnnt/capture-20190102-174253.png","https://cdn.steemitimages.com/DQmNYb59CK2jewHMy1PzBQ8qy9Tie8dPptXzxDLu7a36oeU/capture-20190102-174507.png","https://cdn.steemitimages.com/DQmYa7tk66pYukXix61UvohtvM1d7EtC1ebktG6wWRzh1fw/capture-20190102-180351.png","https://img.youtube.com/vi/FTOYV8KG4Lg/0.jpg"],"links":["https://cdn.steemitimages.com/DQmR2CdPgUAaypJwbE8QhahqDxrabLTM5fHq8ZjTPcVr2fg/bbva-open4u-herramientas-basicas-desarrolladores-php_1.jpg","https://github.com/php/php-src","https://www.youtube.com/watch?v=FTOYV8KG4Lg&feature=youtu.be","https://steemit.com/utopian-io/@alexendre-maxim/php-tutorial-01-indexed-arrays-associative-arrays-and-multidimensional-arrays","https://steemit.com/utopian-io/@alexendre-maxim/php-tutorial-02-array-methods-sort-rsort-ksort-krsort-arrayreverse-and-shuffle","https://steemit.com/utopian-io/@alexendre-maxim/5jhula-php-tutorial-03-array-methods-search-methods-addition-methods-and-the-remove-methods","https://steemit.com/utopian-io/@alexendre-maxim/php-tutorial-04-array-methods-arraysum-arrayrand-arraycolumn-and-arrayunique","https://steemit.com/utopian-io/@alexendre-maxim/php-tutorial-05-array-methods-arraychunk-arraycombine-arraycountvalues-and-arrayproduct","https://steemit.com/utopian-io/@alexendre-maxim/php-tutorial-06-array-methods-arrayfillkeys-arrayfill-arrayflip-and-arrayfilter","https://steemit.com/utopian-io/@alexendre-maxim/php-tutorial-07-array-methods-arraykeys-arraymap-arraymerge-and-arraypad","https://steemit.com/utopian-io/@alexendre-maxim/php-tutorial-08-array-methods-arrayreplace-arrayvalues-arrayslice-and-arrayintersect","https://steemit.com/utopian-io/@alexendre-maxim/php-tutorial-09-array-methods-arraywalk-current-next-prev-end-and-reset","https://steemit.com/utopian-io/@alexendre-maxim/php-tutorial-10-array-methods-arraydiffkey-arraydiff-arrayintersectkey-and-arraychangekeycase","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://github.com/alexendre-maxim/PHP-Tutorial/blob/master/str4.php"],"app":"steemit/0.1","format":"html"}
created2019-01-03 11:32:48
last_update2019-01-03 11:32:48
depth0
children9
last_payout2019-01-10 11:32:48
cashout_time1969-12-31 23:59:59
total_payout_value13.973 HBD
curator_payout_value4.393 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length9,480
author_reputation18,071,828,077,109
root_title"PHP Tutorial #14 String Methods (Md5_File, Md5, Nl2br and Addcslaches )"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id77,804,609
net_rshares33,518,931,409,164
author_curate_reward""
vote details (84)
@rosatravels ·
$12.48
Happy New Year @alexendre-maxim

Thank you for your contribution to the video tutorial.

I can see that your recent video tutorials have improved in your presentations and that you have put effort in your delivery.

You are also speaking slower and more deliberate in your speech.

You can try to pay more special attention to certain words. 

Eg.  In the beginning you mentioned about 'heading', so I knew you were talking about 'heading', but when I listened to your audio, I heard 'hidden' instead of 'heading'.

Heading and hidden are different as the vowel sound of 'heading' is a short "e", whereas the "i' in hidden is a short 'i' sound.

My students who are learning English as a second language has that difficulty also. They can't distinguish between a short i sound from a short e sound.

So you can pay careful attention to the vowel sounds in the pronunciation.

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/1-2-2-3-2-2-2-2-3-).

---- 
Need help? Write a ticket on https://support.utopian.io/. 
Chat with us on [Discord](https://discord.gg/uTyJkNm). 
[[utopian-moderator]](https://join.utopian.io/)
πŸ‘  , , , , , , , , , , , , , ,
properties (23)
authorrosatravels
permlinkre-alexendre-maxim-php-tutorial-14-string-methods-md5file-md5-nl2br-and-addcslaches-20190103t170950461z
categoryutopian-io
json_metadata{"tags":["utopian-io"],"users":["alexendre-maxim"],"links":["https://join.utopian.io/guidelines","https://review.utopian.io/result/9/1-2-2-3-2-2-2-2-3-","https://support.utopian.io/","https://discord.gg/uTyJkNm","https://join.utopian.io/"],"app":"steemit/0.1"}
created2019-01-03 17:09:51
last_update2019-01-03 17:09:51
depth1
children2
last_payout2019-01-10 17:09:51
cashout_time1969-12-31 23:59:59
total_payout_value9.432 HBD
curator_payout_value3.048 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length1,376
author_reputation422,827,447,688,168
root_title"PHP Tutorial #14 String Methods (Md5_File, Md5, Nl2br and Addcslaches )"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id77,820,049
net_rshares22,879,053,524,728
author_curate_reward""
vote details (15)
@alexendre-maxim ·
Thank you @rosatravels , I will do my best to speak correctly.
properties (22)
authoralexendre-maxim
permlinkre-rosatravels-re-alexendre-maxim-php-tutorial-14-string-methods-md5file-md5-nl2br-and-addcslaches-20190204t203603405z
categoryutopian-io
json_metadata{"tags":["utopian-io"],"users":["rosatravels"],"app":"steemit/0.1"}
created2019-02-04 20:35:48
last_update2019-02-04 20:35:48
depth2
children0
last_payout2019-02-11 20:35:48
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_length62
author_reputation18,071,828,077,109
root_title"PHP Tutorial #14 String Methods (Md5_File, Md5, Nl2br and Addcslaches )"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id79,400,270
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-14-string-methods-md5file-md5-nl2br-and-addcslaches-20190103t170950461z-20190106t010628z
categoryutopian-io
json_metadata"{"app": "beem/0.20.9"}"
created2019-01-06 01:06:30
last_update2019-01-06 01:06:30
depth2
children0
last_payout2019-01-13 01:06:30
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 #14 String Methods (Md5_File, Md5, Nl2br and Addcslaches )"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id77,937,900
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-14-string-methods-md5file-md5-nl2br-and-addcslaches-20190103t172914z
categoryutopian-io
json_metadata"{"app": "beem/0.20.14"}"
created2019-01-03 17:29:15
last_update2019-01-03 17:29:15
depth1
children1
last_payout2019-01-10 17:29: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_length294
author_reputation23,214,230,978,060
root_title"PHP Tutorial #14 String Methods (Md5_File, Md5, Nl2br and Addcslaches )"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id77,820,709
net_rshares0
@alexendre-maxim ·
Thank you @steem-ua
properties (22)
authoralexendre-maxim
permlinkre-steem-ua-re-php-tutorial-14-string-methods-md5file-md5-nl2br-and-addcslaches-20190103t172914z-20190204t203639961z
categoryutopian-io
json_metadata{"tags":["utopian-io"],"users":["steem-ua"],"app":"steemit/0.1"}
created2019-02-04 20:36:27
last_update2019-02-04 20:36:27
depth2
children0
last_payout2019-02-11 20:36:27
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 #14 String Methods (Md5_File, Md5, Nl2br and Addcslaches )"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id79,400,286
net_rshares0
@steemitboard ·
Congratulations @alexendre-maxim! You received a personal award!

<table><tr><td>https://steemitimages.com/70x70/http://steemitboard.com/@alexendre-maxim/birthday1.png</td><td><p>Happy Birthday! - You are on the Steem blockchain for 1 year!<p></td></tr></table>

<sub>_[Click here to view your Board](https://steemitboard.com/@alexendre-maxim)_</sub>


> Support [SteemitBoard's project](https://steemit.com/@steemitboard)! **[Vote for its witness](https://v2.steemconnect.com/sign/account-witness-vote?witness=steemitboard&approve=1)** and **get one more award**!
properties (22)
authorsteemitboard
permlinksteemitboard-notify-alexendre-maxim-20190119t155441000z
categoryutopian-io
json_metadata{"image":["https://steemitboard.com/img/notify.png"]}
created2019-01-19 15:54:42
last_update2019-01-19 15:54:42
depth1
children1
last_payout2019-01-26 15:54:42
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_length564
author_reputation38,975,615,169,260
root_title"PHP Tutorial #14 String Methods (Md5_File, Md5, Nl2br and Addcslaches )"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id78,619,770
net_rshares0
@alexendre-maxim ·
Thank you
properties (22)
authoralexendre-maxim
permlinkre-steemitboard-steemitboard-notify-alexendre-maxim-20190204t203655302z
categoryutopian-io
json_metadata{"tags":["utopian-io"],"app":"steemit/0.1"}
created2019-02-04 20:36:42
last_update2019-02-04 20:36:42
depth2
children0
last_payout2019-02-11 20:36:42
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 #14 String Methods (Md5_File, Md5, Nl2br and Addcslaches )"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id79,400,296
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-14-string-methods-md5file-md5-nl2br-and-addcslaches-20190104t011823z
categoryutopian-io
json_metadata"{"app": "beem/0.20.9"}"
created2019-01-04 01:18:24
last_update2019-01-04 01:18:24
depth1
children1
last_payout2019-01-11 01:18:24
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 #14 String Methods (Md5_File, Md5, Nl2br and Addcslaches )"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id77,837,536
net_rshares0
@alexendre-maxim ·
Thank you
properties (22)
authoralexendre-maxim
permlinkre-utopian-io-re-php-tutorial-14-string-methods-md5file-md5-nl2br-and-addcslaches-20190104t011823z-20190204t203648753z
categoryutopian-io
json_metadata{"tags":["utopian-io"],"app":"steemit/0.1"}
created2019-02-04 20:36:33
last_update2019-02-04 20:36:33
depth2
children0
last_payout2019-02-11 20:36:33
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 #14 String Methods (Md5_File, Md5, Nl2br and Addcslaches )"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id79,400,293
net_rshares0