sagacity/inc/vendor/godsgood33/php-db/tests/TestClass.php

24 lines
330 B
PHP
Raw Normal View History

<?php
class TestClass
{
var $var;
public function _escape()
{
return str_replace([
"\n",
"\r",
"\\",
"'",
'"'
], [
"\\n",
"\\r",
"\\\\",
"\'",
'\"'
], $this->var);
}
}