[ create a new paste ] login | about

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

PHP, pasted on Oct 18:
1
2
3
4
5
6
<?php

$string = '�I�N�S�E�R�T� �[�d�b�o�]�';
$variable = strtr($string, array('�' => ''));

var_dump($variable);


Output:
1
string(12) "INSERT [dbo]"


Create a new paste based on this one


Comments: