1
0
mirror of https://github.com/dg/dibi.git synced 2025-07-30 19:00:13 +02:00

parser updates, DibiResult:: to Dibi::

This commit is contained in:
David Grudl
2006-06-08 01:35:44 +00:00
parent 18d3dd444d
commit 3030881f07
10 changed files with 184 additions and 150 deletions

View File

@@ -26,10 +26,11 @@ $arr3 = array(
'col3' => 'three',
);
$arr4 = array(
'a' => 12,
'b' => NULL,
'c%T' => time(), // modifier 'T' means datetime
'd' => 'any string',
'a' => 12,
'b' => NULL,
'c%?' => NULL,
'd%T' => time(), // modifier 'T' means datetime
'e' => 'any string',
);
$arr5 = array('RAND()', '[col1] > [col2]');