mirror of
https://github.com/php/php-src.git
synced 2024-12-01 05:43:38 +08:00
11 lines
124 B
PHP
11 lines
124 B
PHP
<?php
|
|
|
|
function set_sql($name, $query)
|
|
{
|
|
if (empty($GLOBALS['SQL'][$name]))
|
|
{
|
|
$GLOBALS['SQL'][$name] = $query;
|
|
}
|
|
}
|
|
?>
|