[ create a new paste ] login | about

Link: http://codepad.org/jg1un43q    [ raw code | output | fork ]

PHP, pasted on Oct 20:
1
2
3
4
5
6
<?php
$current = "blah,blah,blah^";

$current = rtrim($current, "^");

var_dump($current);


Output:
1
string(14) "blah,blah,blah"


Create a new paste based on this one


Comments: