mirror of
https://github.com/alchemy-fr/Phraseanet.git
synced 2025-10-09 19:13:26 +00:00
11 lines
177 B
PHP
11 lines
177 B
PHP
<?php
|
|
|
|
class thesaurus
|
|
{
|
|
|
|
public static function xquery_escape($s)
|
|
{
|
|
return(str_replace(array("&", "\"", "'"), array("&", """, "'"), $s));
|
|
}
|
|
}
|