コード例 #1
0
ファイル: router.php プロジェクト: hlogeon/vk-test
/**
 * Simply call dispatcher
 * @param $dispatcher
 */
function callRoute($dispatcher)
{
    if (is_string($dispatcher) && is_callable($dispatcher)) {
        $dispatcher(parseQuery());
    } elseif (is_callable($dispatcher)) {
        call_user_func($dispatcher, parseQuery());
    }
}
コード例 #2
0
ファイル: core.php プロジェクト: rezamoussavi/MouRe
function xquery($caller, $s)
{
    global $osdbcon, $_result;
    if (!$osdbcon) {
        $_result = null;
        return;
    }
    $_result = mysql_query(parseQuery($caller, $s), $osdbcon);
}
コード例 #3
0
ファイル: installer.php プロジェクト: knytrune/ABXD
 public function insert()
 {
     $args = func_get_args();
     if (is_array($args[0])) {
         $args = $args[0];
     }
     $this->data[] = parseQuery($args);
     $this->count++;
     if ($this->count >= 100) {
         $this->finish();
     }
 }
コード例 #4
0
ファイル: sparql2s3db.php プロジェクト: helenadeus/s3db.map
function s3db_parse($queryString)
{
    if ($queryString) {
        $uncommentedQuery = s3db_uncomment($queryString);
        $tokenized = s3db_tokenize($uncommentedQuery);
        echo '<pre>';
        print_r($tokenized);
        exit;
        $parsed = parseQuery($tokenized);
    } else {
        return "Querystring is empty.";
    }
}
コード例 #5
0
ファイル: mysql.php プロジェクト: knytrune/ABXD
function query()
{
    $args = func_get_args();
    if (is_array($args[0])) {
        $args = $args[0];
    }
    return rawQuery(parseQuery($args));
}
コード例 #6
0
ファイル: bug65510.php プロジェクト: badlamer/hhvm
<?php

function parseQuery()
{
    $m = array("l", "a", "r", "u", "e", "n", "c", "e");
    foreach ($m as $n) {
        @(list($a, $b) = $n);
    }
}
parseQuery();
echo "ok\n";