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