Online Web Code Test | Write and Run


PuStudy.Com Start write and Run your Web Code Online Work, PuStudy.Com Provide Online Web Editor, Every Language Code Work in this Editor, Editor Work Like as - Html, Php, Css, Bootstrap, Asp, jQuery Etc.

<?php
$text1="pustudy.com  ";
$text2="pustudy.com\t\t";
$text3="\t\tpustudy.com\x0A";
$text4="Good Morning";
$trimmed_text=chop($text1);
var_dump($trimmed_text);
echo '
'; $trimmed_text=chop($text2); var_dump($trimmed_text); echo '
'; $trimmed_text=chop($text3); var_dump($trimmed_text); echo '
'; $trimmed_text=chop($text1,'w3'); var_dump($trimmed_text); echo '
'; $trimmed_text=chop($text4,"ng"); var_dump($trimmed_text); ?>