Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
D
doctrine-dbal
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Tomáš Trávníček
doctrine-dbal
Commits
134c944b
Commit
134c944b
authored
May 24, 2007
by
zYne
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
--no commit message
--no commit message
parent
b3afff26
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
7 additions
and
5 deletions
+7
-5
unsolved.php
tests/unsolved.php
+7
-5
No files found.
tests/unsolved.php
View file @
134c944b
...
...
@@ -8,6 +8,8 @@ spl_autoload_register(array('Doctrine', 'autoload'));
require_once
'classes.php'
;
require_once
dirname
(
__FILE__
)
.
'/../models/location.php'
;
print
"<pre>"
;
$manager
=
Doctrine_Manager
::
getInstance
();
$dbh
=
Doctrine_Db
::
getConnection
(
'sqlite::memory:'
);
$conn
=
$manager
->
openConnection
(
$dbh
);
...
...
@@ -16,14 +18,14 @@ $user = new User();
$user
->
name
=
'zYne'
;
$user
->
Phonenumber
[
0
]
->
phonenumber
=
'123 123'
;
if
(
$user
===
$user
->
Phonenumber
[
0
]
->
entity_id
)
{
print
'case 1 works'
;
print
'case 1 works
\n
'
;
}
$city
=
new
Record_City
();
$city
->
name
=
'City 1'
;
$city
->
District
->
name
=
'District 1'
;
if
(
$city
->
District
===
$city
->
district_id
)
{
print
'case 2 works'
;
print
'case 2 works
\n
'
;
}
...
...
@@ -32,9 +34,9 @@ $c->name = 'Some country';
$c
->
City
[
0
]
->
name
=
'City 1'
;
$c
->
City
[
0
]
->
District
->
name
=
'District 1'
;
print
$c
->
City
[
0
]
->
District
;
print
$c
->
City
[
0
]
->
get
(
'district_id'
);
print
$c
->
City
[
0
]
->
District
.
"
\n
"
;
print
$c
->
City
[
0
]
->
get
(
'district_id'
)
.
"
\n
"
;
if
(
$c
->
City
[
0
]
->
get
(
'district_id'
)
==
$c
->
City
[
0
]
->
District
)
{
print
"case 3 works!"
;
print
"case 3 works!
\n
"
;
}
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment