1
0
mirror of https://github.com/php/php-src.git synced 2026-04-16 20:41:18 +02:00
Files
archived-php-src/ext/pdo/tests/pdo.inc
2012-10-10 10:44:34 +08:00

11 lines
124 B
PHP

<?php
function set_sql($name, $query)
{
if (empty($GLOBALS['SQL'][$name]))
{
$GLOBALS['SQL'][$name] = $query;
}
}
?>